在 silverlight 中单击子窗口外部以关闭子窗口
当我点击子窗口外部时如何关闭子窗口?
How can I close a childwindow when I click outside of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我点击子窗口外部时如何关闭子窗口?
How can I close a childwindow when I click outside of it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您使用默认的 silverlight 子窗口样式,当它打开时,外部部分(透明的灰色部分)实际上是子窗口样式内的 Grid(称为 Overlay)。
所以你需要做的就是处理它的MouseLeftButtonDown事件,
并且在后面的代码中,你
也复制了这里的样式以防万一。 :)
if you are using the default silverlight child window style, when it opens, the outside part (the transparent grey part) is actually a Grid (called Overlay) that is within the child window style.
So what you need to do is to handle its MouseLeftButtonDown event,
and in the code behind, you do
I also copied the style here just in case. :)
您可以尝试使用 LostFocus 事件。
You may try with LostFocus event.