I have an ItemsControl, with its ItemsSource bound to a list of items. The size of each of the items is as small as they can be, what I need is for the control and the items
I had the same problem and found out that ItemsControl by default uses a StackPanel for his children. Replacing this with a Grid solved the problem:
ItemsControl
StackPanel
Grid
Edit: This only works for one child element!