1 year ago

#255944

test-img

Anon142

How to make rounded ttk.OptionMenu in Tkinter

I want to make a rounded OptionMenu with the ttk style, but I can't think on way doing so, and I can't find it anywhere on the internet.

This what I have so far:

from tkinter import *
from tkinter import ttk

master = Tk()
style = ttk.Style()
style.configure("TMenubutton", background="blue")
variable = StringVar(master)
variable.set("Everyone")
menu = ttk.OptionMenu(master, variable, "Everyone", style="TMenubutton")
menu.pack()
mainloop()

It looks like this:

enter image description here

and I want to have this:

enter image description here

  • Ignore the colors.

python

tkinter

ttk

optionmenu

0 Answers

Your Answer

Accepted video resources