ATM

来源:互联网 发布:nativeshare.js vue 编辑:程序博客网 时间:2024/04/28 03:09


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ATM
{
    public partial class ATMguanli : Form
    {
        public ATMguanli()
        {
            InitializeComponent();
        }

        private void ATMguanli_Load(object sender, EventArgs e)
        {

        }

        private void toolStripButton2_Click(object sender, EventArgs e)
        {
            kaihu stu = new kaihu();
            stu.Show();

        }
    }
}

0 0