I know this is an easy question but I can't figure it out or find the answer anywhere. I'm just trying to change the image source during runtime in WPF using C#. Whenever the code runs, it just removes 1.gif and has a blank white box, instead of displaying 2.gif. Thanks in advance.

XAML:

<Image x:Name="img" Height="150" Margin="142,20,138,0" VerticalAlignment="Top">
        <Image.Source>
            <BitmapImage UriSource="C:\Users\John\1.gif" />
        </Image.Source>
</Image>

C#:

string sUri = @"C:\Users\John\2.gif";
Uri src = new Uri(sUri, UriKind.RelativeOrAbsolute);
BitmapImage bmp = new BitmapImage(src);
img.Source = bmp;
link

The Height is set, but can the Width stretch to fit the new Image? – Yogesh Nov 16 '09 at 6:02
feedback

2 Answers

up vote 1 down vote accepted

You need to initialize the BitmapImage. The correct code would be something like:

BitmapImage bmp = new BitmapImage(src);
bmp.BeginInit();
bmp.EndInit();

That should get you your image.

link
This code generates InvalidOperationException "Cannot set the initializing state more than once." for me. Are Begin/EndInit only required if you use the default constructor and set the UriSource property later? – simonc Dec 21 '11 at 9:57
From your comment, it would seem that your code is calling BeginInit() twice and the second time you call it you get that exception. – Kiranu Dec 21 '11 at 17:58
Agreed that BeginInit() is being called twice. I think your code snippet is incorrect - the calls to BeginInit() & EndInit() seem unnecessary when using the BitmapImage ctor that takes a Uri. – simonc Dec 22 '11 at 11:03
Which version of .NET are you using? – Kiranu Dec 22 '11 at 20:49
I'm using .NET 4.0 – simonc Dec 23 '11 at 13:05
show 1 more comment
feedback

Obvious questions first: you're sure that the image 2.gif really exists, and that the BitmapImage isn't null when you set it as the source of img?

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.