Commit db56df29 by BellCodeEditor

save project

parent 5822a176
Showing with 5 additions and 1 deletions
...@@ -22,7 +22,11 @@ class Note(): # 便签、笔记 ...@@ -22,7 +22,11 @@ class Note(): # 便签、笔记
self.but.place(x=240, y=305) self.but.place(x=240, y=305)
def get_info(self): def get_info(self):
pass info = self.ent.get()
if info != '':
self.end.delete('0',END)
alist.append(info)]
app = Note() app = Note()
app.show() app.show()
......
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