Posts by Sandro Ganske • 21 points
4 posts
-
0
votes2
answers262
viewsA: Guess Game Python Tkinter
Hello! To give a light in this code I can say that it is good to have the two interface and internal program codes made separate. I have been able to see in my studies that the graphical interface…
-
2
votes1
answer641
viewsQ: How to create maximize minimize and close buttons in Tkinter (Python3)
I would like to know how to create the maximize, minimize, and close buttons in Python (Tkinter). After the title bar is removed, new buttons must be created to customize the window and leave it…
-
0
votes2
answers876
viewsA: How to take out the Title Bar and adjust the screen size in Python Tkinter?
Hello! Code with a scalable screen without title bar from Tkinter import * window = Tk() window.title(" >> Resizable window without Title Bar <<< ") overrideredirect window(True)…
tkinteranswered Sandro Ganske 21 -
-1
votes2
answers876
viewsQ: How to take out the Title Bar and adjust the screen size in Python Tkinter?
Hello! I would like to know how to put the screen in a smaller size on Python Tkinter. The program below leaves in full screen. So far I can not change the size. from tkinter import * janela = Tk()…
tkinterasked Sandro Ganske 21