views:

344

answers:

1

My application has a tray icon which, when double-clicked, hides or shows the application window. My issue is that I can't seem to bring the window to the foreground if it was in a minimized state when it was hidden.

For instance, say the user minimizes the application and then double-clicks the tray icon. The application window is then hidden and disappears from the taskbar. When the user double-clicks the tray icon again, the application window should appear, i.e. it should be restored from the minimized state and brought to the foreground.

The code below ought to do just that, but for some reason it doesn't:

private void TrayIcon_DoubleClick(object sender, EventArgs e)
{
    if (this.Visibility == Visibility.Hidden)
    {
        this.Visibility = Visibility.Visible;
        this.WindowState = WindowState.Normal;
        this.Activate();
    }
    ...
}

The application stays minimized and isn't brought to the foreground. Activate() returns true and subsequent calls to TrayIcon_DoubleClick() indicate that the state is indeed set to Normal.