ItemsControl
Introduction
Code Example: Adding to Items Property
var itemsControl = new ItemsControl();
itemsControl.AddToRoot();
for(int i = 0; i < 10; i++)
{
itemsControl.Items.Add(i);
}
Last updated
Was this helpful?

