Thu 22 May 2008
wxPython Sizers Tutorial: Using a GridBagSizer
Posted by Mike under Cross-Platform, Python, wxPython
[2] Comments
In this tutorial, I will take my code from the GridSizer tutorial I wrote the other day and heavily modify it to display oddly shaped widgets in a GridBagSizer. The GridBagSizer is the most complex of the sizers. It subclasses the FlexGridSizer, so you can use all of it’s parent’s methods as well as those that the GridBagSizer adds. See the docs or use Python’s help() functionality for more information on said methods.