设置控件的背景颜色.
GUICtrlSetBkColor ( 控件ID, 背景色 )
控件ID | 由 GUICtrlCreate... 函数返回的控件标识符. |
背景色 | RGB 颜色值. |
成功: | 返回 1. |
失败: | 返回 0. |
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local
$msg
GUICreate("标记控件背景颜色") ;
创建居中显示的 GUI 窗口
GUICtrlCreateLabel("我的文字标记", 10, 20)
GUICtrlSetBkColor(-1, 0x00ff00) ;
设置颜色
GUISetState()
; 运行 GUI, 直到
GUI 被关闭
While
1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
EndFunc ;==>Example
provider with jb51.net (unicode) |