Я создал надстройку для Outlook (которая открывается в окне создания электронной почты) и указал displaName и iconUrl в манифесте. xml как показано ниже:
<DisplayName DefaultValue="My Office Addin" />
<IconUrl DefaultValue="https://localhost:3000/assets/sample.png" />
, которая отражает значок и имя на изображениях ниже ( 1. OptionMenu и 2. Sidepane).
У меня есть несколько вопросов по этому поводу:
1. Можно ли отключить или скрыть этот значок и заголовок на боковой панели (2-е изображение)?
2. Можно ли настроить заголовок боковой панели (2-е изображение), например, установить фоновое изображение или собственный шрифт в заголовке?
За последние несколько дней я просмотрел документацию по Microsoft, но не нашел решения. Я новичок в надстройках Microsoft. Пожалуйста, помогите мне, если у вас есть идеи по этому поводу. Вот мой манифест. 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>