From 6472b02e675123b83c54c4ecad24e2ceb1e3b358 Mon Sep 17 00:00:00 2001 From: BellCodeEditor <bellcode_dev@bell.ai> Date: Sun, 2 Jul 2023 17:19:11 +0800 Subject: [PATCH] save project --- 1.py | 0 client.py | 4 ++++ 2 files changed, 4 insertions(+) create mode 100644 1.py diff --git a/1.py b/1.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/1.py diff --git a/client.py b/client.py index 1c69a7b..5c72f93 100644 --- a/client.py +++ b/client.py @@ -23,6 +23,10 @@ class Note(): # 便签、笔记 self.but = tkinter.Button(self.root,text='添加',font=('宋体',12), bg="lightblue", width=5, command=self.get_info) self.but.place(x=240, y=305) + self.y=20 + for i in alist: + self.canvas.create_text(40,self.y,text=i,font=("宋体",11),anchor=W,fill="green") + self.y=self.y+30 def get_info(self): pass -- libgit2 0.25.0