Lines Matching defs:Frame
5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
24 frame = Tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
25 frame.pack(fill=BOTH,expand=1)
26 label = Tkinter.Label(frame, text="Hello, World")
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
1588 """Return identifier for decorative frame of this widget if present."""
1589 return self.tk.call('wm', 'frame', self._w)
1590 frame = wm_frame
2499 class Frame(Widget):
2500 """Frame widget which may contain other widgets and can have a 3D border."""
2502 """Construct a frame widget with the parent MASTER.
2515 Widget.__init__(self, master, 'frame', cnf, {}, extra)