更改 datagrid wpf 中每个组的标题

发布于 2024-09-01 06:14:49 字数 221 浏览 5 评论 0原文

我有一个数据网格,其中根据作者对行进行分组。

我已将数据网格与 Author 类对象的集合绑定在一起, 其中 Author 类具有三个属性,即 Book、Publication 和 Number ofpies,它们对应于数据网格中组中的列。

我的问题是我想显示每个作者该组的“副本数”总和。我没有得到的是我应该如何计算总和,因为它是针对一个组而不是针对每个对象或总数据网格。

能做到吗?

I have a datagrid in which I have grouped the rows according to the author.

I have bound the datagrid with collection of Author class objects,
where Author class have three properties as Book, Publication and Number of copies which would correspond to the columns in the group in datagrid.

My problem is I want to display the sum of 'Number of copies' for that group for each author. What I'm not getting is how shall I calculate the sum since it is for a group and not for each object or total datagrid.

Can it be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

燕归巢 2024-09-08 06:14:49

奇怪的是没有人回答这个问题,对于@Archie 来说可能为时已晚,或者更有可能他很久以前就找到了答案。但无论如何:

<GroupStyle.ContainerStyle>
    <Style TargetType="{x:Type GroupItem}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type GroupItem}">
                    <Expander Loaded="GroupHeaderExpander_Loaded">
                        <Expander.Header>
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="Author: "/>
                                <TextBlock Text="{Binding Path=Name}"/>
                                <TextBlock Text=" "/>
                                <TextBlock Text="{Binding Path=ItemCount}"
                                           FontStyle="Italic"/>
                                <TextBlock Text=" Books" FontStyle="Italic"/>
                            </StackPanel>
                        </Expander.Header>
                        <ItemsPresenter>

                        </ItemsPresenter>
                    </Expander>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</GroupStyle.ContainerStyle>

ItemCount 将为您提供每组中的项目数。

华泰

Strange that no one has answered this, and its probably too late for @Archie, or more likely he has found the answer long ago. But here goes anyway:

<GroupStyle.ContainerStyle>
    <Style TargetType="{x:Type GroupItem}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type GroupItem}">
                    <Expander Loaded="GroupHeaderExpander_Loaded">
                        <Expander.Header>
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="Author: "/>
                                <TextBlock Text="{Binding Path=Name}"/>
                                <TextBlock Text=" "/>
                                <TextBlock Text="{Binding Path=ItemCount}"
                                           FontStyle="Italic"/>
                                <TextBlock Text=" Books" FontStyle="Italic"/>
                            </StackPanel>
                        </Expander.Header>
                        <ItemsPresenter>

                        </ItemsPresenter>
                    </Expander>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</GroupStyle.ContainerStyle>

ItemCount will give you the number of items in each group.

HTH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文