C#WPF自定义控件XML错误

时间:2016-10-21 20:03:51

标签: c# wpf xaml

当我尝试在我的应用程序中运行自定义控件时,出现了一个奇怪的错误。

<UserControl x:Class="IBShowdown.BlackHole"
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
     xmlns:local="clr-namespace:IBShowdown"
     mc:Ignorable="d" Height="100" Width="100">
    <Grid>
        <Image x:Name="imgBh1" HorizontalAlignment="Left" Height="100" VerticalAlignment="Top" Width="100" Source="pack://siteoforigin:,,,/Resources/Black Hole 1.png"/>
        <Image x:Name="imgBh2" HorizontalAlignment="Left" Height="100" VerticalAlignment="Top" Width="100" Source="pack://siteoforigin:,,,/Resources/Black Hole 2.png"/>
    </Grid>
</UserControl>

我的错误消息:'名称不能以'&lt;'开头字符,十六进制值0x3c。第8行,第5位'XML无效。你知道我怎么解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

也许是因为UserControl没有关闭?

尝试在Width="100">之前将Width="100"/>更改为<Grid>,或使用</UserControl>结束文件