當我嘗試在我的應用程序中運行自定義控件時,出現一個奇怪的錯誤。C#WPF自定義控件XML錯誤
<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>
我的錯誤信息:<'字符,十六進制值爲0x3C「名稱不能與開始」。第8行,位置5'XML無效。你知道我該如何解決這個問題嗎?
對不起結束文件,我不能和你上面貼的XAML重現你的錯誤。 –
你能分享使用自定義控件的文件嗎? –