本帖最后由 QQ3131806 于 2010-11-23 08:51 编辑
我现在是有两个窗口,一个父窗口FORM1,另一个字窗口FORM2,在FORM2里的按钮,它的坐标比如说宽,高,左,顶部之类的这些坐标是以FORM2为参照物还是FORM1,而且在设计的时候,因为没法直观的看着FORM2,所以不知道在KODA里怎么调整FORM2里控件的坐标!
这是在KODA里设计的,FORM2是子窗口,上面带一个按钮aButton
这是运行后的效果,KODA里aButton的坐标是在大约中间的位置,但是运行后,却是跑到右下角了,汗,不知道该怎么调整子窗口里的控件坐标!
代码如下:#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 623, 449, 192, 114)
$Button1 = GUICtrlCreateButton("Button1", 56, 136, 75, 25)
$Form2 = GUICreate("Form2", 416, 357, 347, 138,$WS_CHILD,"",$Form1)
$aButton1 = GUICtrlCreateButton("aButton1", 136, 112, 75, 25)
GUISetState(@SW_SHOW,$Form1)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
GUISetState(@SW_SHOW,$Form2)
EndSwitch
WEnd
|