how can I programmatically set the background of a button to be an image? I know how to do it in XAML, but in code, I keep getting stuck, I tried

Button.Background = new ImageBrush{ ImageSource = "source" };

but then I get the error that string cannot be converted to ImageSource.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 6 down vote accepted
Try:
Button.Background = new ImageBrush{ ImageSource = new BitmapImage(new Uri(imgPath, UriKind.Relative)) };
link|improve this answer
Thx =3 I already found an answer though: Background = new ImageBrush { ImageSource = ( ImageSource ) new ImageSourceConverter( ).ConvertFromString( "source" ) } – GeekPeek Jan 20 at 10:32
Both work fine =D thank you very much! – GeekPeek Jan 20 at 10:35
well, thanks! :) – Divya Jan 21 at 4:39
+1 Note: if the image is from internet then we have to use Absolute. – Ganapathy Apr 19 at 11:15
feedback

Your Answer

 
or
required, but never shown

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