views:

210

answers:

1

hello,

i need to freeze certain columns in listview so when the user scrolls horizontally the frozen columns will not be affected (like in excel) but there is no frozen(bool) property like that in datagrid. Can this be done in listview control? Thanks

+1  A: 

ListView has no support for this, nor can it easily be added. Consider using DataGridView instead. Its columns have a Frozen property.

Hans Passant