About 229,000 results
Open links in new tab
  1. CTkComboBox | CustomTkinter

    Set combobox to specific string value. Value don't has to be part of the values list. Get current string value of combobox entry.

  2. CTkComboBox: ComboBoxes In Customtkinter - python-hub

    Today we will see how to make a fully functional modern combobox in CustomTkinter. We will use the CTkComboBox Widget. How Does CTkComboBox Look? This is how you can make a …

  3. python - how to make scrollable dropdown list in combobox customtkinter ...

    Apr 8, 2024 · import customtkinter customtkinter.set_appearance_mode("System") # Modes: system (default), light, dark customtkinter.set_default_color_theme("blue") # Themes: blue …

  4. Combo Boxes in CustomTkinter – Tkinter CustomTkinter 5

    Sep 12, 2023 · ComboBoxes, or DropDown boxes are super useful in GUI design. In this video we’ll look at how to use them, as well as all the configuration options for them with …

  5. Tkinter Combobox - Python Tutorial

    In this tutorial, you'll learn how to create Tkinter combobox widgets and how to handle the selected value change event.

  6. CTkComboBox bind <<ComboboxSelected>> · TomSchimansky CustomTkinter

    Jul 26, 2022 · self.combobox = customtkinter.CTkComboBox(master=self, values=self.list, command = callback_func, def callback_func(self): self.combobox.set("") …

  7. Python: CustomTkinter - returning varibles selected from combobox

    Dec 13, 2023 · For example, This is the code i'm currently working on: if indenter_selection.get() == "0.5mm": indenter_D = 0.5. if indenter_selection.get() == "1.0mm": indenter_D = 1.0. …

  8. A question about styling a CustomTkinter combobox - Python

    Dec 23, 2024 · In my custom class (see below) I have used about every property a combobox has, but I can’t get rid of this thick white border. On an (outdated) wiki page it looks like I want …

  9. customTkinter ComboBox not working - Spiceworks Community

    Nov 15, 2023 · I am trying to pass a value into a combo box. The list is from a query in a database. When I try to pass the values in it is giving me an error. I did also try making a test …

  10. textfile to customtkinter combobox - Python Forum

    Aug 31, 2023 · Goal: Insert list of country names, stored in a text file, into the combobox. Idea, create a list of values- Sadly, country names shows up vertically, letter by letter, in the combobox.