向数据网格列按钮添加操作的最佳方法是什么?
您好,我有一个 Windows 窗体应用程序,并且有一个数据网格,最后一列是按钮列。我读过,为了能够回答单击事件,我必须使用“cellClick”事件处理程序,但是当我使用它时,无论单击按钮还是单击角落的单元格,事件都会触发。那么有没有更好的方法以及如何实现。提前感谢您的帮助。
Hi there i have a windows form application and i have a datagrid with last column beign a button column. I have read that to be able to answer to the click event i have to use "cellClick" event handler but when i use this the event triggers no matter is the button clicked or is the cell clicked in the corner. So is there a better way to this and how. Thanks for your help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在使用 datagrid 视图,那么这就是解决方案
这是您需要捕获按钮单击事件的 DataGridView 处理程序。
这是按钮单击处理程序示例,
我希望它能帮助您......
I am assuming that you are using datagrid view then this the solution
This is the DataGridView handler you need to capture the button click event.
This is the button click handler example
i hope it will helps you....