设置指定控件的背景颜色.
GUICtrlSetBkColor ( 控件ID, 背景色 )
控件ID | 控件标识符(控件ID),可由 GUICtrlCreate... 函数的返回值获得. |
背景色 | 要使用的 RGB 模式的颜色值. |
成功: | 返回值为1. |
失败: | 返回值为0. |
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $msg
GUICreate("My GUI background color") ; will create a dialog box that when displayed is centered
GUICtrlCreateLabel("my label", 10, 20)
GUICtrlSetBkColor(-1, 0x00ff00) ; Green
GUISetState()
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
EndFunc ;==>Example