This is somewhat of a mundane question but it seems to me there is no in-built method for it in WPF. There only seems to be the WindowState property which being
WindowState
For some reason,
WindowState = WindowState.Normal;
didn't work for me. So I used following code & it worked..
Show(); WindowState = WindowState.Normal;