删除指定窗口和它包含的所有控件.
GUIDelete ( [窗口句柄] )
窗口句柄 | [可选参数] 窗口句柄可由 GUICreate 的返回值获得(默认(default)使用上一次用过的句柄). |
成功: | 返回值为1. |
失败: | 返回值为0. |
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $msg
GUICreate("My GUI") ; 创建一个居中显示的 GUI 窗口
GUISetState() ; 显示一个空白的窗口
; 运行界面,直到窗口被关闭
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete() ; 将返回 1
EndFunc ;==>Example