顶部的功能区组标题
我试图弄清楚如何实现此处所示的“更好”示例:
具体用于“缩进”和“间距”标题。我假设它只是一个 RibbonGroup 标头,标头位于顶部,但我不知道如何做到这一点。有想法吗?
I am trying to figure out how to implement the "Better" example of what is shown here:
Specifically what is used for "Indent" and "Spacing" headings. I assume its just a RibbonGroup header with the header on top but I can't figure out how to do that. Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只是一个
TextBlock
。这似乎直接来自 WPF 源代码和示例。
您将在 UserControlWord.xaml 中找到以下内容,我认为这是在您的 Better: 示例中生成整个段落 RibbonGroup 的确切代码。对于非通用的 RibbonButtons 等...它们通常只是在示例中制作自己的普通控件网格。
It's just a
TextBlock
.That appears to be directly from the WPF Source and Samples.
You'll find the following in UserControlWord.xaml which I think is the exact code that produces the entire Paragraph RibbonGroup in your Better: example. For non generic RibbonButtons and such... they usually just make their own grid of normal controls in the examples.