How to let ItemsControl scroll vertically, if it's placed in a viewbox?
<Viewbox>
<ItemsControl ItemsSource="..." />
</Viewbox>
I need the Viewbox to scale all the content of my ItemsControl horizontally to the width of the phone (Viewbox does it perfectly, it scales the content in such a way that the widest row of ItemsControl occupies exactly the width, equal to the phone width). But now I cannot scroll the list vertically for some reason, I tried ScrollViewer, scrollbars of Viewbox, scrollbars of ItemsControl -- nothing works.