Only, for hours it wasn't. Instead of restoring, it was appearing as a tiny "minimized" window / title bar.
Turns out the "restore" / "show" order is important.
This:
WindowState = FormWindowState.Normal;
Show();
doesn't work.
This:
Show();
WindowState = FormWindowState.Normal;
works.
No comments:
Post a Comment