In the previous recipes, one of our main challenges was how to combine two GUI technologies that were designed to be the one-and-only GUI toolkit for an application. We found various simple ways to combine them.
We will again launch the wxPython GUI from a tkinter GUI main event loop and start the wxPython GUI in its own thread, which runs within the Python.exe process.
In order to do this, we will use a shared global multiprocessing Python Queue.
Here is the Python code that makes the two GUIs communicate with each other to a certain degree. In order to save ...