+ 3
Remove window controls Python
I am creating a python application with 2 dialog boxes. The first is demo and the second is control. I need to remove all controls from the demo window (close, minimize, expand) so that the status bar does not exist at all. But so that other applications define them as different Applications: How can I do this?
7 odpowiedzi
+ 3
A tkinter solution was found here:
https://stackoverflow.com/questions/40578278/change-tkinter-window-border-style
+ 2
Slick I mean this: https://images.app.goo.gl/hFVSfGcmWssrMAhC7
+ 2
Slick There is not even a question on Google on this topic.
0
If youre working with tkinter,
<master_window>.resizable(False, False)
0
oh well there's probably something for that too. I'd hit google up
0
Okay, then scrub through the tkinter docs. If it's not there, then you can't do it
0
great job!