Outlook 2010加载项 - 如何确定“阅读窗格”中显示的MailItem

时间:2018-02-21 13:55:14

标签: c# outlook-addin outlook-2010

我正在尝试为Outlook 2010编写一个插件,用于将电子邮件从我的收件箱移动到各种存档文件夹(基于一组过滤条件。

我的主要目标是让我的所有新电子邮件到达我的收件箱,只有在标记为已读并且不再显示在“阅读窗格”中时才会移动。

在“阅读窗格”中显示新邮件项目时是否有事件处理程序?

其中一个接口可以提供帮助:

Microsoft.Office.Interop.Outlook.Items
Microsoft.Office.Interop.Outlook.Explorers
Microsoft.Office.Interop.Outlook.Inspectors
Outlook.NavigationPane

2 个答案:

答案 0 :(得分:0)

您可以使用Explorer.SelectionChange事件查看选择特定邮件的时间(并取消选择旧邮件)。

答案 1 :(得分:0)

我使用了Explorer.SelectionChange事件并且它完成了诀窍。以下是选择新项目时打印电子邮件主题的代码。

    Outlook.Explorer explorer;

    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    {
        explorer = Application.ActiveExplorer();

        explorer.SelectionChange += new Outlook.ExplorerEvents_10_SelectionChangeEventHandler(explorer_SelectionChange);
    }

    void explorer_SelectionChange()
    {
        if(0 == Application.ActiveExplorer().Selection.Count)
        {
            // On start up there are no selections so do nothing...
            return;
        }

        // Get the first mail item
        var item = Application.ActiveExplorer().Selection[1];

        //
        if (item is Outlook.MailItem)
        {
            MessageBox.Show("Selected email's subject: " + ((Outlook.MailItem)item).Subject);
        }
    }