1

有没有办法以编程方式显示/隐藏 Outlook 中的 FROM 字段?

我想这样做的原因是因为到目前为止我编写的一些代码成功地设置了 FROM 字段。

但是,在第一次运行后,设置了 FROM 字段,但 UI 并未反映此更改。

隐藏然后重新显示 FROM 字段会强制 UI 更新。理想情况下,我想在 2007 年和 2010 年找到一种方法来做到这一点。

如果无法以编程方式隐藏和重新显示 FROM 字段,是否还有其他方法可以强制 UI 刷新?

//Get the explorer window and the currently selected item
Explorer activeExplorer = this.Application.ActiveExplorer();
MailItem origMsg = activeExplorer.Selection[1];

Recipients origRecipients = origMsg.Recipients;

if (origRecipients.Count == 1)
{
    AddressEntry address = origRecipients[1].AddressEntry;
    currentMsg.Sender = address;

    //currentMsg.SentOnBehalfOfName = origRecipients[1].Name; currentMsg.send
}    
4

0 回答 0