web-dev-qa-db-ja.com

WPFを使用したシステムトレイへのアプリケーションの最小化/終了

ユーザーがフォームを最小化または閉じるときに、システムトレイにアプリケーションを追加したい。最小化の場合にそれを行いました。フォームを閉じたときにアプリを実行し続けてシステムトレイに追加する方法を教えてもらえますか?

public MainWindow()
    {
        InitializeComponent();
        System.Windows.Forms.NotifyIcon ni = new System.Windows.Forms.NotifyIcon();
        ni.Icon = new System.Drawing.Icon(Helper.GetImagePath("appIcon.ico"));
        ni.Visible = true;
        ni.DoubleClick +=
            delegate(object sender, EventArgs args)
            {
                this.Show();
                this.WindowState = System.Windows.WindowState.Normal;
            };
        SetTheme();
    }

    protected override void OnStateChanged(EventArgs e)
    {
        if (WindowState == System.Windows.WindowState.Minimized)
            this.Hide();
        base.OnStateChanged(e);
    }
12
Fahad

OnClosingをオーバーライドして、アプリを実行し続け、ユーザーがアプリケーションを閉じたときにシステムトレイに最小化することもできます。

MainWindow.xaml.cs

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    // Minimize to system tray when application is minimized.
    protected override void OnStateChanged(EventArgs e)
    {
        if (WindowState == WindowState.Minimized) this.Hide();

        base.OnStateChanged(e);
    }

    // Minimize to system tray when application is closed.
    protected override void OnClosing(CancelEventArgs e)
    {
        // setting cancel to true will cancel the close request
        // so the application is not closed
        e.Cancel = true;

        this.Hide();

        base.OnClosing(e);
    }
}
7
TheMiddleMan

OnStateChanged()を使用する必要はありません。代わりに、PreviewClosedイベントを使用してください。

public MainWindow()
{
    ...
    PreviewClosed += OnPreviewClosed;
}

private void OnPreviewClosed(object sender, WindowPreviewClosedEventArgs e)
{
    m_savedState = WindowState;
    Hide();
    e.Cancel = true;
}
1
Pavel Ivchenkov