C#的dataGridView 怎样获取鼠标坐标位置所在行

 我来答
rb...0@163.com
2016-09-16 · 超过128用户采纳过TA的回答
知道小有建树答主
回答量:195
采纳率:0%
帮助的人:186万
展开全部
C# code

     型睁敬返回光标处的行索引号()publicint GetRowIndexAt(int mouseLocation_Y)
{if (dataGridView1.FirstDisplayedScrollingRowIndex<0)
{return-1;// no rows. }if (dataGridView1.ColumnHeadersVisible==true&& mouseLocation_Y<= dataGridView1.ColumnHeadersHeight)
{return-1;
}int index= dataGridView1.FirstDisplayedScrollingRowIndex;int displayedCount= dataGridView1.DisplayedRowCount(true);for (int k=1; k<= displayedCount; )// 因为行不能ReOrder,卜慎故只需要搜索显示的行 {if (dataGridView1.Rows[index].Visible==true)
{
Rectangle rect= dataGridView1.GetRowDisplayRectangle(index,true);// 取该区域的显示早伏部分区域if (rect.Top<= mouseLocation_Y&& mouseLocation_Y< rect.Bottom)
{return index;
}
k++;// 只计数显示的行; }
index++;
}return-1;
}

测试用代码:

    把当前行的index号(从0开始)显示到TextBox1上。
private void dataGridView1_MouseMove(object sender, MouseEventArgs e)
{
textBox1.Text= GetRowIndexAt(e.Y).ToString();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式