ttpply 发表于 2010-1-18 10:19:41

请教如何创建一个无边框的窗口

本帖最后由 ttpply 于 2010-1-18 15:59 编辑

请教如何创建一个无边框的窗口

xlcwxl 发表于 2010-1-18 11:14:57

#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

ttpply 发表于 2010-1-18 15:58:46

回复 2# xlcwxl


    ok谢谢

sanmoking 发表于 2010-1-18 16:07:39

一个无边框窗口的例子,里面的东西全是无边框窗口实现的,【传送门】

acetaohai123 发表于 2011-12-7 11:06:09

不错不错,学习了
页: [1]
查看完整版本: 请教如何创建一个无边框的窗口