forked from flatplanet/Intro-To-TKinter-Youtube-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fill.py
74 lines (51 loc) · 1.41 KB
/
fill.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from tkinter import *
root = Tk()
root.title('Codemy.com - Auto Select/Search')
root.iconbitmap('c:/gui/codemy.ico')
root.geometry("500x300")
# Update the listbox
def update(data):
# Clear the listbox
my_list.delete(0, END)
# Add toppings to listbox
for item in data:
my_list.insert(END, item)
# Update entry box with listbox clicked
def fillout(e):
# Delete whatever is in the entry box
my_entry.delete(0, END)
# Add clicked list item to entry box
my_entry.insert(0, my_list.get(ANCHOR))
# Create function to check entry vs listbox
def check(e):
# grab what was typed
typed = my_entry.get()
if typed == '':
data = toppings
else:
data = []
for item in toppings:
if typed.lower() in item.lower():
data.append(item)
# update our listbox with selected items
update(data)
# Create a label
my_label = Label(root, text="Start Typing...",
font=("Helvetica", 14), fg="grey")
my_label.pack(pady=20)
# Create an entry box
my_entry = Entry(root, font=("Helvetica", 20))
my_entry.pack()
# Create a listbox
my_list = Listbox(root, width=50)
my_list.pack(pady=40)
# Create a list of pizza toppings
toppings = ["Pepperoni", "Peppers", "Mushrooms",
"Cheese", "Onions", "Ham", "Taco"]
# Add the toppings to our list
update(toppings)
# Create a binding on the listbox onclick
my_list.bind("<<ListboxSelect>>", fillout)
# Create a binding on the entry box
my_entry.bind("<KeyRelease>", check)
root.mainloop()