Here is my XAML
code
<Button HorizontalAlignment="Left" Margin="185,0,0,0" Width="20" BorderBrush="{x:Null}" ToolTip="Search" Foreground="#FFB9B9B9">
<Button.Background>
<ImageBrush Stretch="UniformToFill" ImageSource="../Images/gray-classic-search-icon.png"/>
</Button.Background>
</Button>
This is giving me this error on run project:
A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll
Additional information: 'Provide value on 'System.Windows.Baml2006.TypeConverterMarkupExtension' threw an exception.' Line number '34' and line position '33'.
What is causing this and how can I fix it?