获取Outlook的起始文件夹-VSTO

来源:互联网 发布:电商美工设计培训班 编辑:程序博客网 时间:2024/05/22 20:10

 实现环境:Visual Studio 2010 Uiltmate, Office 2010

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Linq;using Outlook = Microsoft.Office.Interop.Outlook;using Office = Microsoft.Office.Core;using System.Windows.Forms;namespace OutlookAddIn11{    public partial class ThisAddIn    {        private void ThisAddIn_Startup(object sender, System.EventArgs e)        {            Outlook.Explorer olExplorer = Application.ActiveExplorer();            Outlook.MAPIFolder olStartFolder = olExplorer.CurrentFolder;            MessageBox.Show(Application.Session.DefaultStore.DisplayName +"=>"+olStartFolder.Name);        }        private void ThisAddIn_Shutdown(object sender, System.EventArgs e)        {        }        #region VSTO generated code        /// <summary>        /// Required method for Designer support - do not modify        /// the contents of this method with the code editor.        /// </summary>        private void InternalStartup()        {            this.Startup += new System.EventHandler(ThisAddIn_Startup);            this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);        }                #endregion    }}