#NoTrayIcon
#Region ;**** 参数创建于 ACNWrapper_GUI ****
#AutoIt3Wrapper_icon=G:\素材大全\图标资源\常用图标\08.ico
#AutoIt3Wrapper_Res_Comment=清空回收站
#AutoIt3Wrapper_Res_Description=清空回收站
#AutoIt3Wrapper_Res_Fileversion=1.0
#AutoIt3Wrapper_Res_LegalCopyright=阿福所有 侵权不究
#EndRegion ;**** 参数创建于 ACNWrapper_GUI ****
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <ButtonConstants.au3>
#Region ### START Koda GUI section ### Form=E:\Downloads\Koda\关闭计算机.kxf
$Form1 = GUICreate("关闭计算机", 266, 117, -1, -1, -1, $WS_EX_TOPMOST)
GUISetIcon("G:\素材大全\图标资源\常用图标\08.ico", -1)
$Button_1 = GUICtrlCreateButton("注销", 30, 40,40, 40,$BS_ICON )
GUICtrlSetImage(-1, "shell32.dll", 22)
;$Icon1 = GUICtrlCreateIcon("G:\素材大全\图标资源\常用图标\10.ico", -1, 24, 24, 48, 48)
GUICtrlSetCursor (-1, 0)
;$Icon2 = GUICtrlCreateIcon("G:\素材大全\图标资源\常用图标\08.ico", -1, 108, 24, 48, 48)
GUICtrlSetCursor (-1, 0)
;$Icon3 = GUICtrlCreateIcon("G:\素材大全\图标资源\常用图标\09.ico", -1, 192, 24, 48, 48)
GUICtrlSetCursor (-1, 0)
$Label1 = GUICtrlCreateLabel("注销", 32, 80, 36, 20)
GUICtrlSetFont(-1, 12, 400, 0, "幼圆")
$Label2 = GUICtrlCreateLabel("关机", 112, 80, 36, 20)
GUICtrlSetFont(-1, 12, 400, 0, "幼圆")
$Label3 = GUICtrlCreateLabel("重启", 200, 80, 36, 20)
GUICtrlSetFont(-1, 12, 400, 0, "幼圆")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button_1
MsgBox(0,0,"ico1");Shutdown(4)
Shutdown(0)
EndSwitch
WEnd