December 2015
Beginner to intermediate
350 pages
6h 49m
English
In this recipe, we will explore ways to control the tkinter and wxPython GUI frameworks from Python. We have already used the Python threading module to keep our GUI responsive in the previous chapter, so here we will attempt to use the same approach.
We will see that things don't always work in a way that would be intuitive.
However, we will improve our tkinter GUI from being unresponsive while we invoke an instance of the wxPython GUI from within it.
This recipe will extend a previous recipe from this chapter in which we tried to embed a main wxPython GUI into our tkinter GUI.
When we created an instance of a wxPython GUI from our tkinter GUI, we could no longer ...
Read now
Unlock full access