Construct a Ttk Frame with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS borderwidth, relief, padding, width, height
(self, master=None, **kw)
| 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): |