UI

Python GUI broken into multiple files

Submitted by Evan Boldt on Sun, 07/15/2018 - 23:08
Topics

TkInter GUIs can get extremely long very quick. Fortunately they can be split into multiple files - especially if you give them a class wrapper. The important thing is that you pass the relavent parent elements so more widgets can be inserted into the frame or window.

The below example shows how to take the previous python GUI example and break it into multiple files using Python modules.