如何通过右键单击选择 dgvRow
本文关键字:选择 dgvRow 单击 右键 何通过 | 更新日期: 2023-09-27 18:35:25
我在DataGridView上有一个上下文菜单。
它显示了使用 selectedRow 进行操作的选项。
用户必须具有左键单击 - 选择一行 - 然后右键单击 - 打开上下文菜单。
我想省略 leftClic,即 - 通过右键单击选择一个 dgvRow,同时 - 打开上下文菜单。
可能吗?
在这里你去试试这个。
添加到您的datagridview_MouseDown活动
private void dgvPermit_MouseDown(object sender, MouseEventArgs e)
{
DataGridView dgv = (DataGridView)sender;
DataGridView.HitTestInfo Hti;
if (e.Button == MouseButtons.Right)
{
Hti = dgv.HitTest(e.X, e.Y);
if (Hti.Type == DataGridViewHitTestType.Cell)
{
if (!((DataGridViewRow)(dgv.Rows[Hti.RowIndex])).Selected)
{
dgv.ClearSelection();
((DataGridViewRow)dgv.Rows[Hti.RowIndex]).Selected = true;
}
}
}
}