Label style : Label « GUI Tk « Python

Python
1. 2D
2. Application
3. Buildin Function
4. Class
5. Data Structure
6. Data Type
7. Development
8. Dictionary
9. Event
10. Exception
11. File
12. Function
13. GUI Pmw
14. GUI Tk
15. Language Basics
16. List
17. Math
18. Network
19. String
20. System
21. Thread
22. Tuple
23. Utility
24. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Python » GUI Tk » LabelScreenshots 
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. Label on frameLabel on frame
8. Label border: RAISED, SUNKEN, FLAT, RIDGE, GROOVE, SOLIDLabel border: RAISED, SUNKEN, FLAT, RIDGE, GROOVE, SOLID
9. Our First Tkinter Program: a label and a windowOur First Tkinter Program: a label and a window
10. Simplest LabelSimplest Label
11. Label background and foregroundLabel background and foreground
12. Label width and heightLabel width and height
ww___w__.___j__a_v__a2_s_.__c__o_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.