mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
31 lines
514 B
Python
31 lines
514 B
Python
|
from tkinter import *
|
||
|
|
||
|
ws = Tk()
|
||
|
ws.title('PythonGuides')
|
||
|
ws.geometry('400x300')
|
||
|
ws.config(bg='#F2B90C')
|
||
|
|
||
|
def display_selected(choice):
|
||
|
choice = variable.get()
|
||
|
print(choice)
|
||
|
|
||
|
countries = ['Bahamas','Canada', 'Cuba','United States']
|
||
|
|
||
|
# setting variable for Integers
|
||
|
variable = StringVar()
|
||
|
variable.set(countries[3])
|
||
|
|
||
|
# creating widget
|
||
|
dropdown = OptionMenu(
|
||
|
ws,
|
||
|
variable,
|
||
|
*countries,
|
||
|
command=display_selected
|
||
|
)
|
||
|
|
||
|
# positioning widget
|
||
|
dropdown.pack(expand=True)
|
||
|
|
||
|
# infinite loop
|
||
|
ws.mainloop()
|