HomeSort by relevance Sort by last modified time
    Searched refs:Combobox (Results 1 - 12 of 12) 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",
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
205 # testing creating combobox with empty string in values
206 combo2 = ttk.Combobox(values=[1, 2, ''])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
205 # testing creating combobox with empty string in values
206 combo2 = ttk.Combobox(values=[1, 2, ''])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
205 # testing creating combobox with empty string in values
206 combo2 = ttk.Combobox(values=[1, 2, ''])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 117 self.combo = ttk.Combobox()
205 # testing creating combobox with empty string in values
206 combo2 = ttk.Combobox(values=[1, 2, ''])
    [all...]
  /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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
688 class Combobox(Entry):
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
708 """If newindex is supplied, sets the combobox value to the
716 """Sets the value of the combobox to value."""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
688 class Combobox(Entry):
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
708 """If newindex is supplied, sets the combobox value to the
716 """Sets the value of the combobox to value."""
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
688 class Combobox(Entry):
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
708 """If newindex is supplied, sets the combobox value to the
716 """Sets the value of the combobox to value."""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
688 class Combobox(Entry):
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
708 """If newindex is supplied, sets the combobox value to the
716 """Sets the value of the combobox to value."""
    [all...]

Completed in 592 milliseconds