本帖最后由 iori2882 于 2012-5-5 16:14 编辑
无窗口界面建立菜单怎么建立呢?我在一个无窗口界面上写了一个菜单,他自动在上面默认给我加了一行,应该怎么弄才能把他弄下来啊?
原本的界面为
加完菜单之后变成这样
我其实是想让他和右上角的3个图标一平齐的......
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 613, 401, 292, 124, $WS_POPUP)
GUICtrlSetBkColor($Form1, 0x00ff00)
$MenuItem1 = GUICtrlCreateMenu("帮助")
$MenuItem4 = GUICtrlCreateMenuItem("MenuItem4", $MenuItem1)
$Button2 = GUICtrlCreateButton("X", 584, 0, 17, 17)
$Button4 = GUICtrlCreateButton("□", 560, 0, 17, 17)
$Button6 = GUICtrlCreateButton("一", 536, 0, 17, 17)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button2
ExitLoop
EndSwitch
WEnd
菜单栏应该是个独立的界面,所以不能移动下来,还是用按钮代替吧 |