Module dlangui.widgets.combobox
This module contains Combo Box widgets implementation.
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);
Classes
Name | Description |
---|---|
ComboBox
|
ComboBox with list of strings.
|
ComboBoxBase
|
Abstract ComboBox .
|
ComboEdit
|
Editable ComboBox with list of strings.
|
Authors
Vadim Lopatin, coolreader.org@gmail.com
Copyright
Vadim Lopatin, 2014
License
Boost License 1.0