Option Menu – Tkinter CustomTkinter 18

In this video we’ll look at the Option Menu for CustomTkinter and Python!

The Option Menu is almost identical to the ComboBox widget.

There are just a couple of very subtle differences and we’ll discuss them in this video.

I’ll also show you how to style the Option Menu in this video.

Python Code: ctk_optionmenu.py
(Github Code)

from tkinter import *
import customtkinter

customtkinter.set_appearance_mode("dark")  # Modes: system (default), light, dark
customtkinter.set_default_color_theme("dark-blue")  # Themes: blue (default), dark-blue, green

#root = Tk()
root = customtkinter.CTk()

root.title('Tkinter.com - CustomTkinter OptionMenu')
root.iconbitmap('images/codemy.ico')
root.geometry('700x450')

#Create function
def color_picker(choice):
	my_label.configure(text=choice, text_color=choice)

def color_picker2():
	my_label.configure(text=my_option.get(), text_color=my_option.get())

def yellow():
	my_option.set("Yellow")
	my_label.configure(text=my_option.get(), text_color=my_option.get())	

# Set the options for our OptionMenu
colors = ["Red", "Green", "Blue"]

# Create OptionMenu
my_option = customtkinter.CTkOptionMenu(root, values=colors,
	#command=color_picker)
	height=50,
	width=200,
	font=("Helvetica", 18),
	fg_color="white",
	dropdown_font=("Helvetica", 18),
	corner_radius=50,
	button_color="red",
	button_hover_color="green",
	dropdown_hover_color="green",
	dropdown_fg_color="blue",
	dropdown_text_color="orange",
	text_color="red",
	hover=True,
	anchor="center", # n-s-e-w-center
	state="normal",
	text_color_disabled="black",
	dynamic_resizing=False, 
	)
	

my_option.pack(pady=40)


my_label = customtkinter.CTkLabel(root, text="")
my_label.pack(pady=10)

pick_button = customtkinter.CTkButton(root, text="Make Choice", command=color_picker2)
pick_button.pack(pady=10)

yellow_button = customtkinter.CTkButton(root, text="Pick Yellow", command=yellow)
yellow_button.pack(pady=10)
root.mainloop()


John Elder

John is the CEO of Codemy.com where he teaches over 100,000 students how to code! He founded one of the Internet's earliest advertising networks and sold it to a publicly company at the height of the first dot com boom. After that he developed the award-winning Submission-Spider search engine submission software that's been used by over 3 million individuals, businesses, and governments in over 42 countries. He's written several Amazon #1 best selling books on coding, and runs a popular Youtube coding channel.

View all posts

Add comment

John Elder

John is the CEO of Codemy.com where he teaches over 100,000 students how to code! He founded one of the Internet's earliest advertising networks and sold it to a publicly company at the height of...