Office js Microsoft Outlook加载项中的自定义任务窗格标题

Office js Microsoft Outlook加载项中的自定义任务窗格标题,office-js,office-addins,outlook-web-addins,Office Js,Office Addins,Outlook Web Addins,我已经创建了Outlook加载项(在撰写电子邮件窗口中打开),并在manifest.xml中指定了displaName和iconUrl,如下所示: <DisplayName DefaultValue="My Office Addin" /> <IconUrl DefaultValue="https://localhost:3000/assets/sample.png" /> 它在下面的图像中反映图标和名称(1.选项菜单和2.侧窗格) 关于这一点,我有几个问题:

我已经创建了Outlook加载项(在撰写电子邮件窗口中打开),并在manifest.xml中指定了displaName和iconUrl,如下所示:

<DisplayName DefaultValue="My Office Addin" />
<IconUrl DefaultValue="https://localhost:3000/assets/sample.png" />

它在下面的图像中反映图标和名称(1.选项菜单和2.侧窗格)

关于这一点,我有几个问题:

1。是否有任何选项可以在侧窗格(第二幅图像)中禁用或隐藏此图标和标题?

2。是否有自定义侧窗格标题(第二幅图像)的选项,如在标题中设置背景图像或自定义字体?

在过去的几天里,我查阅了微软的文档,但没有找到解决方案。我是Microsoft加载项的新手。如果你对此有任何想法,请帮助我。 这是我的manifest.xml文件:

<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">
  <Id>1e4f9008-e850-4631-be7c-d36b05a23543</Id>
  <Version>1.0.0.0</Version>
  <ProviderName>My Office Addin</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="My Office Addin" />
  <Description DefaultValue="My Office Addin Description" />
  <IconUrl DefaultValue="https://localhost:3000/assets/sample.png" />
  <HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/sample.png" />
  <Hosts>
    <Host Name="Mailbox" />
  </Hosts>
  <Requirements>
    <Sets DefaultMinVersion="1.1">
      <Set Name="Mailbox" />
    </Sets>
  </Requirements>
  <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://localhost:3000/taskpane.html" />
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
      <TabletSettings>
        <!-- Change the following line to specify     -->
        <!-- the web server that hosts the HTML file. -->
        <SourceLocation DefaultValue=
          "https://localhost:3000/taskpane.html" />
        <RequestedHeight>216</RequestedHeight>
      </TabletSettings>
    </Form>
    <Form xsi:type="ItemEdit">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://localhost:3000/taskpane.html" />
      </DesktopSettings>
      <TabletSettings>
        <SourceLocation DefaultValue="https://localhost:3000/taskpane.html" />
      </TabletSettings>
    </Form>
  </FormSettings>
  <Permissions>ReadWriteItem</Permissions>
  <Rule xsi:type="RuleCollection" Mode="Or">
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Edit" />
  </Rule>
  <DisableEntityHighlighting>false</DisableEntityHighlighting>
</OfficeApp>

1e4f9008-e850-4631-be7c-d36b05a23543
1.0.0.0
我的办公室,艾丁
恩美
250
216
读写项目
假的
答案是“否”和“否”。你无能为力。此区域不可自定义,每个客户端(应用程序)都实现自己的方式来显示清单中的信息

例如,Outlook For Web将显示加载项的名称和提供的图标。。。

同时,Outlook Desktop for Windows将只显示加载项的名称。。。

目前,这些功能(自定义任务窗格标题和设置图标的可见性)不可用于加载项。我们跟踪Outlook加载项功能的请求 用户语音页面。请在那里添加您的请求。在我们进行规划过程时,会考虑用户语音的功能请求