我有一个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>
我收到错误错误:
Nested properties are not supported: Parent.Child
我在ObservableCollection<Parent.Child> RandomItems
中也有MyClass
,一切运行正常。
如何解决此问题?