Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson20-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
e2a00031
authored
a year ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
d342feb7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
my_client.py
quiz.py
user.txt
my_client.py
View file @
e2a00031
...
...
@@ -11,6 +11,7 @@ class Note(): # 便签、笔记
self
.
root
.
title
(
"我的便签-待办事项"
)
self
.
root
.
resizable
(
width
=
False
,
height
=
False
)
self
.
bg_img
=
tkinter
.
PhotoImage
(
file
=
"bg.png"
)
self
.
box
=
PhotoImage
(
file
=
'box.png'
)
def
show
(
self
):
# 布置窗口界面
# 画布
...
...
@@ -27,9 +28,15 @@ class Note(): # 便签、笔记
self
.
but
.
place
(
x
=
240
,
y
=
305
)
# 展示所有的文字
self
.
y
=
20
self
.
val
=
0
self
.
v
=
IntVar
()
for
info
in
alist
:
self
.
canvas
.
create_text
(
40
,
self
.
y
,
text
=
info
,
font
=
(
"宋体"
,
11
),
anchor
=
W
,
fill
=
'#FF9900'
)
self
.
select
=
tkinter
.
Radiobutton
(
self
.
canvas
,
image
=
self
.
box
,
value
=
self
.
val
,
variable
=
self
.
v
,)
self
.
select
.
place
(
x
=-
27
,
y
=
self
.
y
-
20
)
self
.
val
+=
1
self
.
y
+=
30
def
get_info
(
self
):
...
...
@@ -39,6 +46,10 @@ class Note(): # 便签、笔记
alist
.
append
(
info
)
self
.
canvas
.
create_text
(
40
,
self
.
y
,
text
=
info
,
font
=
(
"宋体"
,
11
),
anchor
=
W
,
fill
=
'#FF9900'
)
self
.
select
=
tkinter
.
Radiobutton
(
self
.
canvas
,
image
=
self
.
box
,
value
=
self
.
val
,
variable
=
self
.
v
,)
self
.
select
.
place
(
x
=-
27
,
y
=
self
.
y
-
20
)
self
.
val
+=
1
self
.
y
+=
30
...
...
This diff is collapsed.
Click to expand it.
quiz.py
View file @
e2a00031
...
...
@@ -14,9 +14,11 @@ rb1 = tkinter.Radiobutton(root,text='体育',value=1,variable=v,command=func)
rb2
=
tkinter
.
Radiobutton
(
root
,
text
=
'美术'
,
value
=
2
,
variable
=
v
,
command
=
func
)
rb3
=
tkinter
.
Radiobutton
(
root
,
text
=
'音乐'
,
value
=
3
,
variable
=
v
,
command
=
func
)
rb4
=
tkinter
.
Radiobutton
(
root
,
text
=
'编程'
,
value
=
4
,
variable
=
v
,
command
=
func
)
rb5
=
tkinter
.
Radiobutton
(
root
,
text
=
'编'
,
value
=
5
,
variable
=
v
,
command
=
func
)
# ++++++++++++++++++++++++++++++++++++++++
rb1
.
place
(
x
=
50
,
y
=
50
)
rb2
.
place
(
x
=
50
,
y
=
100
)
rb3
.
place
(
x
=
50
,
y
=
150
)
rb4
.
place
(
x
=
50
,
y
=
200
)
rb5
.
place
(
x
=
50
,
y
=
250
)
root
.
mainloop
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
user.txt
View file @
e2a00031
{"admin": "admin", "python": "123456"}
\ No newline at end of file
{"admin": "admin", "python": "123456", "sb": "114514"}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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