Scrollable Wrappanel in Silverlight
- by Matt
How do I make a Wrappanel scrollable? Here's the XAML that I've been using but I get errors with it.
<ItemsControl x:Name="lbMedia">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
<c:WrapPanel></c:WrapPanel>
</ScrollViewer>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<im:MediaManagerItem></im:MediaManagerItem>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>