自定义PowerPoint中的右键菜单

时间:2017-08-03 05:30:53

标签: xml vsto contextmenu powerpoint powerpoint-vba

我正在尝试向PowerPoint中的基本右键单击菜单添加新命令/标签(即右键单击幻灯片中的空白区域时出现的菜单)。我已经下载了办公室控件ID列表,但似乎无法确定哪个上下文菜单(idMso)用于基本的右键单击功能。

有谁知道我应该使用哪个id?同样,我想访问单击幻灯片空白部分时出现的基本右键单击菜单。

谢谢!

1 个答案:

答案 0 :(得分:1)

使用ContextMenuFrame作为idMso

<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<contextMenus>
<contextMenu idMso="ContextMenuFrame"> 
<button id="idCustomItem" label="My custom menu item" onAction="CustomHandler" /> 
</contextMenu></contextMenus></customUI>