Hey,
Everytime I put something on a wxPanel he doesn't show it right how can
this be ?
here's some code, the probleme is with HtmlPanel it doesn't show
HtmlWindow correct ..
You don't do anything to manage the size of the HtmlWindow. I assume that you want it to be the same size as the HtmlPanel, but the panel has no way of knowing that unless you tell it so. Please see the docs and samples about sizers for more complicated layouts, but here is a very simple example of the brute force method:
class HtmlPanel(wxPanel):
def __init__(self,parent,id):
wxPanel.__init__(self,parent,id)
self.html = HtmlWindow(self,-1)
EVT_SIZE(self, self.OnSize)