我使用以下代码从 DataGridView 读取电子邮件地址, 然后创建 Outlook 电子邮件。 这非常有效, 除了新电子邮件被设置为顶部和/或打开为对话框窗口, 意思是当新电子邮件窗口打开时, 我无法点击 Outlook 或做其他任何工作 。 如果我打开了我的新电子邮件, 我正试图搜索或查看我的收件箱中的东西, 这有问题 。 另外, 在我关闭或发送电子邮件之前, 我的应用程序不会回复( 被锁定 ) 。
是否有办法创建新的电子邮件, 并且仍然允许正常功能? 如果我点击 Outlook 本身的新电子邮件按钮, 我就可以有尽可能多的这些打开, 使用搜索等 。
this.TopMost=假
行是为了隐藏我的 WinForms 应用程序并在前面显示新的电子邮件窗口 。
try
{
string emailString = resultsGrid[resultsGrid.Columns["Email"].Index, resultsGrid.SelectedCells[resultsGrid.Columns["Email"].Index].RowIndex].Value.ToString();
if(emailString.Contains("mailto:"))
{
emailString = emailString.Replace("mailto:", "");
}
this.TopMost = false;
// Create the Outlook application by using inline initialization.
Outlook.Application oApp = new Outlook.Application();
//Create the new message by using the simplest approach.
Outlook.MailItem oMsg = (Outlook.MailItem)oApp.CreateItem(Outlook.OlItemType.olMailItem);
oMsg.Subject = "";
oMsg.To = emailString;
oMsg.Body = "";
oMsg.Display(true);
oMsg = null;
oApp = null;
}
catch (Exception ex)
{
MessageBox.Show(string.Format("An error occurred: {0}", ex.Message));
}
同样奇怪的是,如果我在电子邮件中写一些东西并关闭它, 我可以保存它。 如果我这样做, 当我打开电子邮件后, 它返回到它的锁定状态。 我开始觉得这与电子邮件是如何创建的有关, 所以某些设置或属性正在被应用并保存 。