How can I get a handle to my current window in wx.Python (hWnd) and set it's style to WS_EX_NOPARENTNOTIFY, or can I set this when I initialize the frame?
This question is a result from an answer here
Try this?
frame.SetExtraStyle(4)
Also, frame.GetHandle()
will return the HWND. But this all sounds pretty hacked up.
Try this
self.Show(True)
self.Show(False)
self.Show(True)
self.GetHandle()