Luigi Posted December 16, 2016 Share Posted December 16, 2016 Greetings, I try create a GUI FULL SCREEN in Windows 10, I search many topics, change many Styles and ExStyles, but, always create a GUI, and a Windows task bar is showed. What I do something wrong? Someone have a example? Visit my repository Link to comment Share on other sites More sharing options...
InunoTaishou Posted December 16, 2016 Share Posted December 16, 2016 (edited) You want to use the $WS_POPUP style and set the width and height to the desktop dimensions #include <GUIConstants.au3> Global $hMain = GUICreate("Example", 600, 400, -1, -1, BitOR($WS_MAXIMIZEBOX, $WS_MINIMIZEBOX, $WS_SIZEBOX)) Global $btnFullScreen = GUICtrlCreateButton("Fullscreen", 10, 10, 100, 20) Global $aGuiStyle = GUIGetStyle($hMain) ; Save the default styles GUISetState(@SW_SHOW, $hMain) While (True) Switch (GUIGetMsg()) Case $GUI_EVENT_CLOSE Exit 0 Case $btnFullScreen Fullscreen() EndSwitch WEnd Func Fullscreen() Local Static $bFullScreen = False $bFullScreen = Not $bFullScreen Switch ($bFullScreen) Case True GUISetStyle($WS_POPUP, -1, $hMain) WinMove($hMain, "", 0, 0, @DesktopWidth, @DesktopHeight) Case False GUISetStyle($aGuiStyle[0], -1, $hMain) WinMove($hMain, "", 0, 0, 600, 400) EndSwitch EndFunc Edited December 17, 2016 by InunoTaishou Forgot to remove an unused include AndroidZero and meoit 2 Link to comment Share on other sites More sharing options...
Luigi Posted December 17, 2016 Author Share Posted December 17, 2016 @InunoTaishou, thank you, it's work. Visit my repository Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now