I have the following ListView layout:
<ScrollViewer HorizontalScrollBarVisibility="Visible">
<ListView Height="Auto" Name="lstvItems" Width="Auto" Background="#FF354D55" SelectionMode="Single" >
<ListView.View>
<GridView>
<GridViewColumn Header="Name:" DisplayMemberBinding="{Binding Name}" Width="100" />
<GridViewColumn Header="Type:" DisplayMemberBinding="{Binding Type}" Width="70" />
</GridView>
</ListView.View>
</ListView>
</ScrollViewer>
If I add a border to the ListView and the scrollbars are available, the borders scroll along with the content.
How do I stop this from happening?