Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何关闭 ListView 排序?
出于某种原因,我的 ListView 在我的第一列上自动按 asc 排序。
它是一个自定义的 ListView,但唯一被修改的是它的实际外观。100% 基于标准 ListView
您可能已将该ListView.Sorting属性设置为SortOrder.Ascending. 确保它设置为SortOrder.None.
ListView.Sorting
SortOrder.Ascending
SortOrder.None
环境:
myListView.Sorting = SortOrder.None;
应该做的伎俩,除非您添加到的ListView项目已经排序。
ListView