在字词

时间:2016-08-12 12:16:16

标签: c# .net ms-word ms-office add-in

如何在现有标签中创建新菜单,例如outlook按钮? (见图)。我尝试使用Ribbon XML加载项,并且只能在“ Maillings-ribbon ”中自定义新选项卡。

<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" loadImage="LoadImage" >
  <ribbon>
    <tabs>
      <tab idMso="TabMailings" >
        <group idMso="GroupMailMergeStart">
          <menu idMso="MailMergeSelectRecipients">
            <button id="button1"
               imageMso="HappyFace" 
               getDescription="GetDescription"
               label="My Button"
               onAction="OnAction" />
          </menu>
        </group>
      </tab>
    </tabs>
  </ribbon>
</customUI>

我找到了一个包含Office控件ID的列表(见图片)。我用XML多次尝试过。请参阅以下代码:

如果你能帮助我会很棒......

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

无法在现有标签中创建新菜单。您可以使用菜单创建新选项卡。