December 2015
Beginner to intermediate
350 pages
6h 49m
English
In this recipe, we will create widgets for our Python GUI by using the factory design pattern.
In previous recipes, we created our widgets either manually one at a time or dynamically in a loop.
Using the factory design pattern, we will use the factory to create our widgets.
We will create a Python GUI which has three buttons each having different styles.
Towards the top of our Python GUI module, just below the import statements, we create several classes:
import tkinter as tk from tkinter import ttk from tkinter import scrolledtext from tkinter import Menu class ButtonFactory(): def createButton(self, type_): return buttonTypes[type_]() class ButtonBase(): relief ='flat' foreground ...
Read now
Unlock full access