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:
- Create a new module and name it Embed_tkinter.py.
- Add the following code:
#=============================================================
import wx
app = wx.App()
frame = wx.Frame(None, -1, "wxPython GUI", size...