示例#1
0
 //添加按钮
 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();
         }
     }
 }
示例#2
0
        //添加会员成功提示
        public static void OpenVipAddOk()
        {
            VIPAddOk frm = new VIPAddOk();

            frm.ShowDialog();
        }