Can anyone tell me what differences between these two examples
<Button>
<Image Source="....."/>
</Button>
and
<Button>
<Button.Background>
<ImageBrush ImageSource="....."/>
</Button.Background>
</Button>
They do same thing – creating a image button. But I’d like to know the difference between them. Thanks
The first one sets the
Imageas aButton.Content, the second sets it as aBackground, so I’m pretty sure you still can place some text over it when you use the second solution.