WPF –集合ContentProperty

时间:2018-08-07 09:17:27

标签: c# wpf xaml

对于自定义的 DataTemplateSelector ,我使用了 ContentProperty 属性,该属性应表示 DataTemplates 的集合。

[ContentProperty(nameof(Templates))]
public class CustomTemplateSelector : DataTemplateSelector
{
    public List<DataTemplate> Templates { get; } = new List<DataTemplate>();

    public override DataTemplate SelectTemplate(object item, DependencyObject container)
    {
        /* … */
    }
}

XAML 中的用法:

<ItemsControl ItemsSource="{Binding MyCollection}">
    <ItemsControl.ItemTemplateSelector>
        <local:CustomTemplateSelector>
            <DataTemplate DataType="{x:Type system:Boolean}">
                <Label>BOOL</Label>
            </DataTemplate>
            <DataTemplate DataType="{x:Type system:String}">
                <Label>STRING</Label>
            </DataTemplate>
        </local:CustomTemplateSelector>
    </ItemsControl.ItemTemplateSelector>
</ItemsControl>

我的问题是为什么我不能使用IListICollection数据类型而不是List数据类型。

如果使用这些类型,则会出现编译错误无法在元素“ CustomTemplateSelector”上设置内容属性“ Templates”。 “模板”的访问级别不正确,或者其程序集不允许访问。

1 个答案:

答案 0 :(得分:1)

ContentPropertyAttribute文档说

  

为了接受多个对象元素作为内容,必须支持XAML content属性的类型作为集合类型。

尽管这很模糊,但似乎如果ContentProperty类型是一个集合,它必须实现IList所做的非通用List<T>接口,但是必须实现{{1 }}没有。

所以

IList<T>

可以,但是

public IList Templates { get; } = new List<DataTemplate>();

不会,因为public IList<DataTemplate> Templates { get; } = new List<DataTemplate>(); 不是IList<DataTemplate>