如何使用实体框架显示 WPF DataGrid 父/子记录

发布于 2024-12-29 19:12:56 字数 69 浏览 0 评论 0原文

我一直在尝试找到一个示例,说明如何创建 WPF 父/子数据网格,其中子记录显示在相关父行下方。我正在使用实体框架来获取数据。

I have been trying to find an example of how to create a WPF parent/child datagrid where the child records are displayed underneath the related parent row. I am using the Entity Framework for aquiring the data.

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

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

发布评论

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

评论(1

只有一腔孤勇 2025-01-05 19:12:56

假设您已经制定了绑定和列的内容...

您可以使用 RowDetails 来显示有关行的更多信息...

例如

<WPFToolkit:DataGrid x:Name="dg" ItemsSource="{Binding}" 
        RowDetailsVisibilityMode="VisibleWhenSelected">

    <WPFToolkit:DataGrid.RowDetailsTemplate>
        <DataTemplate>
            <StackPanel>
              <!--Your Favourite Controls-->
            </StackPanel>
        </DataTemplate>
    </WPFToolkit:DataGrid.RowDetailsTemplate>

Assuming you have worked out the Bindings and the Columns stuff....

You can use the RowDetails to show more information about the Row....

For Example

<WPFToolkit:DataGrid x:Name="dg" ItemsSource="{Binding}" 
        RowDetailsVisibilityMode="VisibleWhenSelected">

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