Guest User

Untitled

a guest
Mar 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. def AddRoutine(self, window):
  2.  
  3. self.window = window
  4. window.state("zoomed")
  5. self.window.title('Routine')
  6. window.update_idletasks()
  7.  
  8. h = self.window.winfo_height()
  9. w = self.window.winfo_width()
  10. Center_h = h/2
  11. Center_w = w/2
  12.  
  13. self.newFr = Frame(window, bg = "PaleTurquoise1")
  14. self.RFrame.append(self.newFr)
  15. self.newFr.place(x = Center_w , y = Center_h, anchor = "center", width = 1024, height = 800)
Add Comment
Please, Sign In to add comment