Datagridview 单元格内容单击事件无法正常工作
我编写了一个事件来检索 datagridview
中的 CellContentClick
事件中单击的单元格行的第一个单元格值。但仅当我单击第三个单元格时才会引发该事件,而当我单击 datagridview 的第一个或第二个单元格时该事件不会引发。
请帮我。
I wrote an event to retrieve the first cell value of the clicked cell's row on CellContentClick
event in datagridview
. but the event is getting raised only when i click the third cell and not getting raised when i click the first or second cell of datagridview.
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试实现
CellClick
事件而不是CellContentClick
事件Try to implement the
CellClick
event instead ofCellContentClick
event要添加 Rami 的答案,您还需要更新表单的
Designer.cs
中默认生成的代码。原代码:
修改为:
To add to Rami's answer, you will also need to update the default generated code in your Form's
Designer.cs
.Original code:
Change it to: