如何在xaml中创建一个矩形按钮

发布于 2024-10-17 06:11:24 字数 87 浏览 1 评论 0原文

大家好 我需要你的帮助来使用 xaml 创建一个矩形按钮。

如果我们创建一个默认按钮将会是圆角矩形按钮。 我没有找到圆角半径设置.. 请帮我..

hai guys
i need your help to create a rectangle button with xaml.

if we create a default button will rounded rectangle button.
and i not found corner radius setting..
please help me..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

执笔绘流年 2024-10-24 06:11:24

您必须为按钮创建自己的样式。
获取这个示例,然后您可以使用两个矩形的 RadiusX RadiusY 属性来避免圆角矩形。

You have to create your own Style for your button.
Take a loot at this example, and then you can play with RadiusX RadiusY properties of both Rectangles to avoid rounded rectangle.

梦幻的味道 2024-10-24 06:11:24

您的基本样式是:

<Rectangle>
    <ContentPresenter VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Rectangle>

这将是一个非常基本的按钮样式,具有直角。我仍然建议阅读 blgg 的链接以获取更多信息,因为这可能非常灵活和/或复杂;)

干杯。

Your basic style would be:

<Rectangle>
    <ContentPresenter VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Rectangle>

That would be a very basic button style that has rect corners. I still suggest to read blurg's link for more info, as this can be very flexible and/or complex ;)

Cheers.

对你的占有欲 2024-10-24 06:11:24

请在此处查看创建精美按钮的 MSDN 示例。另请查看问题的答案。

Take a look at the MSDN example for creating fancy buttons here. Also take a look at the answer to this question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文