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.
如何通过不同类型的多个数据源字段自定义 RadListBox 的排序项?
我有一个绑定到数据源 (LINQ) 的 RadListBox,需要先按priority(int) 然后按name(string) 对项目进行排序。
priority
name
在 LINQ 中,您可以指定多个 order by 语句,不管它们是什么类型。这些项目将首先按优先级排序,然后每个优先级的项目子集将按名称排序:
myData.OrderBy(d => d.Priority).ThenBy(d => d.Name);