Winform DataGridView鼠标右键选择列
Posted 谷仁儿的盒子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Winform DataGridView鼠标右键选择列相关的知识,希望对你有一定的参考价值。
1、设置DataGridView 的属性 SelectionMode
SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
2、设置事件CellMouseDown
private void dgvResult_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e) { if (e.RowIndex == -1 || e.ColumnIndex == -1) return; if (e.Button == System.Windows.Forms.MouseButtons.Right) { this.dgvResult.ClearSelection(); this.dgvResult.CurrentRow.Selected = false; this.dgvResult.Rows[e.RowIndex].Selected = true; this.dgvResult.CurrentCell = dgvResult.Rows[e.RowIndex].Cells[e.ColumnIndex]; } }
以上是关于Winform DataGridView鼠标右键选择列的主要内容,如果未能解决你的问题,请参考以下文章
winform如何从DataGridView中从右键菜单获取一行数据
用c#winform拖的datagridview控件,当选中一行数据以后鼠标离开之后,就选不中了
C#winform中的 dataGridView 鼠标点行首时选中整行,点击单元格时 选中单元格,如图: