GUICtrlCreateLabel可以显示在GUICtrlCreateListView控件列表之上吗?
本帖最后由 81206954 于 2009-12-29 16:36 编辑$Label1 = GUICtrlCreateLabel("欢迎光临", 140, 170, -1, -1)
$ListView1 = GUICtrlCreateListView("55555", 8, 8, 487, 161)
GUICtrlCreateLabel的内容, 可以显示在GUICtrlCreateListView控件列表之上吗?,效果请看图:
本帖最后由 landays 于 2009-12-29 15:06 编辑
控件顺序的问题吧
先创建label控件 然后再创建listview控件
这样label就排在前端了 是不是就你说的效果?
回复 2# landays
谢谢~~
是顺序问题,但是原来多了两个按钮就又不看不见了~~~:face (2):
#include <GUIConstantsEx.au3>
$Form1 = GUICreate("Test", 506, 210, -1, -1)
$Button1 = GUICtrlCreateButton("退出", 192, 176, 73, 22)
GUICtrlCreateLabel("11", 140, 170, -1, -1)
GUICtrlCreateLabel("11", 140, 140, -1, -1 )
$ListView1=GUICtrlCreateListView("序| 名 称 |", 8, 8, 487, 161 )
GUICtrlCreateListViewItem("-1|4||6546|", $ListView1)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE, $Button1
Exit
EndSwitch
WEnd
页:
[1]