[wxPython-dev] wx.aui problem with last 2.7 preview

Frank Niessink frank at niessink.com
Tue Sep 26 14:18:14 PDT 2006


m.prosperi at libero.it:
> 
> I've added:
> 
>     self.Bind(wx.EVT_SIZE, self.OnSize)
> 
>     def OnSize(self,evt):        
>         evt.Skip()
> 
> but haven't got the result

Robin said the handler should do nothing, but calling evt.Skip() gives 
other event handlers a shot at that same event. Did you try:

def OnSize(self, event):
     pass


Cheers, Frank




More information about the wxpython-dev mailing list