I’m not using the desktop style app, just a page with a popup form.
If the minimize,maximize buttons are enabled – where does the popup go when minimized – seems to dissapear. If I launch it again -does it create a new page and the other one is in limbo somwhere using resources ? – See screensot
When you minimize a window, it hides it and changes the WindowState to minimized.
The window is still as you say “in limbo and using resources” it is not destroyed.
Note that you can have a hidden window that is not minimized.
You can still access the window after it has been minimized. There are 3 ways to do this:
1. Use the desktop template
2. Use a taskbar https://docs.wisej.com/extensions/extensions/taskbar
3.Create your own custom code that deals with the window, something like this:
if (window.WindowState == FormWindowState.Minimized)
{
window.WindowState = FormWindowState.Normal;
}
See attached test case for an example of the custom code.
Please login first to submit.
