I am designing a GUI using Python and Tkinter. All the buttons and entries required to register the user input commands are placed inside a main frame and are their child widgets.
I want to know if it is possible to disable all the input functionality from these widgets by propagating some "disable" flag from the main frame to all the input widgets. In this way, I was hoping to be able to toggle their state in a single line of code.
I believe that should be possible. Does anyone know how to do this?