Commit e5dbaf93 by BellCodeEditor

save project

parent a786a4be
Showing with 7 additions and 0 deletions
......@@ -35,6 +35,11 @@ class Note(): # 便签、笔记
self.select.place(x=0,y=self.y)
self.val +=1
self.y += 30
def remove(self):
num = self.v.get()
alist.pop(num)
self.canvas.destroy()
app.show()
def get_info(self):
info = self.ent.get()
......@@ -46,6 +51,8 @@ class Note(): # 便签、笔记
self.y += 30
app = Note()
app.show()
app.root.mainloop()
......
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