コード例 #1
0
        private void withdraw_Click(object sender, EventArgs e)
        {
            Withdraw wd = new Withdraw(myATM);

            wd.Show();
            this.Close();
        }
コード例 #2
0
ファイル: MainFrame2.cs プロジェクト: banqunwei/Atm
        private void button2_Click(object sender, EventArgs e)
        {
            Withdraw wd = new Withdraw(a1.Username.ToString(), a1.Accid, this);

            wd.Show();
            this.Hide();
        }
コード例 #3
0
        private void button2_Click(object sender, EventArgs e)
        {
            Withdraw W = new Withdraw();

            this.Hide();
            W.Show();
        }
コード例 #4
0
        private void button1_Click(object sender, EventArgs e)
        {
            Withdraw w = new Withdraw(Name1, Bal, BankAC, BankName, Pin);

            w.MdiParent = this.MdiParent;
            this.Close();
            w.Show();
        }
コード例 #5
0
        private void btnwithdraw_Click(object sender, EventArgs e)
        {
            Withdraw wd = new Withdraw();

            wd.Show();
        }
コード例 #6
0
        private void btnwith_Click(object sender, EventArgs e)
        {
            Withdraw fm = new Withdraw();

            fm.Show();
        }