HomeSort by relevance Sort by last modified time
    Searched refs:Combobox (Results 1 - 4 of 4) sorted by null

  /external/python/cpython2/Demo/tkinter/ttk/
combo_themes.py 4 there is only a combobox and a frame around.
24 # Create a readonly Combobox which will display 4 values at max,
27 themes_combo = ttk.Combobox(self, values=themes, state="readonly",
29 themes_combo.set(themes[0]) # sets the combobox value to "Pick a theme"
30 # Combobox widget generates a <<ComboboxSelected>> virtual event
32 # the listbox is unposted (after you select an item, the combobox's
42 app.master.title("Ttk Combobox")
theme_selector.py 4 since now you can notice theme changes in Ttk Combobox, Ttk Frame,
32 self.themes_combo = ttk.Combobox(self, values=themes, state="readonly")
40 text="Change themes when combobox item is activated",
  /external/python/cpython2/Lib/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
689 class Combobox(Entry):
690 """Ttk Combobox widget combines a text field with a pop-down list of
694 """Construct a Ttk Combobox widget with the parent master.
705 Entry.__init__(self, master, "ttk::combobox", **kw)
709 """If newindex is supplied, sets the combobox value to the
719 """Sets the value of the combobox to value."""
    [all...]
  /external/python/cpython3/Lib/tkinter/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
693 class Combobox(Entry):
694 """Ttk Combobox widget combines a text field with a pop-down list of
698 """Construct a Ttk Combobox widget with the parent master.
709 Entry.__init__(self, master, "ttk::combobox", **kw)
713 """If newindex is supplied, sets the combobox value to the
723 """Sets the value of the combobox to value."""
    [all...]

Completed in 856 milliseconds