0

如何更改它,以便我为 Windows 8 应用程序创建的任何按钮都具有与默认(白色)不同颜色的 Segoe UI 字形?我尝试了以下方法无济于事:

<Button Style="{StaticResource AppBarButtonStyle}"
        AutomationProperties.Name="Button" Content="&#xE17F;">
    <Button.ContentTemplate>
        <DataTemplate>
            <Path Fill="red"/>
        </DataTemplate>
    </Button.ContentTemplate>
</Button>

我希望这会为按钮创建一个实心红色圆圈而不是白色圆圈,但它根本不渲染任何东西。非常感谢帮助!

4

1 回答 1

0

使用Foreground财产。

<Button Style="{StaticResource AppBarButtonStyle}" Foreground="Red"
        AutomationProperties.Name="Button" Content="&#xE17F;" />
于 2013-09-05T19:57:41.687 回答