Creating a better version of Python 3 Tkinter Hello World
import tkinter as tk
from tkinter import ttk
class HelloView(tk.Frame):
"""A friendly little module"""
def __init__(self, parent, *args, **kwargs):
super().__init__(parent, *args, **kwargs)
self.name = tk.StringVar()
self.hello_string = tk.StringVar()
self.hello_string.set("Hello World")
name_label = ttk.Label(self, text="Name:")
name_entry = ttk.Entry(self, textvariable=self.name)
ch_button = ttk.Button(self, text="Change", command=self.on_change)
hello_label = ttk.Label(self, textvariable=self.hello_string,
font=("TkDefaultFont", 64), wraplength=400)
# Layout form
name_label.grid(row=0, column=0, sticky=tk.W)
name_entry.grid(row=0, column=1, sticky=(tk.W + tk.E))
ch_button.grid(row=0, column=2, sticky=tk.E)
hello_label.grid(row=1, column=0, columnspan=3)
self.columnconfigure(1, weight=1)
def on_change(self):
"""Handle Change button clicks"""
if self.name.get().strip():
self.hello_string.set("Hello " + self.name.get())
else:
self.hello_string.set("Hello World")
class MyApplication(tk.Tk):
"""Hello World Main Application"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# set the window properties
self.title("Hello Tkinter")
self.geometry("400x300")
self.resizable(width=False, height=False)
# Define the UI
HelloView(self).grid(sticky=(tk.E + tk.W + tk.N + tk.S))
self.columnconfigure(0, weight=1)
if __name__ == '__main__':
app = MyApplication()
app.mainloop()
Last Updated on 2021-10-27 by gantovnik

Recent Comments