Commit 34b84171 by BellCodeEditor

auto save

parent bcfedbf0
Showing with 9 additions and 2 deletions
......@@ -10,8 +10,15 @@ class Note(): # 便签、笔记
self.root.title("我的便签-待办事项")
self.root.resizable(width=False, height=False)
def show(self):
# 布置窗口界面
def show(self): # 布置窗口界面
#创建画布:tkinter.Canvas(显示的窗口,宽度,高度,背景颜色)
tkinter.Canvas(self.root,width = 300,height = 340,bg = 'green')
self.canvas.place(x = 0,y = 0)
#创建图像,在0,0的位置显示背景图片create_image(x坐标,y坐标,image = 图片变量,anchor = 对齐方式)
self.canvas = tk
#布局到0,0的位置
#载入图像资源,将背景图片载入tkinter.PhotoImage(file = 文件名)
#从tkinter中导入*
# 输入框
self.ent = tkinter.Entry(self.root, show=None,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment