亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

函數(shù)說明

GUICtrlDelete

刪除指定控件。

GUICtrlDelete ( 控件ID )

 

參數(shù)

控件ID 控件標識符,可由 GUICtrlCreate... 的返回值獲得。

 

返回值

成功: 返回值為1。
失敗: 返回值為0。

 

注意

本函數(shù)目前還未能用于刪除右鍵菜單控件。

 

相關

GUICreate, GUICtrlCreate...

 

示例


#include <GUIConstants.au3>

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

; 運行腳本直到窗口被關閉
Do
    $msg = GUIGetMsg()
    if $msg = $del then
        GUICtrlDelete($date)
        GUICtrlDelete($del)
    endif
Until $msg = $GUI_EVENT_CLOSE