You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Windows 11 here. I used a hotkey library to bind the escape key to leave fullscreen. Codewise this does App.MainWindow.SetFullScreen(false);. While it does leave the fullscreen mode as desired it does not fall back to the original window size, hence resulting in a maximized window. And secondly more annoying: my app is using the chromeless window, but after changing fullscreen to false, im suddenly getting the chrome decoration back.
The text was updated successfully, but these errors were encountered:
This will require window state management on each OS in an appropriate fashion.
@IceReaper you can implement this by writing the current size and position of the window into a file and set them after returning from the fullscreen state.
Windows 11 here. I used a hotkey library to bind the
escape
key to leave fullscreen. Codewise this doesApp.MainWindow.SetFullScreen(false);
. While it does leave the fullscreen mode as desired it does not fall back to the original window size, hence resulting in a maximized window. And secondly more annoying: my app is using the chromeless window, but after changing fullscreen to false, im suddenly getting the chrome decoration back.The text was updated successfully, but these errors were encountered: