标签: c# windows-phone-7 imagebutton
在Android中,我们可以使用.xml文件中定义的选择器。在Windows Phone中,我们如何快速实现它?
答案 0 :(得分:0)
您可以将图像添加到Button的Content属性中。
<Button> <Button.Content> <Grid> <Image Name="Normal" Source="Resources/Image.png"/> </Grid> </Button.Content> </Button>