Skip to content
Luke edited this page Mar 30, 2020 · 16 revisions

Welcome to the CanvasPlus wiki!

Here you will find the functionalities of Canvas Plus

To start, set up with what you normally would, with one change; instead of the Canvas class, use the imported CanvasPlus class

from CanvasPlus import CanvasPlus
from tkinter import Tk

root = Tk()
canvas = CanvasPlus(
            root, width=self.resolution[0], height=self.resolution[1], background = "white", highlightthickness = 0
        )
canvas.pack()
canvas.update()
Clone this wiki locally