鼠标事件处理

发布于 2024-11-05 15:29:30 字数 71 浏览 1 评论 0原文

我有一个WPF窗口。我想当我的鼠标光标位于窗口的控制区域之外并且我单击它时我希望我的窗口消失是否有任何机制可以通过WPF实现它?

I have a WPF window .I want when my mouse cursor is outside the Control area of window and I am clicking on it I want my window to disappear is there any mechanism of achieving it thorough WPF??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

千寻… 2024-11-12 15:29:30

看一下 Mouse.Capture 方法。即使鼠标不在您的控制范围内,这也可以让您获取鼠标事件。

使用 null 调用 Capture 后,请务必在完成后释放鼠标。

要释放鼠标捕获,请调用 Capture,传递 null 作为要捕获的元素。

在构造函数中放置此:

public MyControl()
{
    //Other stuff like initialize component
    Mouse.Capture(this);
    MouseLeftButtonDown += OnMouseLeftButtonDown;
}

然后实现该方法:

private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    if(!this.IsMouseOver)
    {
        Close(); //your closing implementation here
        Mouse.Capture(null);
    } 
}

Take a look at the Mouse.Capture method. This lets you get mouse events even if the mouse is outside your control.

Be sure to release the mouse once you're done though calling Capture with null.

To release mouse capture, call Capture passing null as the element to capture.

In the constructor place this:

public MyControl()
{
    //Other stuff like initialize component
    Mouse.Capture(this);
    MouseLeftButtonDown += OnMouseLeftButtonDown;
}

Then implement that method:

private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    if(!this.IsMouseOver)
    {
        Close(); //your closing implementation here
        Mouse.Capture(null);
    } 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文