非常简单,实际上,只需修改 Button 的 XAML 以包含一个结束标记,并在其间放置一个图像控件,如下所示:
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Button HorizontalAlignment="Left" Margin="532,285,0,0" VerticalAlignment="Top" Height="135" Width="283">
<Image Source="Assets/Logo.png" />
</Button>
</Grid>
在上面的代码片段中,我将图像源指向 Logo.png 文件,该文件是 C#/XAML 应用程序内置模板的一部分。
另一种方法是在 Blend for Visual Studio 中打开项目,将图像从 Assets 选项卡拖到设计图面上(确保在 Objects and Timeline 窗格中选择了所需的容器),然后右键单击图像并选择 Make into Control...,然后选择 Button 控件。
这种技术的唯一缺点是您无法获得内置 Button 控件所具有的默认 VisualStates。相反,Blend 使用空的 VisualStates 为您定义样式,您可以根据需要设置样式。
希望有帮助。