VBox
VBox([expand]) -> VBox widgetA box to automatically position widgets vertically.
Arguments
- expand
- If set to True (default) all widgets will expand to be the same width.
VBox.add
VBox.add(widgets) -> NoneAdd widgets to Container.
Arguments
- widgets
- can ether be a single widget or a list of widgets.
HBox
HBox([expand]) -> HBox widgetA box to automatically position widgets horizontally.
Arguments
- expand
- If set to True (default) all widgets will expand to be the same height.
HBox.add
HBox.add(widgets) -> NoneAdd widgets to Container.
Arguments
- widgets
- can ether be a single widget or a list of widgets.