Newbie question on wxNotebook

Josiah Carlson jcarlson at nospam.uci.edu
Mon Mar 15 20:09:56 EST 2004


The sizing information is never getting passed down to the wxNotebook.

Try the following in the "MyFrame" class:

     def OnSize(self, event):
         size = event.GetSize()
         print "size:", size.width, size.height
         event.Skip()


  - Josiah



More information about the Python-list mailing list