gpt4 book ai didi

wpf - 如何将图标放入按钮中 (MahApps)

转载 作者:行者123 更新时间:2023-12-03 15:07:37 31 4
gpt4 key购买 nike

我想将 MahApps 库中的图标放入普通按钮中。我是这样试的:

<Button Height="20" Width="25" Background="Transparent" Foreground="White" Content="{StaticResource appbar_close}"/>

结局是这样的:



那么如何将这个图标整合到这个按钮的合适位置呢?

最佳答案

您有 2 个选择。

首先,您可以使用图标资源(带有 MetroCircleButtonStyle 的示例)

<Button Width="50"
Height="50"
Style="{DynamicResource MetroCircleButtonStyle}">
<Rectangle Width="20"
Height="20"
Fill="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Button}}}">
<Rectangle.OpacityMask>
<VisualBrush Stretch="Fill" Visual="{DynamicResource appbar_close}" />
</Rectangle.OpacityMask>
</Rectangle>
</Button>

其次是新的图标包
<Button Width="50"
Height="50"
Style="{DynamicResource MetroCircleButtonStyle}">
<Controls:PackIconModern Width="20" Height="20" Kind="Close" />
</Button>

希望有帮助。

关于wpf - 如何将图标放入按钮中 (MahApps),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36456396/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com