捕获 DataGridView 中所有双击事件的最佳方法是什么?
我正在编写一个使用 DataGridView 控件的 Windows 窗体应用程序。我在控件上启用了行选择。我想捕获 DoubleClick 事件,但它似乎不能可靠地触发 - 在触发事件之前,我经常必须双击一行 2 或 3 次。谁能指出一种更可靠地捕获此内容的方法?
I'm writing a Windows Forms app that uses a DataGridView control. I have row select enabled on the control. I would like to trap the DoubleClick event, but it doesn't seem to fire reliably - I often have to double-click on a row 2 or 3 times before the event is triggered. Could anyone point me to a way to capture this more reliably?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 CellDoubleClick 事件。 EventArgs 具有行索引和列索引。
Look into the CellDoubleClick event. The EventArgs have the Row and Column indexes.