Ready event in Microsoft Outlook 2010?
问题 Is there an event in Microsoft Outlook 2010 which one can subscribe on, in order to known when Outlook has finished initializing and all components, folders etc. have been loaded? 回答1: Not sure about VSTO but good ol' COM addins get the StartupComplete "event" (via IDTExtensibility2 ) for exactly that purpose. 回答2: Ok, I found out what I needed to do... ... private void ThisAddInStartup(object sender, EventArgs e) { this.Application.Startup += ApplicationStartup; this.Application.ItemLoad +=