如何在属性网格中右键单击选择单元格
我有一个 propertyGridControl - 当鼠标右键单击它时如何处理 - 如果单击一行但仅单击该行中的属性值而不是属性名称所在的单元格?现在它只是引发右键单击事件而不标记单元格。
I have a propertyGridControl - how to handle when mouse right is clicked on it - if its clicked on a row but only on the value of the property in this row and not on the cell in which is the name of the property? Now its just raising the rightclick event and not marking the cell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此类任务通常使用控件的 CalcHitInfo 方法来实现。它用于确定单击的控件的区域。这是代码:
Such tasks are usually implemented using the control's CalcHitInfo method. It is used to determine the clicked control's area. Here is the code: