wpf中RichTextBox的圆角
在wpf中可以使RichTextBox具有圆角半径。我知道它可以使用 ControlTemplate 来实现,但是如何实现呢?
我希望你们中的一些人能给我一些提示。
It is possible to make RichTextBox have corner radius in wpf. i know it can achive using ControlTemplate but how?
I hope some of you may provide me with a hint.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在它周围加一个边框怎么样?
How about putting a border around it?
只需添加一个样式:
Just add a style:
我尝试过 Klau 的建议,但它对我不起作用,所以我自己做了一些事情:
我用 Border 类替换了 RichTextBoxe 的默认边框,这次它起作用了:
还有图片:
您可能可以做得更好,但这是一个好的开始
I've tried Klau's suggestion, and it didn't work for me, so I came with a little bit of something on my own:
I've replaced the RichTextBoxe's default border with Border class, and this time it works:
And the picture:
You probably can make this better, but this is a good start