在WPF / C#中,如何检查中心按钮是否被单击或释放?
在WPF/C#中,MouseRightButtonDown和MouseLeftButtonDown都有事件,但是鼠标中键呢?
是否忘记了鼠标中心按钮向下/向上(例如 WPF 中的事件)?
如何检查中心按钮是否被单击或释放?
In WPF / C#, there are events on MouseRightButtonDown and MouseLeftButtonDown, but what about the center mouse button?
Is the Center Mouse button down/up e.g. events in WPF forgotten?
How can I check if the center button is clicked or released?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 MouseDown/MouseUp 事件并检查 MouseButtonEventArgs:
Use the MouseDown/MouseUp event and check the MouseButtonEventArgs:
使用
MouseDown
和MouseUp< /code>
事件:
Use the
MouseDown
andMouseUp
events:您可以处理 MouseDown 事件,并在事件处理程序中您可以使用以下命令检查按下了哪个鼠标按钮
you can handle MouseDown event and in event handler you can check which Mouse Button was pressed by using
我认为没有为向上或向下事件定义直接的事件处理程序。我们唯一能做的就是处理 MouseDown 事件并检查 MiddleButton 状态,如下所示,
I do not think there is a direct event handler defined for Up or Down events. The only thing we could do is handle the MouseDown event and check the MiddleButton state like so,