Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Simply change the panel used to host the items:
|
|||||||||||||||||
|
|
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. |
||||
|
|
|
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. |
|||
|