如何在 WPF 中向分隔符添加标头?
我想向 WPF 分隔符添加一个标头(以便它看起来像 GroupBox 的顶行)。这样做的目的是将视图分成不同的部分,我不能使用 GroupBox,因为我们业务中的准则规定我们必须为此使用分隔符...有人知道如何做到这一点吗?
编辑:
我知道可以通过使用其他控件(即边框和文本框)来实现此解决方案,但我想知道是否可以将 Header 属性添加到 Separator 对象中。
I would like to add a header to a WPF Separator (so that it looks like the top line of a GroupBox). The purpose of this is to separate the view into different sections, and I can't use a GroupBox because the guidelines in our business say that we must use separators for that... Does someone know how to do that?
EDIT:
I know it is possible to achieve this solution by using other controls (i.e. borders and textbox), but I want to know is if an Header property can be added to the Separator object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以编写自己的自定义控件
和样式:
然后使用它:
You can write you own custom control
And style:
And then use it:
尝试这样的事情:
Try something like this: