C#,mouseClickEvent不响应鼠标右键单击
单击事件不响应鼠标右键单击。该事件适用于 richTextBox。 当我在表单上尝试相同的代码时,它工作正常。
可能是什么问题?
编辑:我使用winforms
on click event doesn't respond to right mouse click. The event is for a richTextBox.
when I try the same code on the form it works fine.
what could be the problem?
EDIT: I use winforms
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 MouseDown 事件上检查它。
You need to check it on the MouseDown event.
Click 和 MouseClick 事件仅由左键单击生成。如果您想检测右键单击,则必须实现 MouseDown 或 MouseUp 事件。
The Click and MouseClick events are only generated by a left-click. If you want to detect right-clicks then you have to implement the MouseDown or MouseUp event.