Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make a tkinter window fullscreen [duplicate]

Tags:

python

tkinter

I want to make a program that goes full screen and when I mean full screen I don't mean like maximized I mean like it covers the whole screen so like you can't see the taskbar and all that,

Any Ideas?, Thanks In Advance!

like image 430
Dan Alexander Avatar asked Jul 13 '13 22:07

Dan Alexander


People also ask

How do I make tkinter window full screen?

Approach: Importing tkinter package. Creating a tkinter window with name window. Setting the window attribute fullscreen as True.

What does Mainloop () do in tkinter?

window.mainloop() tells Python to run the Tkinter event loop. This method listens for events, such as button clicks or keypresses, and blocks any code that comes after it from running until you close the window where you called the method.

How do I make a second window in tkinter?

In tkinter, we can create a Popup window or a child window by defining a Toplevel(master) constructor. This will allow the tkinter application to create another window which can be resized dynamically by defining its size property.

How do I make my tkinter bigger?

In Tkinter, minsize() method is used to set the minimum size of the Tkinter window. Using this method a user can set window's initialized size to its minimum size, and still be able to maximize and scale the window larger. This method is used to set the maximum size of the root window.


1 Answers

Here's a link to a tutorial for making a fullscreen window (window the size of the screen, with title bar and start menu suppressed) with Tkinter. It looks like originally the poster wanted to make a slideshow application, and just posted their code for fullscreen.

like image 117
austin-schick Avatar answered Oct 07 '22 12:10

austin-schick