ListBoxItem
Introduction
Code Example: Adding ListBoxItems
var listBox = new ListBox();
listBox.AddToRoot();
listBox.X = 50;
listBox.Y = 50;
listBox.Width = 400;
listBox.Height = 200;
for(int i = 0; i < 20; i++)
{
listBox.Items.Add(i);
}
Customizing ListBox Items
Last updated
Was this helpful?

