以下XAML(下面)在资源中定义自定义集合,并尝试使用自定义对象填充它;
<UserControl x:Class="ImageListView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300"
xmlns:local="clr-namespace:MyControls" >
<UserControl.Resources>
<local:MyCustomCollection x:Key="MyKey">
<local:MyCustomItem>
</local:MyCustomItem>
</local:MyCustomCollection>
</UserControl.Resources>
</UserControl>
问题是我在'类型'设计器中遇到错误'MyCustomCollection'不支持直接内容'。我已经尝试在MSDN中建议设置ContentProperty,但无法弄清楚要将其设置为什么。我使用的自定义集合对象如下,非常简单。我已经尝试了Item,Items和MyCustomItem,并且无法想到还有什么可以尝试。
<ContentProperty("WhatGoesHere?")> _
Public Class MyCustomCollection
Inherits ObservableCollection(Of MyCustomItem)
End Class
我将非常感激地收到任何有关我出错的线索。还提示如何深入了解WPF对象模型以查看在运行时公开的属性,我也可以这样想出来。
此致
赖安
答案 0 :(得分:5)
您必须使用将代表您的类内容的属性的名称初始化ContentPropertyAttribute。在您的情况下,因为您从ObservableCollection继承,那将是Items属性。遗憾的是,Items属性是只读的,并且不允许,因为Content属性必须具有setter。因此,您必须在Items周围定义自定义包装器属性,并在属性中使用它 - 如下所示:
public class MyCustomItem
{ }
[ContentProperty("MyItems")]
public class MyCustomCollection : ObservableCollection<MyCustomItem>
{
public IList<MyCustomItem> MyItems
{
get { return Items; }
set
{
foreach (MyCustomItem item in value)
{
Items.Add(item);
}
}
}
}
你应该没事。当你的例子在VB中时,很抱歉在C#中做到这一点,但我真的很厌烦VB,甚至无法做到这么简单的事情......无论如何,转换它很容易,所以 - 希望有所帮助。