Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson19-diy2
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
458ad906
authored
Dec 12, 2021
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
44f49ff5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
client.py
client.py
View file @
458ad906
import
tkinter
import
tkinter
alist
=
[
"星期六下午
打篮球
"
,
"13.1日午夜和小美一起看鬼片"
,
alist
=
[
"星期六下午
给三个人绝育
"
,
"13.1日午夜和小美一起看鬼片"
,
"13月18日蒂法过孟婆桥"
,
"13.24
送妈妈圣诞礼物
"
]
"13月18日蒂法过孟婆桥"
,
"13.24
给杰哥肾虚大礼包
"
]
class
Note
():
# 便签、笔记
class
Note
():
# 便签、笔记
def
__init__
(
self
):
def
__init__
(
self
):
...
@@ -22,6 +22,10 @@ class Note(): # 便签、笔记
...
@@ -22,6 +22,10 @@ class Note(): # 便签、笔记
self
.
but
=
tkinter
.
Button
(
self
.
root
,
text
=
'添加'
,
font
=
(
'宋体'
,
12
),
self
.
but
=
tkinter
.
Button
(
self
.
root
,
text
=
'添加'
,
font
=
(
'宋体'
,
12
),
bg
=
"lightblue"
,
width
=
5
,
command
=
self
.
get_info
)
bg
=
"lightblue"
,
width
=
5
,
command
=
self
.
get_info
)
self
.
but
.
place
(
x
=
240
,
y
=
305
)
self
.
but
.
place
(
x
=
240
,
y
=
305
)
self
.
y
=
20
for
info
in
alist
:
self
.
canvas
.
create_text
(
40
,
self
.
y
,
text
=
info
,
font
=
(
'宋体'
,
11
),
anchor
=
W
,
fill
=
'WFF9900'
)
self
.
y
+=
30
def
get_info
(
self
):
def
get_info
(
self
):
...
...
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