wpf - How to restore a window while it is minimized in system tray? -


i have wpf form has 1 main window. when click button in main window show child window. tried restore child window couldn't. how restore while minimized in system tray?

something should work

 if (this.mainwindow.windowstate == windowstate.minimized)  {      this.mainwindow.windowstate = windowstate.normal;  }   //bring window front of windows  this.mainwindow.activate(); 

this.mainwindow should reference window want maximize or bring normal state.

regards,


Comments

Popular posts from this blog

xml - Extract substrings with XSLT -

math - "ELO Rating" and how does "TSR Rating" work? -

How can do a tuple comparison in coffeescript similar to that in python? -