here is all the code only thing i need now is to make the labels transperant and i have added the code for that .
#include <GUIConstantsex.au3>
#include <Windowsconstants.au3>
$GUI = GUICreate("Win Get Title", 301, 300, -1, -1, BitOR($WS_POPUP, $WS_BORDER))
$PIC = GUICtrlCreatePic("Header.JPG", 0, 0, 270, 20, -1, $GUI_WS_EX_PARENTDRAG)
$Close = GUICtrlCreateLabel("X", 288, 2, 12, 18, -1,$GUI_WS_EX_PARENTDRAG)
GUICtrlSetColor(-1,0xff0000)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
$min = GUICtrlCreateLabel("_", 275, 0, 12, 18, -1, $GUI_WS_EX_PARENTDRAG)
GUICtrlSetColor(-1,0xff0000)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
GUISetState(@SW_SHOW)
while 1
Switch GUIGetMsg()
case 0
Case $GUI_EVENT_CLOSE
Exit
Case $min
GUISetState (@SW_MINIMIZE)
Case $PIC
MSGBOX(0, "You Clicked The PiC", "CLICK ON PICK :D")
Case $Close
Exit
EndSwitch
WEnd