C#编程-71:dataGridView获取行列坐标索引和值
2023-03-21 02:54:34 阅读次数:101
- private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- //获取行列坐标索引
- //方法一:
- //int row = e.RowIndex+1;
- //int col = e.ColumnIndex+1;
-
- //方法二:
- //int row = dataGridView1.CurrentCell.RowIndex + 1;
- //int col = dataGridView1.CurrentCell.ColumnIndex + 1;
-
- //方法三:
- //int row = dataGridView1.CurrentCellAddress.Y + 1;
- int col=dataGridView1.CurrentCellAddress.X+1;
-
- //方法四:
- int row = dataGridView1.CurrentRow.Index + 1;
-
- //获取当前单元格内容
- //方法1:
-
- // string cell = dataGridView1.Rows[row-1].Cells[col-1].Value.ToString();
-
- //方式2:
- string cell = dataGridView1.CurrentCell.Value.ToString();
-
- MessageBox.Show("点击:"+row+"行;"+col+"列\n内容是:"+cell);
- }
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/mouday/3044909,作者:彭世瑜,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:C#编程-81:DataGridView常用操作综合实例
下一篇:VB编程:获取对象私有域的地址-39