请问用GUI编辑器如何让窗体用两种不同的颜色~!
本帖最后由 kv998 于 2009-12-15 09:26 编辑白色和灰色 GUI编辑器里面没有发现。
就这样吧!
GUICtrlSetState ( 控件ID, $GUI_DISABLE) 回复 1# kv998 #include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("所谓的一窗两背景色", 374, 307, 192, 124)
$Tab1 = GUICtrlCreateTab(0, -8, 377, 273)
GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
GUICtrlCreateTabItem("")
$Button1 = GUICtrlCreateButton("Button1", 200, 280, 75, 25, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Button2", 288, 280, 75, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
回复 3# KiwiCsj
谢谢你帮助,解决了 :face (33):加个分页标签就可以了 学习了!!!!!!! 3#不能用吧,我在WIN7下面就没有 效果!
页:
[1]