彩票走势图

Add-in Express实现Outlook 2013中的新功能:内联响应

原创|其它|编辑:郝浩|2012-10-23 09:45:22.000|阅读 519 次

概述:OFFICE 2013近日发布,在其中的Outlook 2013中推出了一种我们称为内联响应(inline response)的新功能。Add-in Express for Microsoft Office and .net可以实现这一功能。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

  OFFICE 2013近日发布,在其中的Outlook 2013中推出了一种我们称为内联响应(inline response)的新功能。它是指,当您点击Outlook 2013功能区上的某些按钮时,不弹出新的窗口,直接在阅读窗格中响应该按钮对应的指令。

  例如,点击Outlook中的答复按钮时,在2010及其以前版本中,将会弹出邮件编辑窗口,这种过多运用弹窗的解决方案,明显不适合WIN8的METRO设计准则,也不适用于跨设备的应用程序。Outlook 2013则直接在阅读窗格中,将回复邮件转化为可编辑状态,如下图所示:


  要如何实现这一跨设备应用程序应该拥有的新功能呢?使用Add-in Express for Microsoft Office and .net 中Context.TabComposeTools便可以完成。以下为示例代码:

private void DisplayInlineResponseSubject(Outlook._Application OutlookApp) 
{ 
    Outlook.Explorer explorer = null; 
    Outlook.MailItem response = null; 
    try 
    { 
        explorer = OutlookApp.ActiveExplorer(); 
        // response = explorer.ActiveInlineResponse; 
        response = explorer.GetType().InvokeMember("ActiveInlineResponse", 
                             System.Reflection.BindingFlags.GetProperty | 
                             System.Reflection.BindingFlags.Instance | 
                             System.Reflection.BindingFlags.Public, 
                             null, explorer, null) as Outlook.MailItem; 
        if (response != null) 
            System.Windows.Forms.MessageBox.Show(response.Subject, 
                            "The inline response e-mail's subject"); 
    } 
    catch (Exception ex) 
    { 
        System.Windows.Forms.MessageBox.Show(ex.Message, 
               "An exception was thrown in the code..."); 
    } 
    finally 
    { 
        if (response != null) Marshal.ReleaseComObject(response); 
        if (explorer != null) Marshal.ReleaseComObject(explorer); 
    } 
} 

  完成效果如下图:



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP