DataGridView右键单击弹出菜单并选中行

private void dataGridView_OLUsers_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e) { if (e.Button == MouseButtons.Right) { if (e.RowIndex >= 0) { dataGridView_OLUsers.ClearSelection(); dataGridView_OLUsers.Rows[e.RowIndex].Selected = true; dataGridView_OLUsers.CurrentCell = dataGridView_OLUsers.Rows[e.RowIndex].Cells[e.ColumnIndex]; contextMenuStrip1.Show(MousePosition.X, MousePosition.Y); } } }

posted @ 2021-11-12 21:15  忍者叮叮叮  阅读(149)  评论(0编辑  收藏  举报