我正在尝试向PowerPoint中的基本右键单击菜单添加新命令/标签(即右键单击幻灯片中的空白区域时出现的菜单)。我已经下载了办公室控件ID列表,但似乎无法确定哪个上下文菜单(idMso)用于基本的右键单击功能。
有谁知道我应该使用哪个id?同样,我想访问单击幻灯片空白部分时出现的基本右键单击菜单。
谢谢!
答案 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>