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

Last updated
Was this helpful?

