Function Reference

首页  后退  前进

GUICtrlDelete

 

删除控件.

 

GUICtrlDelete ( controlID )

参数

controlID

使用 GUICtrlCreate...() 控件创建类函数返回的控件标识符, 或 -1 使用该语句上面创建的控件.

返回值

成功:

返回 1.

失败:

返回 0.

备注

上下文菜单控件参考 GUICtrlCreateContextMenu() 函数的备注.

相关

GUICreate, GUICtrlCreate..., GUICtrlCreateContextMenu

函数示例

#include <GUIConstantsEx.au3>
Example()
Func Example()
    GUICreate("My GUI delete control", 200, 200, 800, 200)
    Local $idDate = GUICtrlCreateDate("1953/04/25", 10, 10, 185, 20)
    Local $idDel = GUICtrlCreateButton("Delete control", 50, 50, 70, 20)
    GUISetState(@SW_SHOW)
    Local $idMsg
    ; Loop until the user exits.
    Do
        $idMsg = GUIGetMsg()
        If $idMsg = $idDel Then
            GUICtrlDelete($idDate)
            GUICtrlDelete($idDel)
        EndIf
    Until $idMsg = $GUI_EVENT_CLOSE
EndFunc   ;==>Example

----------------------------------------