鼠标事件处理
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 Mouse.Capture 方法。即使鼠标不在您的控制范围内,这也可以让您获取鼠标事件。
使用 null 调用 Capture 后,请务必在完成后释放鼠标。
在构造函数中放置此:
然后实现该方法:
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.
In the constructor place this:
Then implement that method: