网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

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

时间:2024-10-11 20:11:59

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对象的行列索引
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com