Reputation: 1443
Does anyone know how to do this? I am really surprised at the scarce documentation/sample code for the WPF GridView (ListView View=GridView).
Upvotes: 1
Views: 1964
Reputation: 4876
You have to set AllowsColumnReorder="False" on a GridView
sample code:
<ListView.View>
<GridView AllowsColumnReorder="False">
//your stuff...
</GridView>
</ListView.View>
Upvotes: 6