如何判断一个类的对象是否存在
在我的 ListBoxItem MouseEnter 事件中,我使用以下代码创建一个新窗口。
Window w = new Window();
w.Show();
当鼠标离开当前项目时,我想关闭窗口。
我怎么做?
非常感谢。
On my ListBoxItem MouseEnter event I am creating a new window with the following code.
Window w = new Window();
w.Show();
When the mouse leaves the current item I want to close the window.
How do I do that?
Many Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将对窗口的引用(在您的情况下是
w
)存储在 MouseEnter 和 MouseExit 的事件处理程序都可以访问它的位置,然后只需执行w.Close()
。Store a reference to the window (
w
in your case) in a place where both the event handler for MouseEnter and MouseExit can access it and then just do aw.Close()
.不要将 w 存储在局部变量中,而是将其存储在当前类的成员变量中。 在 MouseExit 上,使用成员变量关闭窗口。
Instead of storing the w in a local variable, store it in a member variable of the current class. On MouseExit, use the member variable to close the Window.