17 lines
227 B
AutoIt
17 lines
227 B
AutoIt
|
#include "MetroGUI-UDF\MetroGUI_UDF.au3"
|
||
|
|
||
|
$ProgramName = "Modern NotePad"
|
||
|
|
||
|
GLobal $Notepad = _Metro_CreateGUI($ProgramName,700,500)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
While 1
|
||
|
$nMSG = GUIGetMsg()
|
||
|
Switch $nMSG
|
||
|
Case $Notepad
|
||
|
|
||
|
EndSwitch
|
||
|
WEnd
|