什么函数可以新建一个可以随意调整大小的窗口
什么函数可以新建一个可以随意调整大小的窗口? GUICreate函数,加上WS_SIZEBOX样式。 #include <GUIConstantsEx.au3>#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
Example1()
; example 1
Func Example1()
Local $msg
GUICreate("My GUI",-1,-1,-1,-1, $WS_EX_APPWINDOW)
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 2楼的方法我没有试,3楼的是可以的。
谢谢你们了
我想问一下3楼GUICreate("My GUI",-1,-1,-1,-1, $WS_EX_APPWINDOW) ,其中“-1,-1,-1,-1”的意思 2楼的方法我没有试,3楼的是可以的。
谢谢你们了
我想问一下3楼GUICreate("My GUI",-1,-1,-1,-1, $WS_E ...
bingxing8000 发表于 2011-1-30 10:36 http://www.autoitx.com/images/common/back.gif
帮助写得太清楚不过了,那些-1的意思 2楼的可以是可以的
但是怎么不能最小化了 2楼的可以啊
可以给个源码借鉴借鉴吗? 这种问题能问出来 只能说明帮助没仔细看 请再去看一次帮助 谢谢
不然也太对不起汉化的人了 呵呵,好的,我回去好好看看帮助
页:
[1]