Jump to content

Stupid question about SetParent


Berserkr
 Share

Recommended Posts

I apologize for my bad English.
Because when the child step on the button, it is "stained" from the button?

#include <WinAPi.au3>
#include <GUIConstantsEx.au3>


$hMain = GUICreate("Main", 800, 600)
$hButton = GUICtrlCreateButton("Click", 120, 120)
GUISetState(@SW_SHOW)


$hChild = GUICreate("Child", 400, 300)


While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop
        Case $hButton
            _WinAPI_SetParent($hChild, $hMain)
            GUISetState(@SW_SHOW, $hChild)
    EndSwitch
WEnd

2881edg.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...