次のリソースがあります。
<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}"/>
もちろん、上記の行はコンパイルされず、これを解決する方法がわかりません...