Label border
|
|
from Tkinter import *
root = Tk() root.title('Frames') for relief in [RAISED, SUNKEN, FLAT, RIDGE, GROOVE, SOLID]: f = Frame(root, borderwidth=2, relief=relief) Label(f, text=relief, width=10).pack(side=LEFT) f.pack(side=LEFT, padx=5, pady=5)
root.mainloop()
|
|
|
|
|
Related Scripts with Example Source Code in same category :
-
-
-
-
|
|