- 积分
- 0
- 在线时间
- 3 小时
- 主题
- 2
- 注册时间
- 2018-4-2
- 帖子
- 3
- 最后登录
- 2020-6-30
- 帖子
- 3
- 软币
- 75
- 在线时间
- 3 小时
- 注册时间
- 2018-4-2
|
private void gridView1_DoubleClick(object sender, EventArgs e)
{
Point pt = HR_grid.PointToClient(Control.MousePosition);
GridHitInfo info = gridView1.CalcHitInfo(pt);
if (!info.InRowCell && info.Column.AbsoluteIndex == 2)//Index判断用于哪一列的列头
{
CheckedAll(sender, e);
}
}
我这代码原先是好好的没问题的,但是用着用着现在突然就不行了,每次双击的列头获取到的都是不对的,比如我双击了第三个列头,结果获取到别的列头的Index,而且都是随机获取的,我在点进去又变成别的Index了
|
|