在代码隐藏中创建 RibbonControl
我正在开发一个 PowerPoint 加载项项目。
我正在尝试在代码隐藏中创建 RibbonToggleButton,但我无法按照我的想法进行操作,
RibbonToggleButton toggleButton = new RibbonToggleButton();
是否可以在代码隐藏中创建 RibbonControls 而不是 RibbonDesigner 或 RibbonXML?
I'm working on a PowerPoint Add-In project.
I'm trying to create a RibbonToggleButton in code-behind but I can't do it the way I thought,
RibbonToggleButton toggleButton = new RibbonToggleButton();
Is it possible to create RibbonControls in code-behind and not the RibbonDesigner or RibbonXML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档:
看起来您可以通过
RibbonBase.Factory
属性。您可能还想查看此演练。
According to the docs:
It looks like you get at the
RibbonFactory
via theRibbonBase.Factory
property.You may also want to look through this walk-through.