如何更改它,以便我为 Windows 8 应用程序创建的任何按钮都具有与默认(白色)不同颜色的 Segoe UI 字形?我尝试了以下方法无济于事:
<Button Style="{StaticResource AppBarButtonStyle}"
AutomationProperties.Name="Button" Content="">
<Button.ContentTemplate>
<DataTemplate>
<Path Fill="red"/>
</DataTemplate>
</Button.ContentTemplate>
</Button>
我希望这会为按钮创建一个实心红色圆圈而不是白色圆圈,但它根本不渲染任何东西。非常感谢帮助!