Ttk Label widget displays a textual label and/or image.
| 721 | |
| 722 | |
| 723 | class Label(Widget): |
| 724 | """Ttk Label widget displays a textual label and/or image.""" |
| 725 | |
| 726 | def __init__(self, master=None, **kw): |
| 727 | """Construct a Ttk Label with parent master. |
| 728 | |
| 729 | STANDARD OPTIONS |
| 730 | |
| 731 | class, compound, cursor, image, style, takefocus, text, |
| 732 | textvariable, underline, width |
| 733 | |
| 734 | WIDGET-SPECIFIC OPTIONS |
| 735 | |
| 736 | anchor, background, font, foreground, justify, padding, |
| 737 | relief, text, wraplength |
| 738 | """ |
| 739 | Widget.__init__(self, master, "ttk::label", kw) |
| 740 | |
| 741 | |
| 742 | class Labelframe(Widget): |
no outgoing calls
no test coverage detected
searching dependent graphs…