MCPcopy Index your code
hub / github.com/python/cpython / Label

Class Label

Lib/tkinter/ttk.py:723–739  ·  view source on GitHub ↗

Ttk Label widget displays a textual label and/or image.

Source from the content-addressed store, hash-verified

721
722
723class 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
742class Labelframe(Widget):

Callers 15

bodyMethod · 0.90
set_labelMethod · 0.90
showcontentsMethod · 0.90
create_page_fontMethod · 0.90
create_page_highlightMethod · 0.90
create_page_keysMethod · 0.90
create_page_windowsMethod · 0.90
create_page_shedMethod · 0.90
create_widgetsMethod · 0.90
make_entryMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…