首页 > 代码库 > 在DataGridView_DragDrop事件中,确定DataGridView的单元格的位置
在DataGridView_DragDrop事件中,确定DataGridView的单元格的位置
Point p= dataGridView1.PointToClient(new Point(e.X,e.Y));//将相对于screen的鼠标坐标,设置成相对于Client的坐标 int rowIndex = dataGridView1.HitTest(p.X, p.Y).RowIndex;//相对于client,鼠标所在的行索引 int columnIndex = dataGridView1.HitTest(p.X, p.Y).ColumnIndex;//相对于client,鼠标所在的列索引 if (rowIndex == 11 && columnIndex == 1)//目标单元格的行索引和列索引分别为11和1 { //自己的操作 }
注意:dataGridView1.HitTest
在DataGridView_DragDrop事件中,确定DataGridView的单元格的位置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。