0
如何從我打開的Outlook窗口中獲取窗口句柄(IntPtr)?窗口打開事件和窗口句柄
OutLook.Items items = oFolder.Items;
foreach (OutLook.MailItem mail in items)
{
mail.Display();
//IntPtr a = (System.IntPtr)mail.GetInspector.Parent;
我是C sharp的新手。