Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know a lot of people asked about background image of a WPF button and it is possible, but I would like to ask how to add external image ( from Internet ) to the button's background . Is there a way ?

share|improve this question

2 Answers

up vote 5 down vote accepted

Set the button's background explicitly using an ImageBrush:

<Button Content="Hello">
    <Button.Background>
        <ImageBrush ImageSource="http://example.com/foo.jpg" />
    </Button.Background>
</Button>
share|improve this answer
After clicking the button, the button's interfaces turns from background image to nothing and the revert one in a loop, how can we solve it ? – icaptan Aug 17 '11 at 3:38

The selected answer is correct, and for changing the background in C# codes:

ImageBrush brush1 = new ImageBrush();
BitmapImage image = new BitmapImage(new Uri(IMAGE_URL_HERE));
brush1.ImageSource = image;
button1.Background = brush1;

Both are correct.

share|improve this answer

Your Answer

 
discard

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

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