tags:

views:

253

answers:

1

The WPF ListView control allows to re-order of columns by drag and drop. Is there any way to disable it?

I hope some WPF guru can help me. :)

+1  A: 
<ListView.View>
     <GridView AllowsColumnReorder="False">
      ......headers here........
     </GridView>
 </ListView.View>

Try this

ArsenMkrt