sprinkle 发表于 2008-7-29 23:04:42

如何让GUI支持最大化和缩放?

<P>要怎么设置GUI才能让窗口支持最大化和窗口大小的随意缩放?</P>
<P>&nbsp;</P>
<P>我自己写的代码是:</P>
<P>&nbsp;</P>
<P>$Form1 = GUICreate("我的AU3", 600, 400, 180, 80)</P>

[ 本帖最后由 sprinkle 于 2008-7-30 20:51 编辑 ]

sanhen 发表于 2008-7-30 07:32:38


#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

sprinkle 发表于 2008-7-30 20:51:45

非常感谢,解决了

botanycc 发表于 2008-7-30 20:55:21

正好学习了
页: [1]
查看完整版本: 如何让GUI支持最大化和缩放?