I'm using Tkinter and python 3.4 to make a simple program for a raspberry pi based smart watch. The only problem is I do not know how to make the window expand to full screen when I run the program, any suggestions?
Asked
Active
Viewed 104 times
0
-
possible duplicate of [Display fullscreen mode on Tkinter](http://stackoverflow.com/questions/7966119/display-fullscreen-mode-on-tkinter) – Brionius Jun 19 '14 at 00:38
-
Possible duplicate of [tkinter python maximize window](http://stackoverflow.com/questions/15981000/tkinter-python-maximize-window) – arcra Jun 19 '14 at 16:39
1 Answers
0
Here is a simple project:
from tkinter import *
screen=Tk()
screen.attributes('-fullscreen',True)
screen.mainloop()

Block
- 159
- 1
- 6