コード例 #1
0
        // Withdraw money
        private void button2_Click(object sender, EventArgs e)
        {
            ChoseCurrency chosec = new ChoseCurrency();

            chosec.Show();
            this.Close();
        }
コード例 #2
0
        private void WithdrawConfirmation_Load(object sender, EventArgs e)
        {
            this.Location = new Point(0, 0);
            this.Size     = Screen.PrimaryScreen.WorkingArea.Size;
            Timer tm = new Timer();

            pictureBox1.Image = Properties.Resources.frame1;
            tm.Interval       = 25;
            tm.Tick          += new EventHandler(changeImage);
            tm.Start();
            ChoseAmmount  chm = new ChoseAmmount();
            ChoseCurrency cc  = new ChoseCurrency();

            chm.parsingNumber = button1.Text;
            textBox1.Text     = (string)Settings.Default["currencySign"];
        }