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

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


GUICtrlSetDefBkColor

設(shè)置 GUI 窗口所有控件的默認(rèn)背景色.

GUICtrlSetDefBkColor ( 背景色 [, 句柄] )

參 數(shù)

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

返 回 值

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

備 注

None

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

GUICreate, GUICtrlSetDefColor, GUICtrlSetBkColor

函 數(shù) 示 例


#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $msg

    GUICreate("設(shè)置 GUI 控件文本顏色") ; 創(chuàng)建居中顯示的 GUI 窗口

    GUICtrlSetDefBkColor(0xFF0000) ; 所有定義的控件將改變文字顏色

    GUICtrlCreateLabel("標(biāo)記", 10, 5)

    GUICtrlCreateRadio("單選框", 10, 25, 50)
    GUICtrlSetBkColor(-1, 0x0000FF) ; 為指定的控件改變文字顏色

    GUICtrlCreateButton("按鈕", 10, 55)

    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)