Commit 9bfef4d7 by BellCodeEditor

save project

parent 0e288901
Showing with 5 additions and 0 deletions
......@@ -49,6 +49,11 @@ class Note(): # 便签、笔记
self.select.place(x=0,y=self.y)
self.val+=1
self.y += 30
def get_info(self):
info = self.ent.get()
self.ent.delete("0", END)
if info != "":
alist.append(info)
app = Note()
......
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