将 Treeview 绑定到具有 WPF 中相同对象列表的对象

发布于 2024-12-12 05:13:07 字数 526 浏览 0 评论 0原文

我正在尝试制作报告树视图。我可以在其中编写一些文本作为父节点,如果需要,我可以添加添加字符串作为子节点以显示更多信息。

我制作了一个报告对象:

public class Report
{
    private List<Report> reportList = new List<Report>();

    public string Text { get; set; }
    public List<Report> Reports
    {
        get
        {
            return reportList;
        }
        set
        {
            reportList = value;
        }
    }
}

然后我有一个报告集合,然后我将其输入到树视图项目源中,但我不知道如何创建绑定,以便它能够在整个过程中正确创建子节点,我尝试搜索谷歌,但是我找不到正确的方法。

有人可以帮助我吗?

I'm trying to make a report treeview thing. Where I could write some text to have as a parent node, and if need be I'd add add strings as sub nodes to display some more information.

I made a report object:

public class Report
{
    private List<Report> reportList = new List<Report>();

    public string Text { get; set; }
    public List<Report> Reports
    {
        get
        {
            return reportList;
        }
        set
        {
            reportList = value;
        }
    }
}

Then I'd have a Report Collection that I would then feed into a treeview itemssource, but I have no idea how to create the bindings so that it will create the subnodes properly throughtout, I tried searching google, but I couldn't find the correct way.

Can anybody inhere help me?

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

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

发布评论

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

评论(2

差↓一点笑了 2024-12-19 05:13:07

您需要使用 HierarchicalDataTemplate

<TreeView ItemsSource="{Binding Reports}">
    <TreeView.Resources>
        <HierarchicalDataTemplate DataType="{x:Type local:Report}" ItemsSource="{Binding Reports}">
            <TextBlock Text="{Binding Text}" />
        </HierarchicalDataTemplate>
    </TreeView.Resources>
</TreeView>

You need to use a HierarchicalDataTemplate

<TreeView ItemsSource="{Binding Reports}">
    <TreeView.Resources>
        <HierarchicalDataTemplate DataType="{x:Type local:Report}" ItemsSource="{Binding Reports}">
            <TextBlock Text="{Binding Text}" />
        </HierarchicalDataTemplate>
    </TreeView.Resources>
</TreeView>
梦一生花开无言 2024-12-19 05:13:07
<TreeView ItemsSource="{Binding ReportCollection}">
  <TreeView.ItemTemplate>
    <HierarchicalDataTemplate ItemsSource="{Binding Reports}">
      <TextBlock Text="{Binding Text}" />
    </HierarchicalDataTemplate>
  </TreeView.ItemTemplate>
</TreeView>
<TreeView ItemsSource="{Binding ReportCollection}">
  <TreeView.ItemTemplate>
    <HierarchicalDataTemplate ItemsSource="{Binding Reports}">
      <TextBlock Text="{Binding Text}" />
    </HierarchicalDataTemplate>
  </TreeView.ItemTemplate>
</TreeView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文