请教如何创建一个无边框的窗口
本帖最后由 ttpply 于 2010-1-18 15:59 编辑请教如何创建一个无边框的窗口 #include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", -1, -1, -1, -1,$WS_POPUP)
$Button1 = GUICtrlCreateButton("退出", 96, 136, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Exit
EndSwitch
WEnd
回复 2# xlcwxl
ok谢谢 一个无边框窗口的例子,里面的东西全是无边框窗口实现的,【传送门】 不错不错,学习了
页:
[1]