我有一个类 Ingredients 具有Items
type的属性List<Ingredient>
。
在我的一个页面中,我使用 GridView 显示所有成分,按首字母分组:
<Page.Resources>
<CollectionViewSource x:Name="IngredientsViewSource" IsSourceGrouped="True" ItemsPath="Items"/>
</Page.Resources>
加载页面时,CollectionViewSource 的 Source 属性设置如下:
this.IngredientsViewSource.Source = CurrentData.Ingredients.GroupedItems;
GroupedItems
是成分类的一个属性,它接受属性Items
和订单并将所有内容分组以便准备好使用:
public object GroupedItems
{
get
{
if (this.Items != null)
{
return from IngredientIteration in this.Items
//orderby IngredientIteration.Name ascending
group IngredientIteration
by IngredientIteration.FirstLetter
into IngredientGroup
//orderby IngredientGroup.Key ascending
select new {
FirstLetter = IngredientGroup.Key,
Items = IngredientGroup
};
}
else
{
return null;
}
}
private set { }
}
这工作得很好。现在我想对结果进行排序,因为现在第一个字母的顺序都搞砸了。但是,当我删除两个子句前面的注释标记时orderby
,它变得非常奇怪。像现在这样保留 orderby 子句会导致正确排序的组,但只显示每个组的第一项。
但是,当我将升序更改为降序时,一切都按预期进行:组按降序排序,显示所有项目,并且每个组内的项目按降序排序。
这对我来说毫无意义,为什么下降有效但上升无效?我在这里错过了什么吗?