我想要这个控件在.net中
我想构建一个如下图所示的控件。它位于 Microsoft Office 2010 的文件菜单中。我以前见过它,但我不知道它叫什么。
- 它叫什么名字
- 我在哪里可以找到这样的 .net 控件?
I want to build a control like the one built into the image below. Its in the file menu for Microsoft Office 2010. I have seen it before but I dont know what it is called.
- What is it called
- Where could I find such a control for .net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您不想使用完整的功能区控件,那么只需使用一个列表框并将其设置为看起来漂亮即可。在 WPF 中比 WinForms 容易得多(您没有指定您正在使用哪个)
If you don't want to use a full blown Ribbon control, then just take a listbox and style it to look pretty. Much easier in WPF than WinForms (you didn't specify which you are using)
最接近您正在寻找的是功能区控件。
但是,我确信您可以使用可以处理
ItemsTemplate
的ItemsControl
创建相同的效果,并设置其样式以使其看起来像您需要的样子,然后将右侧的内容动态更改绑定到ItemsControl
的所选项目。The closest to what you're looking for is a Ribbon control.
However, I'm sure you'd be able to create the same effect using an
ItemsControl
that can handle aItemsTemplate
and style that to look the way you need it to look, then have content on the right hand side dynamically change bound to the selected item of theItemsControl
.看起来像一个样式化的垂直 WPF 选项卡控件,其中的按钮替换了一些选项卡标题。您可能可以使用样式和模板功能在 wpf 中创建类似的内容。
Looks like a styled vertical WPF tab control with buttons replacing some of the tab headers. You could probably create something similar in wpf using the style and template features.