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

Class Frame

Lib/tkinter/ttk.py:705–720  ·  view source on GitHub ↗

Ttk Frame widget is a container, used to group other widgets together.

Source from the content-addressed store, hash-verified

703
704
705class 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
723class Label(Widget):

Callers 15

__init__Method · 0.90
__init__Method · 0.90
__init__Method · 0.90
buttonboxMethod · 0.90
__init__Method · 0.90
_multistatus_barFunction · 0.90
make_guiMethod · 0.90
__init__Method · 0.90
create_widgetsMethod · 0.90
create_action_buttonsMethod · 0.90
create_page_fontMethod · 0.90

Calls

no outgoing calls

Tested by 7

test_make_entryMethod · 0.72
test_create_entriesMethod · 0.72
test_make_frameMethod · 0.72
btn_test_setupMethod · 0.72
test_make_buttonMethod · 0.72
setUpClassMethod · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…