here2share

# Tk_labelframe.py

Jun 15th, 2015 (edited)
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. # Tk_labelframe.py
  2.  
  3. from Tkinter import *
  4.  
  5. root = Tk()
  6.  
  7. lf = LabelFrame(root, text="Frame Title", padx=40, pady=20)
  8. lf.pack(fill="both", expand="yes")
  9.  
  10. Label(lf, text="Frame Entry")
  11. Label.pack()
  12.  
  13. root.mainloop()
Add Comment
Please, Sign In to add comment