如何在xaml中创建一个矩形按钮
大家好 我需要你的帮助来使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须为按钮创建自己的样式。
获取这个示例,然后您可以使用两个矩形的 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.
您的基本样式是:
这将是一个非常基本的按钮样式,具有直角。我仍然建议阅读 blgg 的链接以获取更多信息,因为这可能非常灵活和/或复杂;)
干杯。
Your basic style would be:
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.
请在此处查看创建精美按钮的 MSDN 示例。另请查看此问题的答案。
Take a look at the MSDN example for creating fancy buttons here. Also take a look at the answer to this question.