Commit f3057328 by BellCodeEditor

auto save

parent 9e992c04
Showing with 4 additions and 0 deletions
......@@ -31,6 +31,10 @@ class Note(): # 便签、笔记
self.canvas.create_text(40, self.y, text=info,
font=("宋体", 11), anchor=W, fill='#FF9900')
self.y += 30
#选择框
v = tkinter.IntVar()
rb1 = tkinter.Radiobutton(root,text='体育',value=1,variable=v,command=func)
self.va = v.get()
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