我正在研究MS.NET WPF;在XAML中,我定义了一些静态资源。我想将它们分配到一个数组中,该数组也在XAML中声明。
以下是静态资源:
<local:Person x:Key="PersonABC" Name="Hello" Age="29" />
<local:Person x:Key="PersonXYZ" Name="World" Age="55" />
但我不能通过类似的方式将它们分配到数组中
{StaticResource PersonABC}
. 我必须重新创建资源并将它们分配到数组中:
<x:Array x:Key="PersonList" Type="{x:Type local:Person}">
<local:Person Name="Hello" Age="29" />
<local:Person Name="World" Age="55" />
</x:Array>
但我想要这样的东西:
<x:Array x:Key="PersonList" Type="{x:Type local:Person}">
"{StaticResource PersonABC}"
"{StaticResource PersonXYZ}"
</x:Array>