DataGridView選中一行擷取指定儲存格的值

來源:互聯網
上載者:User

01.private void dataGridView2_CellClick(object sender, DataGridViewCellEventArgs e)  

02.        {  
03.              
04.            pnlBottom.Enabled = true;  
05.             //獲得當前選中的行  
06.            int rowindex = e.RowIndex;  
07. 
08.            string value0="";  
09.            string value1 = "";  
10.            string value2 = "";  
11.            try 
12.            {  
13.                 //獲得當前行的第一列的值  
14.                value1= dgvHome.Rows[rowindex].Cells[1].Value.ToString();  
15.                            //獲得當前行的第0列的值  
16.                value0 = dgvHome.Rows[rowindex].Cells[0].Value.ToString();  
17.                 //獲得當前行的第二列的值  
18.                value2 = dgvHome.Rows[rowindex].Cells[2].Value.ToString().Trim();  

19.              MessageBox.show("第0列的值:{0};第一列的值:{1};第二列的值:{2}",value0,value1,value2);  

20.           }  
21.            catch (Exception exc) { }  
22.           
23.        } 

本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/dragoncyz/archive/2009/07/16/4354059.aspx

不一定要在此方法中使用

int rowindex=gv_userlist.CurrentCell.RowIndex;  擷取目前的儲存格所在的行索引 不是更好麼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.