Label on frame : Label « GUI Tk « Python

Home
Python
1.2D
2.Application
3.Buildin Function
4.Class
5.Data Structure
6.Data Type
7.Database
8.Development
9.Dictionary
10.Event
11.Exception
12.File
13.Function
14.GUI Pmw
15.GUI Tk
16.Language Basics
17.List
18.Math
19.Network
20.String
21.System
22.Thread
23.Tuple
24.Utility
25.XML
Python » GUI Tk » LabelScreenshots 
Label on frame
Label on frame
 

from Tkinter import *

root = Tk()
#root.option_readfile('optionDB')
root.title('Canvas')
canvas = Canvas(root, width =400, height=400)

img = PhotoImage(file='./logo.gif')
frm = Frame(canvas, relief=GROOVE, borderwidth=2)
Label(frm, text="Label").pack()
canvas.create_window(285280, window=frm, anchor=CENTER)

canvas.pack()
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 styleLabel style
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.