Commit 9fee2b8a by BellCodeEditor

auto save

parent b7ab0665
Showing with 6 additions and 0 deletions
......@@ -26,6 +26,12 @@ class Note(): # 便签、笔记
self.but = tkinter.Button(self.root,text='添加',font=('宋体',12),
bg="lightblue", width=5, command=self.get_info)
self.but.place(x=240, y=305)
#文字
self.y=20
for i in alist:
self.canvas.create_text(20,40,text = alist,font=("purisa",11)
,anchor=W,fill="blue")
self.y+=20
def get_info(self):
info = self.ent.get()
......
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