I have a wxFrame with a wxNotebook in it and I'd like to use
SetSizeHints so the frame can't be shrunk down to the point that its
contents scrunch up and draw incorrectly. I think I need a
wxNotebookSizer to do this which appears to not be implemented yet in
wxPython. Am I correct that I need to wait for a future relase of
wxPython before I can prevent this wxFrame from being shrunk too small?
Yes, but there may be a workaround. If you have a sizer on one of the
notebook pages then try calling sizer.Fit(notebook) and then take the size
of the notebook and use that with frame.SetSizeHints().
ยทยทยท
--
Robin Dunn
Software Craftsman
robin@AllDunn.com
http://wxpython.org Java give you jitters?
http://wxpros.com Relax with wxPython!