我有以下资源:
<Window.Resources>
<Style x:Key="TopKey" TargetType="local:CustomType">
<Style.Resources>
<DataTemplate x:Key="NestedKey">
<TextBlock Text="{Binding Path=Name}"/>
</DataTemplate>
</Style.Resources>
</Style>
</Window.Resources>
然后我有以下声明:
<local:CustomType ItemTemplate="{StaticResource TopKey.NestedKey}"/>
当然上面的行没有编译,我不知道如何解决这个问题......