#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