首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >创建自定义选项卡

创建自定义选项卡
EN

Stack Overflow用户
提问于 2017-06-04 15:19:11
回答 1查看 1.5K关注 0票数 3

当我启动一个新的Excel外接程序时,默认情况下,该空白项目有一个声明带状文件的MyAppName.xml文件。声明在本机Home Excel选项卡下设置自定义组和自定义控件。

我需要的是为我的Addin创建一个单独的选项卡。在文件项目本身中,有以下代码行:

代码语言:javascript
复制
<!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. -->
<OfficeTab id="TabHome">

因此,我将OfficeTab更改为CustomTab,但现在我在错误列表中得到了消息:

代码语言:javascript
复制
The element 'CustomTab' in namespace 'http://schemas.microsoft.com/office/taskpaneappversionoverrides' has incomplete content. List of possible elements expected: 'Group, Label' in namespace 'http://schemas.microsoft.com/office/taskpaneappversionoverrides'.

你知道我如何创建一个自定义选项卡吗?我做错了什么?

我正在使用:MicrosoftVisualStudioEnterprise2017版本15.2 (26430.12)发布VisualStudio.15.Release.15.2.0+26430.12

谢谢。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-06-04 20:55:27

下面是一个使用CustomTab的示例清单。你能把你的例子和例子比较一下,看看有什么不同吗?您是否给了CustomTab一个唯一的ID?它有组和标签子元素吗?

代码语言:javascript
复制
<?xml version="1.0" encoding="utf-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">

<!-- See https://github.com/OfficeDev/Office-Add-in-Commands-Samples for documentation-->

<!-- BeginBasicSettings: Add-in metadata, used for all versions of Office unless override provided -->

<!--IMPORTANT! Id must be unique for your add-in. If you copy this manifest ensure that you change this id to your own GUID. -->
<Id>e504fb41-a92a-4526-b101-542f357b7acb</Id>
<Version>1.0.0.0</Version>
<ProviderName>Contoso</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<!-- The display name of your add-in. Used on the store and various placed of the Office UI such as the add-ins dialog -->
<DisplayName DefaultValue="Add-in Commands Sample" />
<Description DefaultValue="Sample that illustrates add-in commands basic control types and actions" />
<!--Icon for your add-in. Used on installation screens and the add-ins dialog -->
<IconUrl DefaultValue="https://contoso.com/assets/icon-32.png" />
<HighResolutionIconUrl DefaultValue="https://contoso.com/assets/hi-res-icon.png" />
<SupportUrl DefaultValue="[Insert the URL of a page that provides support information for the app]" />
<!--BeginTaskpaneMode integration. Office 2013 and any client that doesn't understand commands will use this section.
  This section will also be used if there are no VersionOverrides -->
<Hosts>
  <Host Name="Document"/>
</Hosts>
<DefaultSettings>
  <SourceLocation DefaultValue="https://commandsimple.azurewebsites.net/Taskpane.html" />
</DefaultSettings>
<!--EndTaskpaneMode integration -->

<Permissions>ReadWriteDocument</Permissions>

