When I try to run my custom control in my application, I get a strange error.
<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>
My error message: 'Name cannot begin with the '<' character, hexadecimal value 0x3c. Line 8, position 5' XML is invalid. Do you know how I can fix this?