我正在尝试添加按钮到page.Tried位置为Ribbon.PublishTab.Publishing。
但是按钮没有显示。需要一些帮助。
由于 拉马
答案 0 :(得分: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