0

我正在尝试将按钮添加到 page.Tried 位置为 Ribbon.PublishTab.Publishing。

但按钮不显示。需要一些帮助。

谢谢拉玛

4

1 回答 1

0

这取决于它是 wiki 页面还是 webpart 页面,以及哪个选项卡和组。以下是将功能区添加到 Wiki 页面/共享选项卡和 Web 部件页面/共享选项卡的示例

下面是元素代码:

<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <CustomAction Id="COB.SharePoint.Ribbon.NewControlInExistingGroup"
    Location="CommandUI.Ribbon" Sequence="20">
    <CommandUIExtension>
      <CommandUIDefinitions>
        <CommandUIDefinition Location="Ribbon.WikiPageTab.Share.Controls._children">
          <Button .......... />
        </CommandUIDefinition>
        <CommandUIDefinition Location="Ribbon.WebPartPage.Share.Controls._children">
          <Button .......... />
        </CommandUIDefinition>

对于其他位置,您可以参考 C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\GLOBAL\XML 中的 CMDUI.XML

看看我每次在定制色带上工作时都会参考的文章。

http://www.sharepointnutsandbolts.com/2010/02/customize-ribbon-programmatically-from.html

于 2013-03-14T06:50:55.397 回答