添加新的TabPage问题

时间:2011-05-08 16:36:34

标签: c# winforms tabpage

当双击MailList时,想法是打开包含主题,发件人和内容的电子邮件的新标签页。但它可以在第一次双击时打开。 :(

private void MailList_DoubleClick(object sender, EventArgs e)
{
    TabPage newtab = new TabPage();
    Mime m=EncodingMail(MailTree.SelectedNode.Text, MailList.FocusedItem.Text);

    newtab.Text = m.MainEntity.Subject;
    if (m.Attachments.Length == 0)   attachmentTabPages2.Visible=false;
    else
    {
        attachmentTabPages2.Visible = true;
        for (int j = 0; j < m.Attachments.Count(); j++)
        {
            ListViewItem item1 = new ListViewItem();
            item1.Text = m.Attachments[j].ContentDisposition_FileName;
            attachmentTabPages2.Items.Add(item1);
        }
    }
    //ListViewItem item = sender as ListViewItem;   
    webBrowser2.DocumentText = m.BodyHtml;
    FromTabPage2.Text="From: " + m.MainEntity.From.ToAddressListString();
    ToTabPages2.Text = "To: " + m.MainEntity.To.ToAddressListString();
    SubjectTabPage2.Text = "Subject: " + m.MainEntity.Subject;
    DateTimeTabPages2.Text = "Date: " + m.MainEntity.Date.ToShortDateString();
    foreach (Control control in tabPage2.Controls)
    {
        newtab.Controls.Add(control);
    }
    Acc1Tab.TabPages.Add(newtab);
    Acc1Tab.SelectedTab = newtab;
}

0 个答案:

没有答案
相关问题