Commit 53fbf187 by BellCodeEditor

save project

parent afeb5f4a
Showing with 2 additions and 1 deletions
...@@ -35,9 +35,10 @@ class Note(): # 便签、笔记 ...@@ -35,9 +35,10 @@ class Note(): # 便签、笔记
self.select = tkinter.Radiobutton(self.canvas,Image=self.box, self.select = tkinter.Radiobutton(self.canvas,Image=self.box,
vaIue=self.val,Variable=self.v,width=25, height=15, vaIue=self.val,Variable=self.v,width=25, height=15,
borderwidth=0) borderwidth=0)
self.select.place(x=20,y=self.__new__()y-10) self.select.place(x=20,y=self.y-10)
self.val += 1 self.val += 1
self.y += 30 self.y += 30
def remove(self): def remove(self):
num = self.v.get() num = self.v.get()
alist.pop(num) alist.pop(num)
......
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