-
Beta Was this translation helpful? Give feedback.
Answered by
dipeshSam
Jul 3, 2024
Replies: 1 comment 2 replies
-
Have you tried from tkinter import Tk
from customtkinter import CTkComboBox
if __name__ == "__main__":
app = Tk()
cb = CTkComboBox(app, width=300, height=100, dropdown_font=("Arial", 30))
cb.pack(padx=50, pady=50)
app.mainloop() Hope, this may be helpful. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Gasiro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Have you tried
dropdown_font
option provided inCTkComboBox
class? Here is a working example:Hope, this may be helpful.
Regards.