简体   繁体   English

VS2012无法解析资源“X”

[英]VS2012 The resource “X” could not be resolved

I have a Resources.xaml file in my project that contains a resource dictionary like so: 我的项目中有一个Resources.xaml文件,其中包含一个资源字典,如下所示:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <Style x:Key="GPHeaderFontSize" TargetType="TextBlock">
        <Setter Property="FontWeight" Value="Bold" />
        <Setter Property="FontSize" Value="24" />
        <Setter Property="Text" Value="BLAHHHHH"/>
    </Style>
</ResourceDictionary>

I have included this dictionary in App.xaml like so: 我在App.xaml中包含了这个字典,如下所示:

<Application x:Class="GoldenPlains.App" 
    xmlns="schemas.microsoft.com/winfx/2006/xaml/presentation"; 
    xmlns:x="schemas.microsoft.com/winfx/2006/xaml"; 
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" 
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
    <Application.Resources> 
        <local:LocalizedStrings xmlns:local="clr-namespace:GoldenPlains" x:Key="LocalizedStrings"/> 
        <ResourceDictionary x:Key="GPResources"> 
            <ResourceDictionary.MergedDictionaries> 
                <!-- Sometimes VS2012 complaining about path with blue line, please ignore it as path is correct --> 
                <ResourceDictionary Source="Styles/GPResources.xaml"/> 
            </ResourceDictionary.MergedDictionaries>
            <Style x:Key="GPRootOverlayBarStyle" TargetType="Image"> 
                <Setter Property="Source" Value="Assets/Images/root_brown_horizontal_bar.png"/> 
                <Setter Property="Width" Value="729"/> 
                <Setter Property="HorizontalAlignment" Value="Left"/> 
                <Setter Property="Stretch" Value="Uniform"/> 
            </style> 
    </Application.Resources>
    ...
    ...
</Application>

However when I try to reference an element in the resource dictionary from another Page.xaml file it cannot seem to resolve the resource.... eg: 但是,当我尝试从另一个Page.xaml文件引用资源字典中的元素时,它似乎无法解析资源....例如:

I have tried using a binding like so: 我试过使用像这样的绑定:

<TextBlock Style="{Binding Path=LocalizedResources.MyTextBlockStyle, Source=  {StaticResource GPResources}}"/>

it does not indicate that something is wrong but nothing shows up on the UI. 它并不表示出现问题,但UI上没有显示任何内容。

A point in the right direction would be great, cheers. 正确方向上的一点很棒,欢呼声。

Resource Dictionary definition in the App.xaml should be about like following example : App.xaml中的资源字典定义应该类似于以下示例:

<Application.Resources>
    <ResourceDictionary>
        <local:LocalizedStrings xmlns:local="clr-namespace:GoldenPlains" x:Key="LocalizedStrings"/> 
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="Styles/GPResources.xaml"/> 
        </ResourceDictionary.MergedDictionaries>
        <!-- Other resources if you have -->
    </ResourceDictionary>
</Application.Resources>

Then, when you need to apply style defined in Resources.xaml to a UI control, simply refer to the style's key/name : 然后,当您需要将Resources.xaml中定义的样式应用于UI控件时,只需引用样式的键/名称:

<TextBlock Style="{StaticResource GPHeaderFontSize}" />

Notes: All resources need to be inside ResourceDictionary tag, including LocalizedStrings . 注意:所有资源都需要在ResourceDictionary标记内,包括LocalizedStrings

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM