Commit 7feb78c7 by BellCodeEditor

save project

parent b9e44f3b
Showing with 2 additions and 2 deletions
......@@ -26,7 +26,7 @@ class Note(): # 便签、笔记
self.y = 20
for info in alist:
self.canvas.create_text(40,self.y,text=info,anchor=W,font=("楷体",14),fill
self.canvas.create_text(40,self.y,text=info,anchor=W,font=("楷体",0),fill="DimGray")
self.y = self.y + 30
......@@ -35,7 +35,7 @@ class Note(): # 便签、笔记
self.ent.delete("0",END)
if inf !="":
alist.append(inf)
self.canvas.create_text(40,self.y,text=inf,anchor=W,font=("楷体",14),fill="DimGray")
self.canvas.create_text(40,self.y,text=inf,anchor=W,font=("楷体",1),fill="DimGray")
self.y = self.y + 30
app = Note()
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