Esempio n. 1
0
        private void btn_email_Click(object sender, EventArgs e)
        {
            _126SMTP smtp;

            smtp = new _126SMTP(Info + " " + Classname.Text);
            smtp.ShowDialog();
        }
Esempio n. 2
0
        //留言点击事件
        public void Contact_Click(object sender, EventArgs e)
        {
            _126SMTP smtp;

            if (user != null)
            {
                smtp = new _126SMTP(user.Userid + user.Username);
            }
            else
            {
                smtp = new _126SMTP();
            }
            smtp.ShowDialog();
        }
Esempio n. 3
0
 private void btn_email_Click(object sender, EventArgs e)
 {
     _126SMTP smtp;
     smtp = new _126SMTP(Info +" "+ Classname.Text);
     smtp.ShowDialog();
 }
Esempio n. 4
0
 //留言点击事件
 public void Contact_Click(object sender, EventArgs e)
 {
     _126SMTP smtp;
     if (user != null)
         smtp = new _126SMTP(user.Userid + user.Username);
     else
         smtp = new _126SMTP();
     smtp.ShowDialog();
 }