在Windows Phone中创建图像按钮的最佳方法是什么?

时间:2012-11-05 17:24:05

标签: c# windows-phone-7 imagebutton

在Android中,我们可以使用.xml文件中定义的选择器。在Windows Phone中,我们如何快速实现它?

1 个答案:

答案 0 :(得分:0)

您可以将图像添加到Button的Content属性中。

<Button>
<Button.Content>
<Grid>
<Image Name="Normal" Source="Resources/Image.png"/>
</Grid>
</Button.Content>
</Button>