Label style : Label « GUI Tk « Python






Label style

Label style
 
from Tkinter import *

class GUI:
    def __init__(self):
     self.root = Tk()
        self.root.title('GUI Design 9')
        self.base = 'gray60'
        self.fout=Frame(self.root, borderwidth=0)
        self.f1=Frame(self.fout, borderwidth=2, relief=RAISED)
        Label(self.f1, text='RAISED', width=10).pack(side=LEFT)
        self.f1.pack(pady=5)
        self.f2=Frame(self.fout, borderwidth=2, relief=SUNKEN)
        Label(self.f2, text='SUNKEN', width=10).pack(side=LEFT)
        self.f2.pack(pady=5)
        self.f3=Frame(self.fout, borderwidth=2, relief=FLAT)
        Label(self.f3, text='FLAT', width=10).pack(side=LEFT)
        self.f3.pack(pady=5)
        self.f4=Frame(self.fout, borderwidth=3, relief=RIDGE)
        Label(self.f4, text='RIDGE', width=10).pack(side=LEFT)
        self.f4.pack(pady=5)
        self.f5=Frame(self.fout, borderwidth=2, relief=GROOVE)
        Label(self.f5, text='GROOVE', width=10).pack(side=LEFT)
        self.f5.pack(pady=5)
        self.f6=Frame(self.fout, borderwidth=2, relief=SOLID)
        Label(self.f6, text='SOLID', width=10).pack(side=LEFT)
        self.f6.pack(pady=5)
        self.fout.pack()        

myGUI = GUI()
myGUI.root.mainloop()



           
         
  








Related examples in the same category

1.A label and a buttonA label and a button
2.Basic coding styles with labelsBasic coding styles with labels
3.Set side to topSet side to top
4.Add a label to a frameAdd a label to a frame
5.Load image to label
6.Label wraplength
7.Set text and font for Label
8.Label on frameLabel on frame
9.Label border: RAISED, SUNKEN, FLAT, RIDGE, GROOVE, SOLIDLabel border: RAISED, SUNKEN, FLAT, RIDGE, GROOVE, SOLID
10.Our First Tkinter Program: a label and a windowOur First Tkinter Program: a label and a window
11.Simplest LabelSimplest Label
12.Label background and foregroundLabel background and foreground
13.StringVar and Label variable
14.Bind variable to Label
15.Label width and heightLabel width and height