1 Star 0 Fork 0

亓斌/perspective_pi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base_canvas.py 502 Bytes
一键复制 编辑 原始数据 按行查看 历史
qibin01 提交于 2021-03-10 16:52 . upload
from tkinter import *
class BaseCanvas(object):
def __init__(self, title):
self.root = Tk()
self.root.title(title)
self.root.overrideredirect(1)
# self.root.overrideredirect(0)
# self.root.wm_attributes('-type', 'splash')
self.width = 320 # self.root.winfo_width()
self.height = 320 # self.root.winfo_height()
self.canvas = Canvas(self.root, width=self.width, height=self.height, background='black')
self.canvas.pack()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qibin/perspective_pi.git
git@gitee.com:qibin/perspective_pi.git
qibin
perspective_pi
perspective_pi
master

搜索帮助