Skip to content

Questions about customtkinter combobox fonts #2493

Answered by dipeshSam
Gasiro asked this question in Q&A
Discussion options

You must be logged in to vote

Have you tried dropdown_font option provided in CTkComboBox class? Here is a working example:

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.
Regards.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@Gasiro
Comment options

@dipeshSam
Comment options

Answer selected by Gasiro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants