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
eac5ad63
authored
Oct 30, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
d342feb7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
5 deletions
code.py
my_client.py
quiz.py
user.txt
code.py
View file @
eac5ad63
...
...
@@ -134,4 +134,4 @@ class My_register(): # 注册窗口
return
self
.
name
,
self
.
password1
,
self
.
password2
app_login
=
My_login
()
app_login
.
show
()
\ No newline at end of file
app_login
.
show
()
my_client.py
View file @
eac5ad63
...
...
@@ -11,7 +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
):
# 布置窗口界面
# 画布
self
.
canvas
=
tkinter
.
Canvas
(
self
.
root
,
width
=
300
,
height
=
340
)
...
...
@@ -27,9 +27,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
.
y
,
width
=
25
,
height
=
20
,
borderwidth
=
0
)
self
.
select
.
place
(
x
=-
15
,
y
=
self
.
y
-
15
)
self
.
val
+=
1
self
.
y
+=
30
def
get_info
(
self
):
...
...
@@ -39,6 +45,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
.
y
,
width
=
25
,
height
=
15
,
borderwidth
=
0
)
self
.
val
+=
1
self
.
y
+=
30
...
...
quiz.py
View file @
eac5ad63
...
...
@@ -14,9 +14,32 @@ 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
=
tkinter
.
Tk
()
root
.
geometry
(
'300x340+500+200'
)
canvas
=
tkinter
.
Canvas
(
root
,
width
=
300
,
height
=
340
,
bg
=
"lightblue"
)
canvas
.
place
(
x
=
0
,
y
=
0
)
# ++++++++++++++++++++++++++++++++++++++++++++++++++++
def
func
():
num
=
v
.
get
()
print
(
"你选择了:"
,
num
)
v
=
tkinter
.
IntVar
()
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
=
55
,
y
=
50
)
rb2
.
place
(
x
=
60
,
y
=
100
)
rb3
.
place
(
x
=
65
,
y
=
150
)
rb4
.
place
(
x
=
70
,
y
=
200
)
rb5
.
place
(
x
=
75
,
y
=
250
)
root
.
mainloop
()
\ No newline at end of file
user.txt
View file @
eac5ad63
{"admin": "admin", "python": "123456"}
\ No newline at end of file
{"admin": "admin", "python": "123456", "1": "1"}
\ No newline at end of file
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