1

我开发了一个 Outlook 2010 加载项,我有包含 Office.CommandBarButton 的 Office.CommandBars cmdBars,我设置了 buttonTemp_Dial.Style = Office.MsoButtonStyle.msoButtonIconAndCaption 和 buttonTemp_Dial.Picture 参考了图标图片。插件中的图标很小,如何将其更改为大图标?

加载项位于 Outlook 的单独选项卡中,有没有办法将加载项放入“主页”选项卡?

4

1 回答 1

0

如果您使用旧的基于 CommandBars 的 API,您的按钮将出现在 Addins 选项卡上,这可能不是您想要的。

您的加载项(在低级别)需要实现 IRibbonExtensibility 接口并将您的自定义设置为 XML - 请参阅http://msdn.microsoft.com/en-us/library/office/bb226712(v=office.12) .aspx

于 2013-06-23T23:40:09.117 回答