DataGridView默认行/单元格选择问题
DataGridView 设置为“全行选择”。 需要一种方法来清除由 DataGridView 的默认性质完成的默认选定行
我也在使用 SelectionChanged 事件 该 dgv 有 4 列
如果我保留默认行选择,SelectionChanged 在加载时会触发 4 次,但我根本不希望它触发。
我尝试使用 RowsPostPaint 事件来清除选择并且不会触发 SelectionChanged 事件,但我无法选择之后的任何行。
有什么想法吗? 谢谢
DataGridView set to Full Row Select.
Need a way to clear the default selected row thats done by the default nature of DataGridView
I am also using SelectionChanged event
That dgv has 4 columns
If i leave the default row selection, SelectionChanged fires 4 times when its loaded which I don't want it to fire at all.
I have tried using the RowsPostPaint event which clears the selection and doesn't fire the SelectionChanged event but i'm unable to select any rows after.
Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要取消选择初始行选择,您可以枚举
SelectedRows
并将Selected
属性设置为false
。要防止在选择初始行时触发SelectionChanged
事件,请在取消选择后手动添加该事件。例如,在表单的
Load
事件中:To de-select the initial row selection, you can enumerate the
SelectedRows
and set theSelected
property tofalse
. To prevent theSelectionChanged
event from firing when the initial row is selected, add the event manually, after you de-select it.For example, in the form's
Load
event:使用它
在表单加载中
:对于侦听器:
但请注意,每当您更改数据源时,您的默认选择都会隐藏。
use this
in form loading:
and for the listener:
bute note that anytime you change datasource your default selection hides.
填充数据网格后,尝试这个。
After populating datagrid,try this one.