2016-11-16 95 views
0

試圖創建一個Outlook插件,在下面的所有從下面的鏈接準則。出於某種原因,我無法顯示爲上下文的..Outlook插件不顯示爲背景的桌面客戶端

https://dev.office.com/docs/add-ins/outlook/contextual-outlook-add-ins

對於OWA它顯示爲正上方的郵件。但在桌面其移動到命令欄。請​​知情同意下面..

Addin Image showing up in top menu

請參閱顯示命令欄上了樣品的小工具,我接下來想展現給行動項目..

下面請找出清單文件..

<?xml version="1.0" encoding="UTF-8"?> 
<!--Created:ce44715c-8c4e-446b-879c-ea9ebe0f09c8--> 
<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:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" 
xsi:type="MailApp"> 

    <!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. --> 

    <!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. --> 
    <Id>9f5d8dee-c003-45f9-9da8-07e26dde8dd1</Id> 

    <!--Version. Updates from the store only get triggered if there is a version change. --> 
    <Version>1.0.0.0</Version> 
    <ProviderName>Test</ProviderName> 
    <DefaultLocale>en-US</DefaultLocale> 
    <!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. --> 
    <DisplayName DefaultValue="Sample" /> 
    <Description DefaultValue="Sample Tool"/> 


    <!-- Domains that will be allowed when navigating. For example, if you use ShowTaskpane and then have an href link, navigation will only be allowed if the domain is on this list. --> 
    <AppDomains> 
    <AppDomain>https://xxxx.azurewebsites.net</AppDomain> 
    <AppDomain>AppDomain2</AppDomain> 
    <AppDomain>AppDomain3</AppDomain> 
    </AppDomains> 
    <!--End Basic Settings. --> 

    <Hosts> 
    <Host Name="Mailbox" /> 
    </Hosts> 
    <Requirements> 
    <Sets> 
     <Set Name="Mailbox" MinVersion="1.1" /> 
    </Sets> 
    </Requirements> 
    <FormSettings> 
    <Form xsi:type="ItemRead"> 
     <DesktopSettings> 
     <SourceLocation DefaultValue="https://xxxx.azurewebsites.net/MessageRead.html"/> 
     <RequestedHeight>225</RequestedHeight> 
     </DesktopSettings> 
    </Form> 
    </FormSettings> 

    <Permissions>ReadWriteItem</Permissions> 
    <Rule xsi:type="RuleCollection" Mode="And"> 
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" /> 
    <Rule xsi:type="ItemHasKnownEntity" EntityType="TaskSuggestion" /> 
    </Rule> 
    <DisableEntityHighlighting>true</DisableEntityHighlighting> 

    <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0"> 
    <Requirements> 
     <bt:Sets DefaultMinVersion="1.3"> 
     <bt:Set Name="Mailbox" /> 
     </bt:Sets> 
    </Requirements> 
    <Hosts> 
     <Host xsi:type="MailHost"> 

     <DesktopFormFactor> 
      <!-- Location of the Functions that UI-less buttons can trigger (ExecuteFunction Actions). --> 
      <FunctionFile resid="functionFile" /> 

      <!-- Message Read --> 
      <ExtensionPoint xsi:type="MessageReadCommandSurface"> 
      <!-- Use the default tab of the ExtensionPoint or create your own with <CustomTab id="myTab"> --> 
      <OfficeTab id="TabDefault"> 
       <!-- Up to 6 Groups added per Tab --> 
       <Group id="msgReadGroup"> 
       <Label resid="groupLabel" /> 
       <!-- Launch the add-in : task pane button --> 
       <Control xsi:type="Button" id="msgReadOpenPaneButton"> 
        <Label resid="paneReadButtonLabel" /> 
        <Supertip> 
        <Title resid="paneReadSuperTipTitle" /> 
        <Description resid="paneReadSuperTipDescription" /> 
        </Supertip> 
        <Icon> 
        <bt:Image size="16" resid="icon16" /> 
        <bt:Image size="32" resid="icon32" /> 
        <bt:Image size="80" resid="icon80" /> 
        </Icon> 
        <Action xsi:type="ShowTaskpane"> 
        <SourceLocation resid="messageReadTaskPaneUrl" /> 
        </Action> 
       </Control> 
       <!-- Go to http://aka.ms/ButtonCommands to learn how to add more Controls: ExecuteFunction and Menu --> 
       </Group> 
      </OfficeTab> 
      </ExtensionPoint> 
      <!-- Go to http://aka.ms/ExtensionPointsCommands to learn how to add more Extension Points: MessageRead, AppointmentOrganizer, AppointmentAttendee --> 
     </DesktopFormFactor> 
     </Host> 
    </Hosts> 

    <Resources> 
     <bt:Images> 
     <bt:Image id="icon16" DefaultValue="~remoteAppUrl/Images/icon16.png"/> 
     <bt:Image id="icon32" DefaultValue="~remoteAppUrl/Images/icon32.png"/> 
     <bt:Image id="icon80" DefaultValue="~remoteAppUrl/Images/icon80.png"/> 
     </bt:Images> 
     <bt:Urls> 
     <bt:Url id="functionFile" DefaultValue="~remoteAppUrl/Functions/FunctionFile.html"/> 
     <bt:Url id="messageReadTaskPaneUrl" DefaultValue="~remoteAppUrl/MessageRead.html"/> 
     </bt:Urls> 
     <bt:ShortStrings> 
     <bt:String id="groupLabel" DefaultValue="My Add-in Group"/> 
     <bt:String id="customTabLabel" DefaultValue="My Add-in Tab"/> 
     <bt:String id="paneReadButtonLabel" DefaultValue="Display all properties"/> 
     <bt:String id="paneReadSuperTipTitle" DefaultValue="Get all properties"/> 
     </bt:ShortStrings> 
     <bt:LongStrings> 
     <bt:String id="paneReadSuperTipDescription" DefaultValue="Opens a pane displaying all available properties. This is an example of a button that opens a task pane."/> 
     </bt:LongStrings> 
    </Resources> 
    </VersionOverrides> 
</OfficeApp> 

感謝, Apratim

回答

0

終於解決了它自己,文檔需要爲SDK的新版本更新..

謝謝..

+0

請你提出你是怎麼修理它? –