Devexpress 之gridControl双击行事件

时间:2024-01-19 12:17:44

MouseDown事件
protected internal void gridControl1_MouseDown(object sender, MouseEventArgs e)
{
DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hInfo = gridView1.CalcHitInfo(new Point(e.X, e.Y));
if (e.Button == MouseButtons.Left && e.Clicks == 2)
{
//判断光标是否在行范围内
if (hInfo.InRow)
{
//MessageBox.Show(hInfo.RowHandle.ToString());
}
}
}