Outlook 2010 用代码在Outlook explorer中选中一个邮件

来源:互联网 发布:网络系统集成的概念 编辑:程序博客网 时间:2024/05/22 03:28

这个代码只能在Outlook 2010中使用

using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Office.Tools.Ribbon;using Outlook = Microsoft.Office.Interop.Outlook;using System.Windows.Forms;namespace OutlookAddIn18{    public partial class Ribbon1    {        private void Ribbon1_Load(object sender, RibbonUIEventArgs e)        {        }        private void button1_Click(object sender, RibbonControlEventArgs e)        {            Outlook.Application app = Globals.ThisAddIn.Application;            Outlook.Explorer exp = app.ActiveExplorer();            Outlook.MailItem item = app.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox).Items[3];            exp.ClearSelection();            exp.AddToSelection(item);        }    }}


 

原创粉丝点击