Does anyone know how to do this? I am really surprised at the scarce documentation/sample code for the WPF GridView (ListView View=GridView).
+3
A:
You have to set AllowsColumnReorder="False" on a GridView
sample code:
<ListView.View>
<GridView AllowsColumnReorder="False">
//your stuff...
</GridView>
</ListView.View>
Novitzky
2009-09-14 22:33:56
Thank you so much Kamil, the solution works fine... BTW, I found it myself also :) but it took me 4 hours.Maybe waiting your answer is a good idea.thanks a lot!
ariso
2009-09-22 18:17:43
My pleasure, Cheers.
Novitzky
2009-09-22 23:34:23