Hi,<br>I have a WPF app and I&#39;m trying to mess with WindowState. I have two windows, a modal selection dialog, and a main window. If I bring up the selection dialog with the main window in background, and minimize the selection dialog, it leaves the main window visible but you can&#39;t interact with it. So far, normal.<br>

<br>If I make a selection, the select dialog closes leaving the main window, and I can minimize the main window using the standard windows controls, and restore it from the taskbar. OK so far.<br><br>However, I want to get it working like this: if I minimize the selection dialog, I&#39;d like to minimize the main window also. So, I added an event listener on StateChanged, something like:<br>

<br>def state_changed(...):<br>    if self._w.WindowState == WindowState.Minimized:<br>        main_window.WindowState = WindowState.Minimized<br><br>This captures the minimize event, both the selection dialog and main window minimize, BUT now I can&#39;t right-or-left-click on the minimized app to get it to restore, and have to kill the app using task manager. Also, it appears that instead of having two windows represented on the taskbar, only the main window is left - even though I should still have both the select dialog and the main window minimized.<br>

<br>Is there some magic state I need to set in the main window to be able to have it restore again? Why should it make a difference whether the minimize is done by the main window &#39;min&#39; button, or by setting its WindowState?<br>

Ken<br>