TabComposeTools Outlook 2016 中的自定义控件功能区
Custom controls ribbon in TabComposeTools Outlook 2016
我尝试在 "reply inline" 模式下添加自定义控件。我在"Compose tools"TabMessage控件中添加控件没问题
我尝试将选项卡的IdMso设置为
TabMessage
TabNewMailMessage (this one work when i write a new email in a new popup)
TabComposeTools
这是行不通的。有什么建议吗?
要将自定义控件添加到新的 Inspector compose window,以下 ribbon.xml 将起作用。请注意此 xml 新 Inspector ...
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab idMso="TabNewMailMessage">
<group id ="myGroupForInspector" insertBeforeMso="GroupClipboard" getVisible="GetVisible" getLabel="GetLabel">
... controls are go here
</group>
</tab>
</tabs>
</ribbon>
</customUI>
要将自定义控件添加到 Explorer inline compose window,以下 ribbon.xml 将起作用。请注意此 xml 适用于资源管理器 window ...
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon>
<contextualTabs>
<tabSet idMso="TabComposeTools">
<tab idMso="TabMessage">
<group id ="myGroupForExplorer" insertBeforeMso="GroupClipboard" getVisible="GetVisible" getLabel="GetLabel">
... controls are go here
</group>
</tab>
</tabSet>
</contextualTabs>
</ribbon>
</customUI>
我尝试在 "reply inline" 模式下添加自定义控件。我在"Compose tools"TabMessage控件中添加控件没问题
我尝试将选项卡的IdMso设置为
TabMessage
TabNewMailMessage (this one work when i write a new email in a new popup)
TabComposeTools
这是行不通的。有什么建议吗?
要将自定义控件添加到新的 Inspector compose window,以下 ribbon.xml 将起作用。请注意此 xml 新 Inspector ...
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab idMso="TabNewMailMessage">
<group id ="myGroupForInspector" insertBeforeMso="GroupClipboard" getVisible="GetVisible" getLabel="GetLabel">
... controls are go here
</group>
</tab>
</tabs>
</ribbon>
</customUI>
要将自定义控件添加到 Explorer inline compose window,以下 ribbon.xml 将起作用。请注意此 xml 适用于资源管理器 window ...
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon>
<contextualTabs>
<tabSet idMso="TabComposeTools">
<tab idMso="TabMessage">
<group id ="myGroupForExplorer" insertBeforeMso="GroupClipboard" getVisible="GetVisible" getLabel="GetLabel">
... controls are go here
</group>
</tab>
</tabSet>
</contextualTabs>
</ribbon>
</customUI>