Module dcanvas.widgets.combobox
Combo Box widgets implementation.
Synopsis
import dcanvas .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);
Classes
| Name | Description |
|---|---|
ComboBox
|
ComboBox with list of strings. |
ComboBoxBase
|
Abstract ComboBox. |
ComboEdit
|
Editable ComboBox with list of strings. |
IconTextComboBox
|
ComboBox with list of strings. |