Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
KHY_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Graduate
2020-06-17 17:32:45 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
08a0a1047aa6fd8bbba01d6af9c13cc1b4a16c0c
08a0a104
1 parent
683d4e69
Add GUI title
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
client/client.py
register/register.py
client/client.py
View file @
08a0a10
...
...
@@ -49,10 +49,10 @@ class Client(tk.Frame):
self
.
cap
.
set
(
4
,
self
.
cam_height
)
# tkinter GUI
self
.
parent
.
title
(
"출석시스템"
)
self
.
width
=
740
self
.
height
=
640
self
.
parent
=
parent
self
.
parent
.
title
(
"출석시스템"
)
self
.
parent
.
geometry
(
"
%
dx
%
d+100+100"
%
(
self
.
width
,
self
.
height
))
self
.
pack
()
self
.
create_widgets
()
...
...
register/register.py
View file @
08a0a10
...
...
@@ -48,10 +48,10 @@ class Register(tk.Frame):
self
.
image_list
=
[]
# tkinter GUI
self
.
parent
.
title
(
"출석 데이터 등록"
)
self
.
width
=
740
self
.
height
=
640
self
.
parent
=
parent
self
.
parent
.
title
(
"출석 데이터 등록"
)
self
.
parent
.
geometry
(
"
%
dx
%
d+100+100"
%
(
self
.
width
,
self
.
height
))
self
.
pack
()
self
.
create_widgets
()
...
...
Please
register
or
login
to post a comment