Exceção de análise XAML: o valor do atributo {StaticResource PhoneAccentBrush} está fora do intervalo

Estou com um problema com uma exceção, não consegui encontrar a resposta sobre como corrigi-lo. O valor do atributo {StaticResource PhoneAccentBrush} está fora do intervalo.

System.Windows.Application.LoadComponent(this, new System.Uri("/PAK_phone_side;component/Views/About/App_info.xaml", System.UriKind.Relative));
        this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
        this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
        this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
        this.PageTitle = ((System.Windows.Controls.TextBlock)(this.FindName("PageTitle")));
        this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
        this.textBlock1 = ((System.Windows.Controls.TextBlock)(this.FindName("textBlock1")));

No Windows Phone, quando clico no botão App_info_Button, a exceção acontece em System.Windows.Apllication.LoadComponent Em App_info.g.i.cs, o código acima é desse arquivo.

aqui está a definição do painel de conteúdo em App_info.xaml

 <phone:PhoneApplicationPage 
x:Class="windowsphoneapp.App_info"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://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"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
shell:SystemTray.IsVisible="True">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>

    <!--TitlePanel contains the name of the application and page title-->
    <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
        <TextBlock x:Name="ApplicationTitle" Text="PAK " Style="{StaticResource PhoneTextNormalStyle}"/>
        <TextBlock x:Name="PageTitle" Text="App Infos" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
    </StackPanel>

    <!--ContentPanel - place additional content here-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <TextBlock Height="311" HorizontalAlignment="Center" Margin="25,32,0,0" Name="textBlock1" Text="This Application is designed ...." 
                   VerticalAlignment="Center" Width="425" Style="{StaticResource PhoneAccentBrush}" />
    </Grid>
</Grid>    
</phone:PhoneApplicationPage>

Este é o rastreamento de pilha

em System.Windows.Application.LoadComponent (componente Objeto, Uri resourceLocator) em PAK_phone_side.App_info.InitializeComponent () em PAK_phone_side.App_info..ctor () em System.Reflection.RuntimeConstructorInfo.InternalInvoke Bt, Runtime invstructorInfo, Parâmetros de objeto, cultura CultureInfo, booleano isBinderDefault, chamador Assembly, booleano checkAccess, StackCrawlMark & stackMark) em System.Reflection.RuntimeConstructorInfo.InternalInvoke (Objeto de objeto, BindingFlags invokeAttr, fichário de encadernação, parâmetros do Object [], parâmetros CultureInfo, StackCrawlMark). Activator.InternalCreateInstance (Tipo de tipo, Boolean nonPublic, StackCrawlMark & stackMark) em System.Activator.CreateInstance (Tipo de tipo) em System.Windows.Navigation.PageResourceContentLoader.BeginLoad_OnUIThread (AsyncCallback userCallback, PageResResultadoAtualResultadoAtualizaçãoResultadoAtualResultadoAtualResultadoAtualizadoResultadoResultado. > c_DisplayClass4.b_0 (Args do objeto) em System.Reflection.RuntimeMethodInfo.InternalInvoke (RuntimeMethodInfo rtmi, Obj do objeto, BindingFlags invokeAttr, Fichário do fichário, Parâmetros do objeto, Cultura do CultureInfo, Boolean isBinderDefault, Chamador do assembly, Booleano de verificação de acessos, StackCrawlMode.Instalação.RM .InternalInvoke (Object obj, BindingFlags invokeAttr, Binder fichário, parâmetros Object [], CultureInfo culture, StackCrawlMark & stackMark) em System.Reflection.MethodBase.Invoke (Object obj, Object [] parameters) em System.Delegate.DynamicInvokeOne (Object [] args) em System.MulticastDelegate.DynamicInvokeImpl (Object [] args) em System.Delegate.DynamicInvoke (Object [] args) em System.Windows.Threading.DispatcherOperation.Invoke () em System.Windows.Threading.Dispatcher.Dispatch (DispatcherPriorer prioridade) em System.Windows.Threading.Dispatcher.OnInvoke (Contexto do objeto) em System.Windows.Hosting.CallbackCookie.Invoke (Object [] args) em System.Windows.Hosting.DelegateWrapper.InternalInvok e (Object [] args) em System.Windows.RuntimeHost.ManagedHost.InvokeDelegate (IntPtr pHandle, Int32 nParamCount, ScriptParam [] pParams, ScriptParam & pResult)

questionAnswers(1)

yourAnswerToTheQuestion