本文介绍了OWA移动版上的加载项未在撰写模式中显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿,我成功地在读取模式下在IOS上看到Outlook应用程序的Outlook加载项,我知道还没有支持撰写模式。

Hey , I success to see my outlook add-in on outlook application on IOS in read mode and I know not have support yet to compose mode.

在OWA中移动浏览器我成功地在读取模式下看到了我的加载项,但它没有在撰写模式中显示,我的意思是当我写一条消息时我没有看到加载项的图标!这是工作,直到我添加支持IOS通过将'< MobileFormFactor>'标记添加到
清单。

In OWA in mobile browsers I success to see the my add-in in read mode but it's not show on compose mode , I mean I don't see icon of add-in when I write a message  !It was work until I add support to IOS via adding '<MobileFormFactor>' tag to manifest.

所以在我的清单中我有这个:

So in my manifest I have this:

  <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue=""/>
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
        <PhoneSettings>
            <SourceLocation DefaultValue=""/>
        </PhoneSettings>
    </Form>
      
   <Form xsi:type="ItemEdit">
      <DesktopSettings>
        <SourceLocation DefaultValue=""/>
      </DesktopSettings>
       
        <PhoneSettings>
            <SourceLocation DefaultValue="l"/>
        </PhoneSettings>
    </Form>  
</FormSettings>




我还有 

   <!--IOS-->
          <MobileFormFactor>
            <ExtensionPoint xsi:type="MobileMessageReadCommandSurface">
              <Group id="mobileMsgRead">
                <Label resid="groupLabel" />
                <Control xsi:type="MobileButton" id="mblTaskPane">
                  <Label resid="paneReadButtonLabelIOS" />
                  <Icon xsi:type="bt:MobileIconList">
                    <bt:Image size="25" scale="1" resid="icon32" />
                    <bt:Image size="25" scale="2" resid="icon32" />
                    <bt:Image size="25" scale="3" resid="icon32" />

                    <bt:Image size="32" scale="1" resid="icon32" />
                    <bt:Image size="32" scale="2" resid="icon32" />
                    <bt:Image size="32" scale="3" resid="icon32" />

                    <bt:Image size="48" scale="1" resid="icon32" />
                    <bt:Image size="48" scale="2" resid="icon32" />
                    <bt:Image size="48" scale="3" resid="icon32" />
                  </Icon>
                  <Action xsi:type="ShowTaskpane">
                    <SourceLocation resid="readTaskPaneUrlIOS" />
                  </Action>
                </Control>
              </Group>
            </ExtensionPoint>
              
              
          </MobileFormFactor>

'< MobileFormFactor>'低于< b $ b

the '<MobileFormFactor>' is under 

 <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">

Thx everybody

Thx everybody

推荐答案


这篇关于OWA移动版上的加载项未在撰写模式中显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 03:10