In this recipe, we will go in the opposite direction of the previous recipe and try to call our tkinter GUI code from within a wxPython GUI.
Trying to embed our tkinter GUI code into wxPython
Getting ready
We will reuse some of the wxPython GUI code we created in a previous recipe in this chapter.
How to do it...
We will start from a simple wxPython GUI, which looks as follows:
Embed_tkinter.py
Next, we will try to invoke a simple tkinter GUI.
The following is the entire code to do this in a simple, non-OOP way:
#=============================================================
def tkinterApp():
import...