EditCategory
ItemsControl
EditQuestion
How can I customize the way my ItemsControl displays each item in the collection I passed?
EditAnswer
This is done with the help of a DataTemplate.
The ItemsControl class exposes an ItemTemplate and an ItemTemplateSelector property that allow setting the Data Template that will be used to display each individual item in the collection.
Refer to DataTemplate documentation for details
EditRelated Links
DataTemplate: What is it?