如何让GUI支持最大化和缩放?
<P>要怎么设置GUI才能让窗口支持最大化和窗口大小的随意缩放?</P><P> </P>
<P>我自己写的代码是:</P>
<P> </P>
<P>$Form1 = GUICreate("我的AU3", 600, 400, 180, 80)</P>
[ 本帖最后由 sprinkle 于 2008-7-30 20:51 编辑 ]
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
Example1()
; example 1
Func Example1()
Local $msg
GUICreate("My GUI", 600, 400, -1, -1,BitOR($WS_MINIMIZEBOX, $WS_MAXIMIZEBOX, $WS_SIZEBOX))
; will create a dialog box that when displayed is centered
GUISetState(@SW_SHOW) ; will display an empty dialog box
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete()
EndFunc ;==>Example1
非常感谢,解决了 正好学习了
页:
[1]