gpt4 book ai didi

wpf - 在wpf中更改按钮形状

转载 作者:行者123 更新时间:2023-12-02 19:56:06 29 4
gpt4 key购买 nike

我想改变一个按钮,让它变成椭圆形。我正在使用 wpf 应用程序。

我看到了一些答案,有人提供了“直截了当”的东西,但我没有明白。而且我不想添加图片(这也是问题的答案)。

最佳答案

在 XAML 中尝试以下操作,

    <Button Click="Button_Click">
<Button.Template>
<ControlTemplate TargetType="Button">
<Grid>
<Ellipse Fill="{TemplateBinding Background}"/>
<ContentPresenter/>
</Grid>
</ControlTemplate>
</Button.Template>
</Button>

关于wpf - 在wpf中更改按钮形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56987498/

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