Is a frame the only window that can be stacked down on win32 ?
I have a wx.Dialog with no parent and wx.DIALOG_NO_PARENT style set.
On *nix I can stack that dialog down using self.Lower() and up using
self.Raise().
No so on win32. I guess I'm missing something here.
Any help is appreciated.
UC
···
--
Open Source Solutions 4U, LLC 2570 Fleetwood Drive
Phone: +1 650 872 2425 San Bruno, CA 94066
Cell: +1 650 302 2405 United States
Fax: +1 650 872 2417
Is a frame the only window that can be stacked down on win32 ?
I have a wx.Dialog with no parent and wx.DIALOG_NO_PARENT style set.
On *nix I can stack that dialog down using self.Lower() and up using self.Raise().
No so on win32. I guess I'm missing something here.
I would expect it to work, but perhaps there is some rule about modal windows that prevents it... Please enter a bug report about it with category wxMSW and we'll see what happens.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
The window is not even modal - specifically not since modal would block the main window. However the dialogs are loaded using xrc and are custom. Here is the class initializer: Maybe there is an error in that. (may wrap text)