ComboBox with list of strings.
Abstract ComboBox.
Editable ComboBox with list of strings.
ComboBox with list of strings.
Synopsis:
import dlangui.widgets.combobox; // creation of simple strings list ComboBox box = new ComboBox("combo1", ["value 1"d, "value 2"d, "value 3"d]); // select first item box.selectedItemIndex = 0; // get selected item text println(box.text);
Boost License 1.0
Vadim Lopatin, 2014
This module contains Combo Box widgets implementation.