I am developing a Visual Studio extension. I need to display icons/images inside some tool window written with XAML.
I have put the images files inside the Resources folder inside the extension project folder. And I have declared the images like:
<Image Source="pack://application:,,,/Resources/Help_16.png" Width="16" Height="16" Margin="4,0,0,0"/>
<Image Source="pack://application:,,,/Resources/HowToFix_16.png" Width="16" Height="16" Margin="4,0,0,0"/>
They show nicely in the Visual Studio editor (XAML Designer) but the DON'T show anymore while running the Experimental Instance. No error reported in Visual Studio.
Why are they showing in the editor and NOT in the running instance? What am I missing? Thanks for your help!