ParseXamlException Windows Phone 8.1

ParseXamlException Windows Phone 8.1

我在 Windows Phone 8.1 应用程序中收到错误消息:

找不到与此错误代码关联的文本(解析Xaml异常)

第 28 行第 28 栏

<UserControl
    x:Class="ConnectorX_UniversalApp.UI.LoginUserControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    xmlns:local="using:ConnectorX_UniversalApp.CommonUI">

    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot">
        <Grid.Background>
            <ImageBrush ImageSource="ms-appx:///Assets/CustomUI/background.png" Stretch="UniformToFill" />
        </Grid.Background>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <Grid>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
                <ColumnDefinition Width="120"/>
            </Grid.ColumnDefinitions>
            <StackPanel Orientation="Vertical" Grid.Column="0">
                <TextBlock x:Uid="BuisnessConnectorTextBlock" Margin="5,15,0,0" FontSize="25" x:Name="BuisnessConnectorTextBlock" HorizontalAlignment="Stretch"/>
            </StackPanel>

Xaml 有效。我在另一台笔记本电脑上克隆和 运行 项目后出现此错误。

您的应用似乎在尝试创建 TextBlock 时崩溃了。 您确定您的 .resw 文件中有一个名为 "BuisnessConnectorTextBlock" 的资源吗?

xaml 解析器将尝试查找指定的资源并将其属性应用于 TextBlock。如果资源不存在,解析器将抛出异常。此外,如果资源具有不适合 TextBlock 的任何属性,您也会得到一个异常。

(在我看来应该是 "BusinessConnectorTextBlock")