//添加按钮 private void botYes_Click(object sender, EventArgs e) { if (CheckInout()) { if (CheckPhone()) { VIPCardAdd(); VIPAddOk frm = new VIPAddOk(); frm.id = this.textPhone.Text; frm.ShowDialog(); this.Close(); } } }
//添加会员成功提示 public static void OpenVipAddOk() { VIPAddOk frm = new VIPAddOk(); frm.ShowDialog(); }