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

函數(shù)說明

GUICtrlCreateDummy

在GUI上創(chuàng)建一個 Dummy 控件。

GUICtrlCreateDummy ( )

 

參數(shù)

 

返回值

成功: 返回控件標識符(控件ID)。
失敗: 返回值為0。

 

注意

Dummy 這種控件可接收由 GUISendToDummy 發(fā)送的消息,它將如!巴ㄖ╪otify)”,而 GUISendToDummy 發(fā)送的值可由 GUICtrlRead 來讀取。

 

相關(guān)

GUICtrlSendToDummy, GUICtrlSetOnEvent, GUICtrlRead, GUICtrlSetData

 

示例


#include <GUIConstants.au3>

GUICreate("GUICtrlCreateDummy",250,200, 100,200)
GUISetBkColor (0x00E0FFFF)  ; 改變背景顏色

$user = GUICtrlCreateDummy()
$button = GUICtrlCreateButton ("事件",75,170,70,20)
$cancel = GUICtrlCreateButton ("取消",150,170,70,20)
GUISetState()

Do
  $msg = GUIGetMsg ()
    
   Select
      Case $msg = $button
         GUICtrlSendToDummy($user)
      Case $msg = $cancel
         GUICtrlSendToDummy($user)
      Case $msg = $user
         ; 可在此添加在關(guān)閉窗口前的特別指令
         ; ...
         exit
   EndSelect
Until $msg = $GUI_EVENT_CLOSE