函数参考


GUICtrlDelete

删除指定控件.

GUICtrlDelete ( 控件ID )

参数

控件ID 控件标识符(控件ID),可由 GUICtrlCreate... 函数的返回值获得.

返回值

成功: 返回值为1.
失败: 返回值为0.

注意/说明

上下文菜单控件参考 GUICtrlCreateContextMenu 的说明.

相关

GUICreate, GUICtrlCreate..., GUICtrlCreateContextMenu

示例/演示


#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $date, $del, $msg

    GUICreate("我的GUI-删除控件", 200, 200, 800, 200)
    $date = GUICtrlCreateDate("1953/04/25", 10, 10, 185, 20)
    $del = GUICtrlCreateButton("删除控件", 50, 50, 70, 20)
    GUISetState()

    ; 运行 GUI 等待对话框关闭
    Do
        $msg = GUIGetMsg()
        If $msg = $del Then
            GUICtrlDelete($date)
            GUICtrlDelete($del)
        EndIf
    Until $msg = $GUI_EVENT_CLOSE
EndFunc   ;==>Example