0

我已将分组添加到 ItemsControl:

        <ItemsControl Style="{StaticResource SellingDashboardToDosList}" Grid.Row="2" BorderThickness="1" Background="#C7E8F8" HorizontalAlignment="Stretch" ItemsSource="{Binding ToDoList}" >
            <ItemsControl.GroupStyle>
                <GroupStyle>
                    <GroupStyle.ContainerStyle>
                        <Style TargetType="GroupItem">
                            <Setter Property="Template">
                                <Setter.Value>
                                    <ControlTemplate TargetType="GroupItem">
                                        <GroupBox Header="{Binding Name}">
                                            <ItemsPresenter />
                                        </GroupBox>
                                    </ControlTemplate>
                                </Setter.Value>
                            </Setter>
                        </Style>
                    </GroupStyle.ContainerStyle>
                </GroupStyle>
            </ItemsControl.GroupStyle>
        </ItemsControl>

现在我只看到空的 GroupBox。我使用 Snoop 工具来探索应用程序,我发现 GroupBox ItemPresenters 是空的!可能是什么原因?

如果我从 ItemsControl(ItemsControl.GroupStyle 元素)中删除分组,那么一切正常,我再次看到所有项目。我不需要对底层数据上下文进行任何更改即可查看所有项目。数据上下文(ItemsSource binging)是CollectionViewSource类型。

绑定跟踪已打开,但我没有看到任何绑定错误。

4

2 回答 2

1

似乎 ItemsControl 样式覆盖了 ItemsControl.Template 属性。一旦该样式被覆盖,问题就解决了。

于 2012-07-16T13:26:02.147 回答
0

您必须先对数据进行分组。使用 CollectionViewSource 来做到这一点:

<CollectionViewSource x:Key="Data" Source="{StaticResource SellingDashboardToDosList}">
    <CollectionViewSource.GroupDescriptions>
        <PropertyGroupDescription PropertyName="PropertyNameToGroupBy"/>
    </CollectionViewSource.GroupDescriptions>
</CollectionViewSource>

只有这样,您才能执行以下操作:

<ItemsControl ItemsSource="{Biding Source={StaticResource Data}}" ...
于 2012-07-16T11:26:32.987 回答