Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson19-diy1
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
34b84171
authored
May 11, 2021
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
bcfedbf0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
client.py
client.py
View file @
34b84171
...
...
@@ -10,8 +10,15 @@ class Note(): # 便签、笔记
self
.
root
.
title
(
"我的便签-待办事项"
)
self
.
root
.
resizable
(
width
=
False
,
height
=
False
)
def
show
(
self
):
# 布置窗口界面
def
show
(
self
):
# 布置窗口界面
#创建画布:tkinter.Canvas(显示的窗口,宽度,高度,背景颜色)
tkinter
.
Canvas
(
self
.
root
,
width
=
300
,
height
=
340
,
bg
=
'green'
)
self
.
canvas
.
place
(
x
=
0
,
y
=
0
)
#创建图像,在0,0的位置显示背景图片create_image(x坐标,y坐标,image = 图片变量,anchor = 对齐方式)
self
.
canvas
=
tk
#布局到0,0的位置
#载入图像资源,将背景图片载入tkinter.PhotoImage(file = 文件名)
#从tkinter中导入*
# 输入框
self
.
ent
=
tkinter
.
Entry
(
self
.
root
,
show
=
None
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment