欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基 礎(chǔ) 函 數(shù) 參 考


GUICtrlDelete

刪除控件.

GUICtrlDelete ( 控件ID )

參 數(shù)

控件ID GUICtrlCreate... 函數(shù)返回的控件標識符.

返 回 值

成功: 返回 1.
失敗: 返回 0.

備 注

上下文菜單控件參考 GUICtrlCreateContextMenu 函數(shù)的備注.

相 關(guān) 函 數(shù)

GUICreate, GUICtrlCreate..., GUICtrlCreateContextMenu

函 數(shù) 示 例


#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, 直到 GUI 被關(guān)閉
    Do
        $msg = GUIGetMsg()
        If $msg = $del Then
            GUICtrlDelete($date)
            GUICtrlDelete($del)
        EndIf
    Until $msg = $GUI_EVENT_CLOSE
EndFunc   ;==>Example

provider with jb51.net (unicode)