Ttk Frame widget is a container, used to group other widgets together.
| 693 | |
| 694 | |
| 695 | class Frame(Widget): |
| 696 | """Ttk Frame widget is a container, used to group other widgets |
| 697 | together.""" |
| 698 | |
| 699 | def __init__(self, master=None, **kw): |
| 700 | """Construct a Ttk Frame with parent master. |
| 701 | |
| 702 | STANDARD OPTIONS |
| 703 | |
| 704 | class, cursor, style, takefocus |
| 705 | |
| 706 | WIDGET-SPECIFIC OPTIONS |
| 707 | |
| 708 | borderwidth, relief, padding, width, height |
| 709 | """ |
| 710 | Widget.__init__(self, master, "ttk::frame", kw) |
| 711 | |
| 712 | |
| 713 | class Label(Widget): |
no outgoing calls