Answers for "tkinter canvas"

4

rectangle in tkinter

from tkinter import *

root = Tk()

c = Canvas(root)
c.pack()
c.create_rectangle(100, 100, 200, 200)

root.mainloop()
Posted by: Guest on July-01-2020
0

tkinter create_line

canvas.create_line(15, 25, 200, 25)
Posted by: Guest on June-20-2020
0

buttons on canvas tkinter

# ... snip ...
button1 = Button(self, text = "Quit", command = self.quit, anchor = W)
button1.configure(width = 10, activebackground = "#33B5E5", relief = FLAT)
button1_window = canvas1.create_window(10, 10, anchor=NW, window=button1)
Posted by: Guest on April-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language