Skip to content
Advertisement

How can I make the tkinter window fixed?

This is my current code, and I am struggling to understand where I need to put additional code to make sure that my tkinter window is fixed. Code taken from: https://pythonprogramming.net/change-show-new-frame-tkinter/

JavaScript

Advertisement

Answer

As mentioned in the comments, you simply need to set your root window resizable method to false. In your case it is the SeaofBTCapp class.

For Example:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement