Ttk Frame widget is a container, used to group other widgets together.
| 703 | |
| 704 | |
| 705 | class Frame(Widget): |
| 706 | """Ttk Frame widget is a container, used to group other widgets |
| 707 | together.""" |
| 708 | |
| 709 | def __init__(self, master=None, **kw): |
| 710 | """Construct a Ttk Frame with parent master. |
| 711 | |
| 712 | STANDARD OPTIONS |
| 713 | |
| 714 | class, cursor, style, takefocus |
| 715 | |
| 716 | WIDGET-SPECIFIC OPTIONS |
| 717 | |
| 718 | borderwidth, relief, padding, width, height |
| 719 | """ |
| 720 | Widget.__init__(self, master, "ttk::frame", kw) |
| 721 | |
| 722 | |
| 723 | class Label(Widget): |
no outgoing calls
searching dependent graphs…