<!--BeginAddinCommandsMode integration-->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
  <Hosts>
    <!--Each host can have a different set of commands. Cool huh!? -->
    <!-- Workbook=Excel Document=Word Presentation=PowerPoint -->
    <!-- Make sure the hosts you override match the hosts declared in the top section of the manifest -->
    <Host xsi:type="Document">
      <!-- Form factor. Currently only DesktopFormFactor is supported. We will add TabletFormFactor and PhoneFormFactor in the future-->
      <DesktopFormFactor>
        <!--Function file is an html page that includes the javascript where functions for ExecuteAction will be called.
        Think of the FunctionFile as the "code behind" ExecuteFunction-->
        <FunctionFile resid="Contoso.FunctionFile.Url" />

        <!--PrimaryCommandSurface==Main Office app ribbon-->
        <ExtensionPoint xsi:type="PrimaryCommandSurface">
          <!--Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab -->
          <!-- Documentation includes all the IDs currently tested to work -->
          <CustomTab id="Contoso.Tab1">
            <!--Group ID-->
            <Group id="Contoso.Tab1.Group1">
              <!--Label for your group. resid must point to a ShortString resource -->
              <Label resid="Contoso.Tab1.GroupLabel" />
              <Icon>
              <!-- Sample Todo: Each size needs its own icon resource or it will look distorted when resized -->
                <!--Icons. Required sizes: 16, 32, 80; optional: 20, 24, 40, 48, 64. You should provide as many sizes as possible for a great user experience. -->
                <!--Use PNG icons and remember that all URLs on the resources section must use HTTPS -->
                <bt:Image size="16" resid="Contoso.TaskpaneButton.Icon16" />
                <bt:Image size="32" resid="Contoso.TaskpaneButton.Icon32" />
                <bt:Image size="80" resid="Contoso.TaskpaneButton.Icon80" />
              </Icon>

              <!--Control. It can be of type "Button" or "Menu" -->
              <Control xsi:type="Button" id="Contoso.FunctionButton">
                <!--Label for your button. resid must point to a ShortString resource -->
                <Label resid="Contoso.FunctionButton.Label" />
                <Supertip>
                  <!--ToolTip title. resid must point to a ShortString resource -->
                  <Title resid="Contoso.FunctionButton.Label" />
                  <!--ToolTip description. resid must point to a LongString resource -->
                  <Description resid="Contoso.FunctionButton.Tooltip" />
                </Supertip>
                <Icon>
                  <bt:Image size="16" resid="Contoso.FunctionButton.Icon16" />
                  <bt:Image size="32" resid="Contoso.FunctionButton.Icon32" />
                  <bt:Image size="80" resid="Contoso.FunctionButton.Icon80" />
                </Icon>
                <!--This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane-->
                <!--Look at the FunctionFile.html page for reference on how to implement the function -->
                <Action xsi:type="ExecuteFunction">
                  <!--Name of the function to call. This function needs to exist in the global DOM namespace of the function file-->
                  <FunctionName>writeText</FunctionName>
                </Action>
              </Control>

              <Control xsi:type="Button" id="Contoso.TaskpaneButton">
                <Label resid="Contoso.TaskpaneButton.Label" />
                <Supertip>
                  <Title resid="Contoso.TaskpaneButton.Label" />
                  <Description resid="Contoso.TaskpaneButton.Tooltip" />
                </Supertip>
                <Icon>
                  <bt:Image size="16" resid="Contoso.TaskpaneButton.Icon16" />
                  <bt:Image size="32" resid="Contoso.TaskpaneButton.Icon32" />
                  <bt:Image size="80" resid="Contoso.TaskpaneButton.Icon80" />
                </Icon>
                <Action xsi:type="ShowTaskpane">
                  <TaskpaneId>Button2Id1</TaskpaneId>
                  <!--Provide a url resource id for the location that will be displayed on the task pane -->
                  <SourceLocation resid="Contoso.Taskpane1.Url" />
                </Action>
              </Control>
              <!-- Menu example -->
              <Control xsi:type="Menu" id="Contoso.Menu">
                <Label resid="Contoso.Dropdown.Label" />
                <Supertip>
                  <Title resid="Contoso.Dropdown.Label" />
                  <Description resid="Contoso.Dropdown.Tooltip" />
                </Supertip>
                <Icon>
                  <bt:Image size="16" resid="Contoso.TaskpaneButton.Icon16" />
                  <bt:Image size="32" resid="Contoso.TaskpaneButton.Icon32" />
                  <bt:Image size="80" resid="Contoso.TaskpaneButton.Icon80" />
                </Icon>
                <Items>
                  <Item id="Contoso.Menu.Item1">
                    <Label resid="Contoso.Item1.Label"/>
                    <Supertip>
                      <Title resid="Contoso.Item1.Label" />
                      <Description resid="Contoso.Item1.Tooltip" />
                    </Supertip>
                    <Icon>
                      <bt:Image size="16" resid="Contoso.TaskpaneButton.Icon16" />
                      <bt:Image size="32" resid="Contoso.TaskpaneButton.Icon32" />
                      <bt:Image size="80" resid="Contoso.TaskpaneButton.Icon80" />
                    </Icon>
                    <Action xsi:type="ShowTaskpane">
                      <TaskpaneId>MyTaskPaneID1</TaskpaneId>
                      <SourceLocation resid="Contoso.Taskpane1.Url" />
                    </Action>
                  </Item>

                  <Item id="Contoso.Menu.Item2">
                    <Label resid="Contoso.Item2.Label"/>
                    <Supertip>
                      <Title resid="Contoso.Item2.Label" />
                      <Description resid="Contoso.Item2.Tooltip" />
                    </Supertip>
                    <Icon>
                      <bt:Image size="16" resid="Contoso.TaskpaneButton.Icon16" />
                      <bt:Image size="32" resid="Contoso.TaskpaneButton.Icon32" />
                      <bt:Image size="80" resid="Contoso.TaskpaneButton.Icon80" />
                    </Icon>
                    <Action xsi:type="ShowTaskpane">
                      <TaskpaneId>MyTaskPaneID2</TaskpaneId>
                      <SourceLocation resid="Contoso.Taskpane2.Url" />
                    </Action>
                  </Item>

                </Items>
              </Control>

            </Group>

            <!-- Label of your tab -->
            <!-- If validating with XSD it needs to be at the end -->
            <Label resid="Contoso.Tab1.TabLabel" />
          </CustomTab>
        </ExtensionPoint>
      </DesktopFormFactor>
    </Host>
  </Hosts>
  <Resources>
    <bt:Images>
      <bt:Image id="Contoso.TaskpaneButton.Icon16" DefaultValue="https://myCDN/Images/Button16x16.png" />
      <bt:Image id="Contoso.TaskpaneButton.Icon32" DefaultValue="https://myCDN/Images/Button32x32.png" />
      <bt:Image id="Contoso.TaskpaneButton.Icon80" DefaultValue="https://myCDN/Images/Button80x80.png" />
      <bt:Image id="Contoso.FunctionButton.Icon" DefaultValue="https://myCDN/Images/ButtonFunction.png" />
    </bt:Images>
    <bt:Urls>
      <bt:Url id="Contoso.FunctionFile.Url" DefaultValue="https://commandsimple.azurewebsites.net/FunctionFile.html" />
      <bt:Url id="Contoso.Taskpane1.Url" DefaultValue="https://commandsimple.azurewebsites.net/Taskpane.html" />
      <bt:Url id="Contoso.Taskpane2.Url" DefaultValue="https://commandsimple.azurewebsites.net/Taskpane2.html" />
    </bt:Urls>
    <bt:ShortStrings>
      <bt:String id="Contoso.FunctionButton.Label" DefaultValue="Execute Function" />
      <bt:String id="Contoso.TaskpaneButton.Label" DefaultValue="Show Taskpane" />
      <bt:String id="Contoso.Dropdown.Label" DefaultValue="Dropdown" />
      <bt:String id="Contoso.Item1.Label" DefaultValue="Show Taskpane 1" />
      <bt:String id="Contoso.Item2.Label" DefaultValue="Show Taskpane 2" />
      <bt:String id="Contoso.Tab1.GroupLabel" DefaultValue="Test Group" />
       <bt:String id="Contoso.Tab1.TabLabel" DefaultValue="Test Tab" />
    </bt:ShortStrings>
    <bt:LongStrings>
      <bt:String id="Contoso.FunctionButton.Tooltip" DefaultValue="Click to Execute Function" />
      <bt:String id="Contoso.TaskpaneButton.Tooltip" DefaultValue="Click to Show a Taskpane" />
      <bt:String id="Contoso.Dropdown.Tooltip" DefaultValue="Click to Show Options on this Menu" />
      <bt:String id="Contoso.Item1.Tooltip" DefaultValue="Click to Show Taskpane1" />
      <bt:String id="Contoso.Item2.Tooltip" DefaultValue="Click to Show Taskpane2" />
    </bt:LongStrings>
  </Resources>
</VersionOverrides>
</OfficeApp>

还请参阅此文章及其链接到的示例。也可以看看验证清单并排除故障

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/44355620

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档