C#如何获取DataGridView对象的行列索引

2025-05-30 23:27:36

1、我们需要在事件列表中找到DataGridView对象的CellClick事件。

C#如何获取DataGridView对象的行列索引

2、在此事件中,我们会有DataGridCiewCellEventArgs事件变量e。

C#如何获取DataGridView对象的行列索引

3、此时我们便能利用DataGridCiewCellEventArgs事件变量e的RowIndex属性获得行索引,但是我们需要加1。

C#如何获取DataGridView对象的行列索引

4、不仅如此,既然有RowIndex属性肯定也有ColumnIndex属性,同样加1。

C#如何获取DataGridView对象的行列索引

5、或者我们还能用过DataGridView对象的CurrentCell活动单元格属性组中的RowIndex属性获得加1。

C#如何获取DataGridView对象的行列索引

6、并且还能通过CurrentCellAddress属性组的X和Y坐标,也是能够获得行列索引。

C#如何获取DataGridView对象的行列索引
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
相关推荐
  • 阅读量:69
  • 阅读量:85
  • 阅读量:23
  • 阅读量:26
  • 阅读量:25
  • 猜你喜欢