Module beamui.widgets.combobox

Combo Box controls, simple and editable.

Synopsis

dstring[] list = ["value 1", "value 2", "value 3"];

// creation of simple combo box
auto cbox = new ComboBox(list);

// select the first item
cbox.selectedItemIndex = 0;

// get selected item text
writeln(cbox.text);

Import line

import beamui.widgets.combobox;

Classes

NameDescription
ComboBox Combobox with list of strings
ComboBoxBase Abstract combobox widget.
ComboEdit Editable combobox with list of strings
IconTextComboBox Combobox with list of strings with icons