C# language: How to freeze listview control in windows form?
i need to fr开发者_如何学Goeeze 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
ListView has no support for this, nor can it easily be added. Consider using DataGridView instead. Its columns have a Frozen property.
精彩评论