-
Notifications
You must be signed in to change notification settings - Fork 1
Home
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()Copyright (C) 2020 Luke Zhang
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the conditions at https://github.com/Luke-zhang-04/CanvasPlus/blob/master/LICENSE.