I want to move a maximized form to another screen, but setting the location doesn't seem to work in the maximized-state.
Is there any way to move it to another screen without changing its WindowState?
I want to move a maximized form to another screen, but setting the location doesn't seem to work in the maximized-state.
Is there any way to move it to another screen without changing its WindowState?
After consultation with Microsoft we learned that the only way to do this is to hide the form (window), wait 10ms, set the state to Normal, set the new location (keep DPI settings in mind), set the state to Maximized, wait 10ms, and show the form (window).