xwt620 发表于 2011-11-2 01:19:18

如何让窗口中的控件不随着窗口的缩放而改变位置【已解决】

本帖最后由 xwt620 于 2011-11-2 20:04 编辑


如图,如果点击最大化,那么button和listview就分散了,而我期望的是button和listview还是很紧凑,只是listview随着窗口放大。
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 408, 270, 192, 124, BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP))
$Button1 = GUICtrlCreateButton("Button1", 8, 8, 75, 25)
$Button2 = GUICtrlCreateButton("Button2", 88, 8, 75, 25)
$ListView1 = GUICtrlCreateListView("", 8, 40, 393, 225)
$Button3 = GUICtrlCreateButton("Button3", 168, 8, 75, 25)
$Button4 = GUICtrlCreateButton("Button4", 248, 8, 75, 25)
$Button5 = GUICtrlCreateButton("Button5", 328, 8, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

afan 发表于 2011-11-2 01:45:20

前面加上Opt('GUIResizeMode', 802)

menfan1 发表于 2011-11-2 09:45:00

楼上正解。。

gzh888666 发表于 2011-11-2 13:52:41

本帖最后由 gzh888666 于 2011-11-2 14:00 编辑

他可能要的是这种效果#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>

Opt("GUIResizeMode",802)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 408, 270, 192, 124, BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP))
$Button1 = GUICtrlCreateButton("Button1", 8, 8, 75, 25)
$Button2 = GUICtrlCreateButton("Button2", 88, 8, 75, 25)
$ListView1 = GUICtrlCreateListView("", 8, 40, 393, 225)
GUICtrlSetResizing (-1,102 )
$Button3 = GUICtrlCreateButton("Button3", 168, 8, 75, 25)
$Button4 = GUICtrlCreateButton("Button4", 248, 8, 75, 25)
$Button5 = GUICtrlCreateButton("Button5", 328, 8, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

      EndSwitch
WEnd

scum 发表于 2011-11-2 15:38:31

楼上正解!

zhuang513 发表于 2011-11-2 19:29:49

楼上正解!

xwt620 发表于 2011-11-2 20:01:56

回复 4# gzh888666


    不是可能,我就是要这种效果。太感谢了

uxuuexqyxwk 发表于 2011-11-3 09:48:37

呵呵,学习中,不错!

bdancerlc 发表于 2011-11-7 03:33:21

学习了.谢谢分享
页: [1]
查看完整版本: 如何让窗口中的控件不随着窗口的缩放而改变位置【已解决】