Form1.cs
上传用户:hesong1250
上传日期:2022-06-29
资源大小:105k
文件大小:1k
源码类别:

金融证券系统

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace 中国.建设银行
  9. {
  10.     public partial class Form1 : Form
  11.     {
  12.         //创建了一个帐户,然后把新帐户给左边专门存放 帐户一个容器,容器名 acc
  13.         Account acc = new Account();
  14.         public Form1()
  15.         {
  16.             InitializeComponent();
  17.         }
  18.         private void label1_Click(object sender, EventArgs e)
  19.         {
  20.         }
  21.         private void button1_Click(object sender, EventArgs e)
  22.         {
  23.             
  24.             //获取用户输入钱数
  25.             int quqianshu =int.Parse ( textBox1.Text);
  26.             //让叫acc的容器开始取钱,取钱时候括号里面告诉取多少钱,返回取钱结果给左边一个专门放真假结果的容器,容器名 isSuc
  27.             bool isSuc = acc.Deposit(quqianshu);
  28.             if (isSuc)
  29.             {
  30.                 MessageBox.Show("等待出钞……");
  31.                 //重新显示结果到一个叫label1的标签上
  32.                 label1.Text = "当前帐户余额为:" + acc.money;
  33.             }
  34.             else
  35.             {
  36.                 MessageBox.Show("余额不足");
  37.             }
  38.         }
  39.     }
  40. }