chishingchan 发表于 2015-9-14 14:33:20

[已解决] GUICtrlCreateMenu 与 GUICtrlCreateTab 组合的怪现象

本帖最后由 chishingchan 于 2015-9-14 19:31 编辑

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <EditConstants.au3>
#include <StaticConstants.au3>

GUICreate("标题",640,480,-1,-1)
$filemenu=GUICtrlCreateMenu("菜单")
GUICtrlCreateMenuItem("项目",$filemenu)

GUICtrlCreateTab(1,1,640,460)
GUICtrlCreateTabItem("")
GUICtrlCreateGroup("组名称",5,25,313,100)
GUICtrlCreateLabel("Label1: ",14,45)
GUICtrlCreateInput(":",69,42,240,18)
GUICtrlCreateLabel("Label2: ",14,65)
GUICtrlCreateLabel("Label3: ",14,85)
GUICtrlCreateTabItem("")
GUICtrlCreateTabItem("")
GUICtrlCreateTabItem("")
GUISetState()

Do
        Local $msg = GUIGetMsg()
Until $msg = $GUI_EVENT_CLOSE
此脚本运行后 页没有内容, 打开其他页再打开 页后内容才出来! 请高手指教一下, 谢谢!

chishingchan 发表于 2015-9-14 16:05:35

afan 发表于 2015-9-14 17:30:17

本帖最后由 afan 于 2015-9-14 17:31 编辑

(3.3.6.x) 和 (3.3.10.x 及其之后)的版本正常,中间版本有这问题。

chishingchan 发表于 2015-9-14 19:29:37

回复 3# afan


    原来如此! 我用的版本是 3.3.9.21.

weeks4 发表于 2015-9-15 06:55:35

学习了。。

1361739590 发表于 2015-9-17 16:41:24

3.3.8.1测试正常

1361739590 发表于 2015-9-17 16:42:13

忘了说了   最后加GUICtrlCreateTabItem("")

1361739590 发表于 2015-9-17 16:42:48

回复 3# afan


    最后加GUICtrlCreateTabItem("")好像就正常了。
页: [1]
查看完整版本: [已解决] GUICtrlCreateMenu 与 GUICtrlCreateTab 组合的怪现象