using System.Windows.Forms;
namespace DragDropTest
{
public partial class Form1 : Form
{
//=========================================================================================
public Form1()
{
InitializeComponent();
}
//=========================================================================================
private void textBox1_DragOver(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent("RenPrivateMessages"))
e.Effect = DragDropEffects.Copy;
}
//=========================================================================================
private void textBox1_DragDrop(object sender, DragEventArgs e)
{
Outlook._Application app = new Outlook.Application();
Outlook.Selection item = app.ActiveExplorer().Selection;
for (int i = 1; i <= item.Count; i++)
{
Outlook.MailItem email = item.Item(1) as Outlook.MailItem;
string from = email.SenderName;
}
}
}
}