我想显示一个包含实现接口(interface)的元素的TreeView。该接口(interface)由两个主要类实现,这两个类是我要显示的类。

该架构类似于:

IElement
    Container : IElement
      ->public IEnumerable<IElement> Elements {get; set;}
    Element : IElement

因此,基本上,该TreeView必须能够在任何级别上显示容器和元素。容器应该是“可扩展的”(因为它们包含其他IElement),但是Elements不能。

因此this solution似乎不合适,因为它设置了两个完全不同的级别(企业/员工)。

我看不到如何用IElement填充TreeView并能够检查它们是Container还是Elements,以及如何防止仅扩展其中一种类型。

最佳答案

这是您所寻找的东西吗?
这是一个示例:

CS :

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        this.DataContext = this;
    }

    public List<IElement> Elements
    {
        get
        {
            var list = new List<IElement>();

            list.Add(BuildContainer());
            list.Add(BuildContainer());
            list.Add(new Element());

            return list;
        }
    }

    private Container BuildContainer()
    {
        var container = new Container();

        container.Elements.Add(new Element());
        container.Elements.Add(new Element());

        var sub_container = new Container();
        sub_container.Elements.Add(new Element());

        container.Elements.Add(sub_container);

        return container;
    }
}

public interface IElement
{
     string Title { get; }
}

public class Container : IElement
{
    public string Title
    {
        get { return "Container"; }
    }

    private ObservableCollection<IElement> elements;
    public ObservableCollection<IElement> Elements
    {
        get
        {
            if (elements == null)
            {
                elements = new ObservableCollection<IElement>();
            }
            return elements;
        }
    }
}

public class Element : IElement
{
    public string Title
    {
        get { return "Element"; }
    }
}

XAML:
<Window
    xmlns:local="clr-namespace:WpfApplication1"
    Title="MainWindow" Height="350" Width="525">
<Window.Resources>

    <DataTemplate DataType="{x:Type local:Element}">
        <TextBlock Text="{Binding Title}" Foreground="Red" FontSize="14"/>
    </DataTemplate>

    <HierarchicalDataTemplate DataType="{x:Type local:Container}" ItemsSource="{Binding Elements}">
        <TextBlock Text="{Binding Title}" Foreground="Black" FontWeight="Bold" FontSize="16"/>
    </HierarchicalDataTemplate>
</Window.Resources>


<Grid>
    <TreeView ItemsSource="{Binding Elements}" />
</Grid>

结果 :

关于c# - 具有继承类型的TreeView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30369981/

10-13 06:21