Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF: Window stays minimized even when setting WindowState explicitly

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.

like image 332
dreijer Avatar asked Mar 06 '10 06:03

dreijer


2 Answers

I cross posted my question on the MSDN Forums and it got answered there. To quote the answer:


Some properties on Window that are more like methods, in the sense they cause complex actions to happen, need to happen after the previous action has already completed. One way to get that to happen is using Dispatcher.BeginInvoke. If you change your code to look like this, it should work:

if (this.Visibility == Visibility.Hidden)
{
    this.Visibility = Visibility.Visible;
    Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background,
        new Action(delegate()
        {
            this.WindowState = WindowState.Normal;
            this.Activate();
        })
    );
}

I tried this out and it fixed the problem for me. Also, I think you can leave out the this.Activate() as well.

like image 116
dreijer Avatar answered Oct 14 '22 12:10

dreijer


I found a better way. As the problem happens when changing the visibility of the window and the window state what I do is changing the property ShowInTaskBar instead of Visibility. Anyway a minimized window with ShowInTaskBar = true is like a hidden window.

like image 22
Ignacio Soler Garcia Avatar answered Oct 14 '22 14:10

Ignacio Soler Garcia