Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Tk_labelframe.py
- from Tkinter import *
- root = Tk()
- lf = LabelFrame(root, text="Frame Title", padx=40, pady=20)
- lf.pack(fill="both", expand="yes")
- Label(lf, text="Frame Entry")
- Label.pack()
- root.mainloop()
Add Comment
Please, Sign In to add comment