About 758,000 results
Open links in new tab
  1. Creating a multiple Selection using Tkinter - GeeksforGeeks

    Apr 21, 2020 · By assigning the select mode option as multiple, the user can able to select multiple options. If the select mode option is single then only one option can be selected by the …

  2. Python Tkinter multiple selection Listbox - Stack Overflow

    It seems the correct way to get a list of selected items in a Tkinter listbox is to use self.rightBT3.curselection(), which returns a tuple containing the zero-based index of the …

  3. python - Tkinter: How to create choice box - Stack Overflow

    Mar 7, 2015 · Tkinter has two widgets that do what you want. One is OptionMenu and the other is ttk.Combobox. import Tkinter as tk import ttk class Example(tk.Frame): def __init__(self, …

  4. How do I enable multiple selection of values from a combobox?

    It is designed to allow you to pick one item from a list of choices. If you need to be able to make multiple choices you can use a menubutton with an associated menu, and add checkbuttons …

  5. Enable Multiple Selection from a Tkinter Combobox

    Dec 4, 2023 · The simplest way to enable multiple selection in a tkinter combobox is to use the Listbox widget. In this approach, we create a Listbox widget and add it to the combobox.

  6. Creating a Multi-Select Drop-Down List in Tkinter - Pythoneo

    Jun 20, 2021 · Tkinter provides a standard combobox widget for single-item selection, you can create a multi-select drop-down list using the Listbox widget along with buttons for adding and …

  7. How to create multiple Selection Checkboxes in Tkinter Python

    In this tutorial, we will learn about multiple selection checkboxes in Tkinter using Python. We have shown a Tkinter output screenshot.

  8. Tkinter Listbox - Python Examples

    In a GUI, a Listbox widget with default parameters/options would be as shown in the following screenshot. Tkinter Listbox widget with four items By default, user can select an item by …

  9. Creating a multiple Selection using Tkinter - markeyou.com

    If you want to allow users to make multiple selections in Tkinter, the Listbox widget with the MULTIPLE selection mode is what you need. Here's a tutorial on how to create a multiple …

  10. Drop-down List (Combobox) in Tk (tkinter) - Python Assets

    Mar 24, 2022 · How to create a drop-down list (also known as combobox) in a Python and Tk desktop application using the ttk.Combobox widget class.