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.
这段代码有一些小问题
listView1.Items.SortDescriptions.Add(new SortDescription("id", ListSortDirection.Ascending));
将此字符串数字:22,20,3,5,8,10,12,14,17,2,1 排序为:1,12,14,17,2,20,22,3,5,8
有人可以分享一个如何进行“正常”排序的想法吗?
您的id列是整数还是字符串类型?如果它是字符串类型,则列表视图正在正确地对字符串进行排序。简而言之,它从左到右检查每个字符串的每个字符。
id
如果您将id列更改为整数类型,它将按照您期望的方式对它们进行排序。