ComboBox
Introduction
Code Example: Adding a ComboBox
// Initialize
var comboBox = new ComboBox();
comboBox.AddToRoot();
for(int i = 0; i < 10; i++)
{
comboBox.Items.Add($"Item {i}");
}
Adjusting the Drop-Down ListBox

SelectedObject and SelectedIndex
SelectionChanged
Last updated
Was this helpful?

