具有继承类型的TreeView

时间:2015-05-21 09:37:47

标签: c# wpf xaml mvvm treeview

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

架构类似于:

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

所以基本上,这个TreeView必须能够在任何级别上显示容器和元素。容器应该是可扩展的&#34; (因为它们包含其他IElements),但Elements不应该。

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

我不知道如何使用IElements填充TreeView,同时能够检查他们的容器或元素,以及如何防止只扩展其中一种类型。

2 个答案:

答案 0 :(得分:2)

这是否符合您的要求? 这是一个样本:

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>

结果:

enter image description here

答案 1 :(得分:0)

IsExpandable bool中再添加IElementinterface个属性true。将此属性设置为仅Container类的Binding,并在TriggerTreeViewItem中使用此属性作为JTextArea