s77m72 发表于 2009-6-28 08:33:56

PNG透明窗口加控件问题~在线等

PNG透明窗口加控件问题~在线等#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <CreateTransparentGUI.au3>
#Include <GuiButton.au3>
$from = CreateTransparentGUI("","D:\Dong\11.png")
_GUICtrlButton_Create($from, "abc",100, 100,75,30)



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
页: [1]
查看完整版本: PNG透明窗口加控件问题~在线等