基 础 函 数 参 考


GUICtrlSetDefColor

设置 GUI 窗口所有控件文本默认颜色.

GUICtrlSetDefColor ( 颜色 [, 句柄] )

参 数

颜色 控件文本的默认颜色.
句柄 [可选参数] 由 GUICreate() 函数返回的窗口句柄 (默认为先前使用的窗口).

返 回 值

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

备 注

None

相 关 函 数

GUICreate, GUICtrlSetDefBkColor, GUICtrlSetColor

函 数 示 例


#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $msg

    GUICreate("设置 GUI 控件文本颜色") ; 创建居中显示的 GUI 窗口

    GUICtrlSetDefColor(0xFF0000) ; 所有定义的控件将改变文字颜色

    GUICtrlCreateLabel("标记", 10, 5)

    GUICtrlCreateRadio("单选框", 10, 25, 50)
    GUICtrlSetColor(-1, 0x0000FF) ; 为指定的控件改变文字颜色

    GUICtrlCreateButton("按钮", 10, 55)

    GUISetState() ; 显示一个空白的窗口

    ; 运行 GUI, 直到 GUI 被关闭
    While 1
        $msg = GUIGetMsg()

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

provider with jb51.net (unicode)