Add Label to canvas : Canvas : Tkinker PYTHON TUTORIALS


PYTHON TUTORIALS » Tkinker » Canvas »

 

Add Label to canvas


Add Label to canvas
from Tkinter import *
     
canvas = Canvas(width=300, height=300, bg='white')   
canvas.pack(expand=YES, fill=BOTH)                   
     
widget = Label(canvas, text='Spam', fg='white', bg='black')
widget.pack()
canvas.create_window(100100, window=widget)       
mainloop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Tkinker
» Canvas