如何使用C#(windows窗体)实现类似microsoft word 2007的工具栏?
可能的重复:
WinForms 的功能区 UI 控件
我需要实现一个类似于 microsoft word 2007 的工具栏使用 C#。
实际上我不需要实现功能区控制。我只需要实现一个类似的工具栏,当我们单击功能区的选项卡时就会显示该工具栏。就像将一些常见的按钮/控件分组在一起(一些按钮水平排列,一些垂直排列)
我们该怎么做?
Possible Duplicate:
Ribbon UI Control for WinForms
I have a requirement to implement a toolbar similar to microsoft word 2007 using C#.
Actualy I need not implement ribbon control. I just have to implement a similar toolbar that is shown when we click on the tab of the ribbon. Just like grouping some common buttons/controls together (some buttons arranged in horizontal and some in vertical)
How can we do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下 Ribbon 控件。
http://msdn.microsoft.com/en- us/library/bb386198(v=vs.90).aspx
http://ribbon.codeplex.com/
如果您使用 Wpf,请按照此示例
http://www.codeproject.com/KB/WPF/ribboncontrol.aspx
问候
try whit Ribbon control.
http://msdn.microsoft.com/en-us/library/bb386198(v=vs.90).aspx
http://ribbon.codeplex.com/
If you use Wpf follow this example
http://www.codeproject.com/KB/WPF/ribboncontrol.aspx
Regards