Add CheckButon to frame : Canvas « Tkinker « Python Tutorial






Add CheckButon to frame
from Tkinter import *
win = Frame()
win.pack()
Checkbutton(win, text="Click here").pack(side=LEFT)
win.mainloop()








18.5.Canvas
18.5.1.Add CheckButon to frameAdd CheckButon to frame
18.5.2.Canvas paint program.Canvas paint program.
18.5.3.Add Label to canvasAdd Label to canvas
18.5.4.Draw lineDraw line
18.5.5.Change line colorChange line color
18.5.6.Draw ovalDraw oval
18.5.7.Draw arcDraw arc
18.5.8.Draw rectangleDraw rectangle
18.5.9.Draw textDraw text
18.5.10.Add gif image to canvas
18.5.11.Canvas click eventCanvas click event
18.5.12.draw elastic shapes on a canvas on drag, move on right click;draw elastic shapes on a canvas on drag, move on right click;
18.5.13.Scrolled canvasScrolled canvas
18.5.14.Add double click action to canvasAdd double click action to canvas