如何制作一个完全方形的按钮?
有没有一种简单的方法来制作一个完全方形的Button
?通常,Button
是有点圆角的,那么如何实现这一点呢?
Is there a simple way to make a fully square Button
? Normally, a Button
is a little rounded, so how do I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需创建一个自定义按钮样式...类似这样的
如果您有 Blend,请单击按钮...编辑样式 ->编辑当前...并摆脱我认为的角半径
Just create a custom button style...something like this
If you have Blend click on the button... edit style -> edit current... and get rid of the corner radius I think
如果您的意思是宽度=高度,请参阅 WPF 动态布局:如何强制方形比例(宽度等于高度)?
如果您的意思是有方角,则将边框的 CornerRadius 设置为零:
然后按钮将使用它 模板:
If you mean to have width = height then see WPF dynamic layout: how to enforce square proportions (width equals height)?
If you mean to have square corners then set the CornerRadius of the Border to zero:
Then the button uses that template: