May 2017
Beginner to intermediate
444 pages
11h 31m
English
We will start from a simple tkinter GUI, which looks as follows:
Embed_wxPython.py

Next, we will try to invoke a simple wxPython GUI, which we created in a previous recipe in this chapter.
The following is the entire code to do this in a simple, non-OOP way:
#=========================================================== import tkinter as tk from tkinter import ttk, scrolledtext win = tk.Tk() win.title("Python GUI") aLabel = ttk.Label(win, text="A Label") aLabel.grid(column=0, row=0) ttk.Label(win, text="Enter a name:").grid(column=0, row=0) name = tk.StringVar() nameEntered = ttk.Entry(win, width=12, textvariable=name) nameEntered.grid(column=0, ...Read now
Unlock full access