无法释放控件(NotifyIcon)

问题描述 投票:0回答:1

在我的家庭作业申请中;我需要创建一个应用程序,其中还需要使用NotifyIcon。我遇到了一个问题,我无法理解为什么代码从未达到Dispose事件。我正在实现“ IDisposable”; (以便能够在NotifyIcon上调用Dispose)。但是,在dispose事件中添加断点后;我看到我无法达到目标。我真的不明白为什么它没有到达那里。

我目前正在关注此线程,以帮助我使用此控件:NotifyIcon remains in Tray even after application closing but disappears on Mouse Hover

任何人都可以帮助我了解发生这种情况的原因或我错过了什么吗?

我的班级代码:

    private NotifyIcon trayIcon;

    public void CreateTrayIcon()
    {
        if (trayIcon == null) { trayIcon = new NotifyIcon(); }
        trayIcon.Text = "My Tray Application";
        trayIcon.Icon = Properties.Resources.AppIcon;
        trayIcon.Disposed += TrayIcon_Disposed;

        trayIcon.Visible = true;
    }

    private void TrayIcon_Disposed(object sender, EventArgs e) // Unreacheable Code
    {
        if (trayIcon != null) 
        {
            trayIcon.Visible = false;
            trayIcon = null;
        }
    }

    protected virtual void Dispose(bool Disposing)
    {
        if (Disposing)
        {
           trayIcon.Dispose();
        }
    }
    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

并致电NotifyIcon处置主表格; Form_ClosingEvent

private void Form_closing(object sender, FormClosingEventArgs e)
{
    trayIcon.Dispose();
}
c# dispose idisposable notifyicon
1个回答
0
投票

好的;我发现了问题。

我的问题背后的原因;从字面上是分散注意力。我以为FormClosing事件已订阅,(老实说:我确定已经订阅了它。我必须进行某种回滚并错误地删除了它)。

解决方案:仅需要进行检查并确保已订阅该事件。

© www.soinside.com 2019 - 2024. All rights reserved.