2016-10-21 66 views
0

當我嘗試在我的應用程序中運行自定義控件時,出現一個奇怪的錯誤。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無效。你知道我該如何解決這個問題嗎?

+1

對不起結束文件,我不能和你上面貼的XAML重現你的錯誤。 –

+0

你能分享使用自定義控件的文件嗎? –

回答

1

也許是因爲UserControl未關閉?

嘗試要麼改變Width="100">Width="100"/>只是<Grid>之前或</UserControl>

+0

謝謝你,我只是添加了(它解決了1錯誤),但我仍然得到相同的錯誤。 – Akinni

+0

對我來說看起來很好且有效的XML,對不起。 – c4n