gpt4 book ai didi

wpf - 如何在 XAML 中增加 SymbolIcon 的大小?

转载 作者:行者123 更新时间:2023-12-02 03:40:44 26 4
gpt4 key购买 nike

我想用一个按钮来启动视频播放,因此它应该看起来像“播放”按钮。该按钮在屏幕上会相当大。这是我到目前为止所拥有的:

<Button Style="{StaticResource PlayButton}">
<SymbolIcon Symbol="Play"/>
</Button>

PlayButton 资源定义了 200px 的 MinHeight 和 MinWidth。这样做的问题是播放图标非常小,约为 16px 左右。我怎样才能让它变大?我尝试在 Button 声明中设置 FontSize="200",但这没有什么区别。

最佳答案

不确定这是否是最好的方法,但它对我有用,也可能对你有用:

<Button Style="{StaticResource PlayButton}">
<Viewbox MaxHeight="200" MaxWidth="200">
<SymbolIcon Symbol="Play"/>
</Viewbox>
</Button>

关于wpf - 如何在 XAML 中增加 SymbolIcon 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25149889/

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