private void btn_email_Click(object sender, EventArgs e) { _126SMTP smtp; smtp = new _126SMTP(Info + " " + Classname.Text); smtp.ShowDialog(); }
//留言点击事件 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(); }
private void btn_email_Click(object sender, EventArgs e) { _126SMTP smtp; smtp = new _126SMTP(Info +" "+ Classname.Text); smtp.ShowDialog(); }
//留言点击事件 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(); }