在WPF / C#中,如何检查中心按钮是否被单击或释放?

发布于 2024-08-11 08:08:43 字数 134 浏览 6 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

×纯※雪 2024-08-18 08:08:44

使用 MouseDown/MouseUp 事件并检查 MouseButtonEventArgs:

private void control_MouseDown(object sender, MouseButtonEventArgs e)
{
    if (e.ChangedButton == MouseButton.Middle)
    {

    }
}

Use the MouseDown/MouseUp event and check the MouseButtonEventArgs:

private void control_MouseDown(object sender, MouseButtonEventArgs e)
{
    if (e.ChangedButton == MouseButton.Middle)
    {

    }
}
只为守护你 2024-08-18 08:08:44

使用 MouseDown MouseUp< /code>事件:

您应该使用MouseDown事件并检查MiddleButton 事件参数中的状态。

Use the MouseDown and MouseUp events:

You should use the MouseDown event and check the MiddleButton state in the event arguments.

原来分手还会想你 2024-08-18 08:08:44

您可以处理 MouseDown 事件,并在事件处理程序中您可以使用以下命令检查按下了哪个鼠标按钮

if(e.ChangedButton == System.Windows.Input.MouseButton.Middle)
{
.....
}

you can handle MouseDown event and in event handler you can check which Mouse Button was pressed by using

if(e.ChangedButton == System.Windows.Input.MouseButton.Middle)
{
.....
}
轮廓§ 2024-08-18 08:08:44

我认为没有为向上或向下事件定义直接的事件处理程序。我们唯一能做的就是处理 MouseDown 事件并检查 MiddleButton 状态,如下所示,

void Window1_MouseDown(object sender, MouseButtonEventArgs e)
    {
        MessageBox.Show(e.MiddleButton.ToString());
    }

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,

void Window1_MouseDown(object sender, MouseButtonEventArgs e)
    {
        MessageBox.Show(e.MiddleButton.ToString());
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文