kv998 发表于 2009-12-14 13:09:12

请问用GUI编辑器如何让窗体用两种不同的颜色~!

本帖最后由 kv998 于 2009-12-15 09:26 编辑


白色和灰色

水木子 发表于 2009-12-14 13:56:17

GUI编辑器里面没有发现。

就这样吧!
GUICtrlSetState ( 控件ID, $GUI_DISABLE)

KiwiCsj 发表于 2009-12-14 20:50:43

回复 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

kv998 发表于 2009-12-15 09:09:09

回复 3# KiwiCsj


    谢谢你帮助,解决了

kv998 发表于 2009-12-15 09:28:36

:face (33):加个分页标签就可以了

chenxianpeng 发表于 2009-12-15 18:44:21

学习了!!!!!!!

xpboy 发表于 2009-12-17 14:51:13

3#不能用吧,我在WIN7下面就没有 效果!
页: [1]
查看完整版本: 请问用GUI编辑器如何让窗体用两种不同的颜色~!