Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am declaring an image within my resource dictionary and then displaying in a user control as follows:

ResourceDictionary.xaml (I am using a style here as I plan to update the image as the user changes what they look at, i.e., company, employee, etc.)

<ImageSource x:Key="CompanyIcon">Images/company_128.png</ImageSource>

<Style x:Key="QuickInfoIcon" TargetType="{x:Type Image}">
    <!-- Default Value -->
    <Setter Property="Source" Value="{StaticResource CompanyIcon}" />
</Style>

The 'Images' folder is a subfolder of 'Assests'. The 'Assests' folder contains my 'ResourceDictionary.xaml' file and I know the path is correct as I get a designer error if I change the path to something like '../Images/company_128.png'

QuickinfoView.xaml

<UserControl x:Class="SidekickAdmin.Views.QuickInfoView"
             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" 
             mc:Ignorable="d" d:DesignWidth="500" Height="100"
             Background="BlanchedAlmond">

    <!-- Setup a grid to house the icon and the info -->
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="100" />
            <ColumnDefinition Width="*" />
        </Grid.ColumnDefinitions>

        <Grid Grid.Column="0" Name="InfoIcon">
            <Image Style="{StaticResource QuickInfoIcon}" Height="50" Width="50"/>
        </Grid>
    </Grid>


</UserControl>

When viewing the layout in Visual Studio 2012 designer, everything appears correctly but when I run the program I get an error of "XamlParseException occurred: Failed to create a 'ImageSource' from the text 'Images/employee_128.png'." on the ResourceDictionary line with ImageSource.

If I change ImageSource to use a different image it updates as expected within VS2012 designer but then get the same error when trying to run the program.

I have set the Build Action to 'Embedded Resource' on the Resource.resx file but this hasn't fixed the issue.

Any idea on why I am getting the XamlParseException when I try to run this program?

As a side question, when I incorporate images in my program should the image itself (the file) be visible in the bin/debug folder somewhere or is this information hidden with one of the files in bin/debug?

share|improve this question
I use this pattern whenever i want to use image from Resources, even if the resource is in the same assembly: <ImageSource x:Key="StylesImage">/VSProjectName;component/Resources/Styles.png</ImageSource> – Novitchi S Nov 15 '12 at 14:21
Is 'component/Resources' a file path or something predefined by VS? If the path to my images is '<Project>/Assests/Images' what would I put in place of your 'component/Resources'? – BrianKE Nov 15 '12 at 14:31
try this: <ImageSource x:Key="CompanyIcon">/VSProjectName;component/Assests/Images/company_128.png</Ima‌​geSource> .I can't reproduce your issue thought. – Novitchi S Nov 15 '12 at 14:36
1  
While looking for something else I right-clicked on the image within Solution Explorer and one of the options was 'Include in Project'. After selecting this option everything works correctly. Not sure why this wasn't already included in the project but hopefully this helps someone else! I also went back to the relative path ('Images/company_128.png') and it works. – BrianKE Nov 15 '12 at 14:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.