我有一个 XAML 文件,其中包含用于预览 XAML 设计的示例数据:
<data:MyClass
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:data="clr-namespace:com.meta.Data;assembly=com.meta.framework"
xmlns:data1="clr-namespace:com.alle.Data;assembly=com.meta.framework">
<data:MyClass.RandomItems>
<data1:Parent.Child Title="Hede0" Description="Hodo0" />
<data1:Parent.Child Title="Hede1" Description="Hodo1" />
<data1:Parent.Child Title="Hede2" Description="Hodo2" />
<data1:Parent.Child Title="Hede3" Description="Hodo3" />
</data:MyClass.RandomItems>
</data:MyClass>
我收到错误错误:
不支持嵌套属性:Parent.Child
我也有ObservableCollection<Parent.Child> RandomItems
,MyClass
并且在运行时一切正常。
我该如何解决这个问题?