In this video I’ll show you how to use Entry Widgets with TTKbootstrap and Tkinter and Python.
The TTKBootstrap Entry widget acts almost exactly how you’d think it should act, but there are a couple surprises.
I’ll walk you through it in this video.
Python Code: entry_widget.py
(Github Code)
from tkinter import * import ttkbootstrap as tb root = tb.Window(themename="superhero") #root = Tk() root.title("TTK Bootstrap! Combobox") root.iconbitmap('images/codemy.ico') root.geometry('500x350') # Create Entry Function def speak(): my_label.config(text=f'You Typed: {my_entry.get()}') # Create Entry Widget # Colors: primary, secondary, success, info, warning, danger, light, dark my_entry = tb.Entry(root, bootstyle="success", font=("Helvetica", 18), foreground="green", width=15, show="&") my_entry.pack(pady=50) # Create Button my_button = tb.Button(root, bootstyle="danger outline", text="Click Me", command=speak) my_button.pack(pady=20) # Create Label my_label = tb.Label(root, text="") my_label.pack(pady=20) root.mainloop()
Add comment