2

我有以下资源:

<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}"/>

当然上面的行没有编译,我不知道如何解决这个问题......

4

2 回答 2

3

将资源放在 FrameworkElement 的 ResourceDictionary 中意味着您不希望在此 FrameworkElement 之外可以访问该资源(尽管您可以在后面的代码中绕过它)。

在您的情况下,NestedKey 位于错误的 ResourceDictionary 中。尝试这样的事情:

<Window.Resources>
    <DataTemplate x:Key="NestedKey">
        <TextBlock Text="{Binding Path=Name}"/>
    </DataTemplate>
    <Style x:Key="TopKey" TargetType="local:CustomType">
        <!-- here I can use {StaticResource NestedKey} -->
    </Style>
</Window.Resources>

<!-- in the same window I can use: -->
<local:CustomType ItemTemplate="{StaticResource NestedKey}"/>

您还可以定义基于 TopKey 资源的新样式,从而获得对其 ResourceDictionary 的访问权限(但这是您可以做得更好的解决方法)

<local:CustomType>
    <local:CustomType.Style>
        <Style BasedOn={StaticResource TopKey} TargetType="local:CustomType">
            <!-- here I can use {StaticResource NestedKey} -->
        </Style>
    </local:CustomType.Style>
</local:CustomType>
于 2013-07-29T11:10:48.563 回答
2

只需这样做

<Window.Resources>
    <DataTemplate x:Key="NestedKey">
        <TextBlock Text="{Binding Path=Name}"/>
    </DataTemplate>

    <Style x:Key="TopKey" TargetType="local:CustomType">
        <Setter Property="ItemTemplate" Value="{StaticResource NestedKey}" />
    </Style>
</Window.Resources>

<local:CustomType Style="{StaticResource TopKey}" />

希望有帮助

于 2013-07-29T11:08:52.763 回答