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

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


GUISetBkColor

設(shè)置 GUI 窗口背景顏色.

GUISetBkColor ( 背景色 [, 句柄] )

參 數(shù)

背景色 窗口背景色值.
句柄 [可選參數(shù)] 由 GUICreate() 函數(shù)返回的窗口句柄 (默認(rèn)為先前使用的窗口).

返 回 值

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

備 注

None

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

GUICreate

函 數(shù) 示 例


#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $msg

    GUICreate("我的 GUI") ; 創(chuàng)建居中顯示的 GUI 窗口

    GUISetBkColor(0xE0FFFF) ; 改變背景顏色

    GUISetState() ; 顯示一個(gè)空白的窗口

    ; 運(yùn)行 GUI, 直到 GUI 被關(guān)閉
    While 1
        $msg = GUIGetMsg()

        If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
EndFunc   ;==>Example

provider with jb51.net (unicode)