How can I remove the scroll bars, when there are more items in the view than can be displayed.
<ListBox x:Name="listBox" Grid.Row="1" BorderBrush="{x:Null}" Background="{x:Null}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<views:AnimatedStackPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>