代码如下,创建的窗口无法关闭,请问是什么原因呢
#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
#Global Const $GUI_EVENT_CLOSE = -3 ; 窗口关闭消息的值
Global Const $WM_ENTERSIZEMOVE = 0x0231 ; 窗口移动消息的值
Global Const $WM_EXITSIZEMOVE = 0x0232 ; 窗口结束移动消息的值
Opt ( "GUIOnEventMode" , 1 ) ; 开启 Event 模式
;主窗口
$Gui = GUICreate ( "Lefty", 400, 300, 550, 200 ) ; 创建一个居中显示的 GUI 窗口
$btn = GUICtrlCreateButton ("开始测试 ", 250,130,90,40)
GUISetState ( @SW_SHOW )
While 1 ; 死循环,保证脚本不会退出
Switch GUIGetMsg() ; 根据宏 @GUI_CtrlId 来判断消息
Case $GUI_EVENT_CLOSE
Exit
Case $btn
EndSwitch |