|
本帖最后由 forgetdu 于 2012-3-26 13:58 编辑
请高手指教
原码如下:
#include <GUIConstantsEx.au3>
#include <GuiComboBoxEx.au3>
Example()
Func Example()
Local $msg
$hGUI=GUICreate("http://www.xfpm.org/") ; will create a dialog box that when displayed is centered
GUISetFont(9, 300)
GUICtrlCreateTab(10, 10, 200, 100)
GUICtrlCreateTabItem("tab0")
GUICtrlCreateLabel("label0", 30, 80, 50, 20)
GUICtrlCreateButton("OK0", 20, 50, 50, 20)
GUICtrlCreateInput("default", 80, 50, 70, 20)
GUICtrlCreateTabItem("tab----1")
GUICtrlCreateLabel("label1", 30, 80, 50, 20)
_GUICtrlComboBoxEx_Create($hGUI, "", 20,50, 90, 200)
GUICtrlCreateButton("OK1", 120, 50, 50, 20)
GUICtrlCreateTabItem("tab2")
GUICtrlSetState(-1, $GUI_SHOW) ; will be display first
GUICtrlCreateLabel("label2", 30, 80, 50, 20)
GUICtrlCreateButton("OK2", 140, 50, 50)
GUICtrlCreateTabItem("") ; end tabitem definition
GUICtrlCreateLabel("label3", 20, 130, 50, 20)
GUISetState()
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
EndFunc ;==>Example |
|