Combox foreground color issue #372
JEdmario16
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How can I remove this white background that appears when I use state="readonly" in the combobox?
without "readonly" code
combox_label = customtkinter.CTkLabel(master=window, text="Event Type")
combobox = customtkinter.CTkComboBox(master=window, values=values, variable=combobox_var) combobox.configure(fg_color="red")
result:

with "readonly" statement:
combox_label = customtkinter.CTkLabel(master=window, text="Event Type")
combobox = customtkinter.CTkComboBox(master=window, values=values, variable=combobox_var)
result:

Beta Was this translation helpful? Give feedback.
All reactions