Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -49,10 +49,10 @@ class Client(tk.Frame): | ... | @@ -49,10 +49,10 @@ class Client(tk.Frame): |
| 49 | self.cap.set(4, self.cam_height) | 49 | self.cap.set(4, self.cam_height) |
| 50 | 50 | ||
| 51 | # tkinter GUI | 51 | # tkinter GUI |
| 52 | - self.parent.title("출석시스템") | ||
| 53 | self.width = 740 | 52 | self.width = 740 |
| 54 | self.height = 640 | 53 | self.height = 640 |
| 55 | self.parent = parent | 54 | self.parent = parent |
| 55 | + self.parent.title("출석시스템") | ||
| 56 | self.parent.geometry("%dx%d+100+100" % (self.width, self.height)) | 56 | self.parent.geometry("%dx%d+100+100" % (self.width, self.height)) |
| 57 | self.pack() | 57 | self.pack() |
| 58 | self.create_widgets() | 58 | self.create_widgets() | ... | ... |
| ... | @@ -48,10 +48,10 @@ class Register(tk.Frame): | ... | @@ -48,10 +48,10 @@ class Register(tk.Frame): |
| 48 | self.image_list = [] | 48 | self.image_list = [] |
| 49 | 49 | ||
| 50 | # tkinter GUI | 50 | # tkinter GUI |
| 51 | - self.parent.title("출석 데이터 등록") | ||
| 52 | self.width = 740 | 51 | self.width = 740 |
| 53 | self.height = 640 | 52 | self.height = 640 |
| 54 | self.parent = parent | 53 | self.parent = parent |
| 54 | + self.parent.title("출석 데이터 등록") | ||
| 55 | self.parent.geometry("%dx%d+100+100" % (self.width, self.height)) | 55 | self.parent.geometry("%dx%d+100+100" % (self.width, self.height)) |
| 56 | self.pack() | 56 | self.pack() |
| 57 | self.create_widgets() | 57 | self.create_widgets() | ... | ... |
-
Please register or login to post a comment