Пример #1
0
 private void btn_msg_contacts_Click(object sender, EventArgs e)
 {
     ContactForm cf = new ContactForm();
     cf.ContactSelected += (Contact c) =>
     {
         textbox_mail_to.Text += c.Email + ";";
         receivers.Add(c);
         cf.Close();
     };
     cf.ShowDialog(this);
 }
Пример #2
0
        private void Contacts_Click(object sender, EventArgs e)
        {
            ContactForm c = new ContactForm();

            c.ShowDialog(this);
        }
Пример #3
0
 private void Contacts_Click(object sender, EventArgs e)
 {
     ContactForm c = new ContactForm();
     c.ShowDialog(this);
 }