#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#region ### START Koda GUI section
;	Das Fenster der GUI erstellen und formatieren
GUICreate("       Status des WLAN-Adapters umschalten.", 420, 269, -1, 124)
GUISetBkColor(0x808080)
$Button_2 = GUICtrlCreateButton("WLAN" & @CRLF & "aktivieren.", 46, 48, 330, 174, BitOR($BS_PUSHLIKE, $BS_MULTILINE, $WS_BORDER, $BS_CENTER))
GUICtrlSetFont(-1, 30, 800, 0, "Arial Black")
GUICtrlSetColor(-1, 0x00FF00)
GUICtrlSetBkColor(-1, 0xA0A0A4)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


While 1
	$GUI_Msg = GUIGetMsg()
	Select
		Case $GUI_Msg = $GUI_EVENT_CLOSE
			ExitLoop

	EndSelect
WEnd

Exit