Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?
|
feedback
|
|
Simply change the panel used to host the items:
| |||||||||||||||
feedback
|
|
The top answer is good, but I couldn't get it to work with usercontrols. If you need usercontrols, this should help. ItemsControl with Horizontal Usercontrols My Version:
To bind to data, you will need to add an ItemsSource to the ItemsControl in the XAML or code behind. Also note that uc: would be the xmlns:uc="NamespaceOfMyControl" declared at the top of the file. | ||||
|
feedback
|
|
this is actually not going to work in many situations. using a stackpanel means the contents won't stretch to fill the space. you then have to set a fixed width on anything in the itemtemplate. | |||
|
feedback
|