如何判断一个类的对象是否存在

发布于 2024-07-17 22:32:13 字数 175 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

捎一片雪花 2024-07-24 22:32:14

将对窗口的引用(在您的情况下是 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 a w.Close().

梦里梦着梦中梦 2024-07-24 22:32:14

不要将 w 存储在局部变量中,而是将其存储在当前类的成员变量中。 在 MouseExit 上,使用成员变量关闭窗口。

public partial class ListWindow
{
    Window displayWindow;

    public void OnListBoxItem_MouseEnter()
    {
        displayWindow = new Window();
        displayWindow.Show();
    }

    public void OnListBoxItem_MouseExit()
    {
        displayWindow.Close();
    }
}

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.

public partial class ListWindow
{
    Window displayWindow;

    public void OnListBoxItem_MouseEnter()
    {
        displayWindow = new Window();
        displayWindow.Show();
    }

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