I have problems with a textctrl on a wxPopupTransientWindow:
1.)
the textctrl shows up on the wxPopupTransientWindow, but i can't enter any text. (the right mouse click of the textctrl is working, the left isn't.)
2.)
the wxPopupTransientWindow didn't disappear any more, if you are clicking outside the popupwindow.
Maybe someone knows a solution?
Thanks
···
________________________________________________________________
Keine verlorenen Lotto-Quittungen, keine vergessenen Gewinne mehr!
Beim WEB.DE Lottoservice: http://tippen2.web.de/?x=13
I have problems with a textctrl on a wxPopupTransientWindow:
1.)
the textctrl shows up on the wxPopupTransientWindow, but i can't enter any
text. (the right mouse click of the textctrl is working, the left isn't.)
2.)
the wxPopupTransientWindow didn't disappear any more, if you are clicking
outside the popupwindow.
Maybe someone knows a solution?
The way the wxPopupTransientWindow works is that it captures the mouse so it
can sense any clicks outside of itself. (It also watches focus events.) If
the popup window has a child then these event handlers are pushed onto it,
otherwise onto the popup window itself. If you need more than one child, of
the child can't get the focus events or mouse events for some reason, then
you may not be able to use wxPopupTransientWindow but use wxPopupWindow
instead and implement the transient behaviour yourself to suit your needs.
···
--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters? http://wxPython.org Relax with wxPython!