在调整窗口大小时更改自定义 Office 功能区大小
在我们的 Office 加载项中,我们需要功能区按钮的行为方式与调整表单大小时常规 Office 功能区按钮的行为相同:随着表单变小,某些图像也会变小,然后完全消失。我不知道如何对我们的自定义功能区组执行相同的操作,按钮始终保持不变。请注意,这是 Office UI 功能区,而不是 WPF 功能区,它的可定制性要高得多,
谢谢!
In our Office add-in we need the ribbon buttons to behave the same way as regular Office ribbon buttons do when you resize the form: as the form becomes smaller, some images also become smaller, then disappear altogether. I have no idea how to do the same for our custom ribbon group, the buttons always stay the same. Please note, this is Office UI ribbon, not WPF ribbon, which is much more customizable
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实证明,Office 2007 不支持此功能。在 Office 2010 中,您可以通过添加以下 XML 属性来设置每个组的缩放比例:
自动缩放=“真”
It turns out this is not supported under Office 2007. In Office 2010 you can set scaling per group by adding the following XML attribute:
autoScale="true"
好的,但是在 VSTO 项目中自定义功能区和 Visual Studio 中的功能区设计器时,“自动缩放”也可以吗?
OK, but is "autoScale" also possible when customizing the ribbon within a VSTO project and the ribbon designer in Visual Studio?