基 础 函 数 参 考


GUICtrlCreateDummy

创建虚拟(Dummy)控件.

GUICtrlCreateDummy ( )

参 数

None.

返 回 值

成功: 返回控件标识符(控件ID).
失败: 返回 0.

备 注

控件可接收由 GUICtrlSendToDummy 发送的消息.
控件将正常通知, GUISendToDummy 发送的值可以用 GUICtrlRead 读取.

相 关 函 数

GUICtrlSendToDummy, GUICtrlSetOnEvent, GUICtrlRead, GUICtrlSetData

函 数 示 例


#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $user, $button, $cancel, $msg

    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
                ; 脚本关闭前的专用操作
                ; ...
                Exit
        EndSelect
    Until $msg = $GUI_EVENT_CLOSE
EndFunc   ;==>Example

provider with jb51.net (unicode)