2013-12-08 2 views
0

Я получаю следующее сообщение об ошибке при запуске программы:Ресурс «XX» не может быть решен

Предупреждения Ресурса «bellRingersStyle» не может быть решен.

Это подходит для двух последних строк, которые являются {StaticResource bellRingersStyle}.

<Window x:Class="BellRingers.MainWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     Title="Middleshire Bell Ringers Association – Members" Height="350" Width="525"> 
    <Window.Resources> 
     <Style x:Key="bellRingerStyle" TargetType="Control"> 
      <Setter Property="Button.Background" Value="Gray"/> 
      <Setter Property="Button.Foreground" Value="Gray"/> 
      <Setter Property="Button.FontFamily" Value="Comic Sans MS"/> 
      <Style.Triggers> 
       <Trigger Property="IsMouseOver" Value="True"> 
        <Setter Property="Background" Value="Blue"/> 
       </Trigger> 
      </Style.Triggers> 
     </Style> 
    </Window.Resources> 
    <Grid> 
     <Button Style="{StaticResource bellRingerStyle}" Panel.ZIndex="1" Content="Button" Height="23" HorizontalAlignment="Left" Margin="400,131,0,0" Name="button1" VerticalAlignment="Top" Width="75" > 
      </Button> 
     <Button Style="{StaticResource bellRingersStyle}" Panel.ZIndex="1" Content="Button" Height="23" Margin="0,0,0,0" Name="button2" Width="75" /> 
      <Image Panel.ZIndex="0" Margin="0,0,0,0" Name="image1" > 
      <Image.Source> 
       <BitmapImage UriSource="bell.gif" /> 
      </Image.Source> 
     </Image> 
     <TextBox Style="{StaticResource bellRingersStyle}" Height="23" HorizontalAlignment="Left" Margin="206,271,0,0" Name="textBox1" VerticalAlignment="Top" Width="120" /> 
    </Grid> 
</Window> 
+0

что это за ресурс 'xx'? –

+0

Я изменил это, забыл добавить это конкретно. Сожалею. – user2856358

ответ

2

У вас есть опечатка. Вы определили его как bellRingerStyle, но ссылаетесь на bellRingersStyle.

+0

yup ... множественное число против единственного числа. – DRapp