C# DataGridView button列 (buttonRow) 事件处理方法 显示 cell 内容 - 转

处理方法:使用DataGridView的cellclick方法.然后根据,选择的位置,进行进一步的判断,并写出处理方法.

eg:

private   void  dataGridView1_CellClick( object  sender, DataGridViewCellEventArgs e)
        {

            
// 显示点击的是哪一行那一列
            Console.WriteLine( ""   +  e.RowIndex + " Message " + e.ColumnIndex);

              
// 显示点击的哪一行的内容.

             DataGridViewCell cell 
= dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex];


            Console.WriteLine(cell.Value);
        }

 

你可能感兴趣的:(datagridview)