基本信息
源码名称:停车管理项目源码(含数据库)
源码大小:0.36M
文件格式:.zip
开发语言:C#
更新时间:2020-04-02
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 1 元 
   源码介绍

停车费用设置, 管理密码修改,充值,注销,查询,入库出库,开户等

MN停车场管理系统

源码描述:
一、源码介绍
        便于停车场对车辆进行管理,本系统主要包括,会员注册,车辆出入库管理,会员查询等,采用序列化方式无需数据库。
二、注意事项
        1、开发环境为Visual Studio 2012,无数据库,使用.net 3.5开发。

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 停车场项目
{
    public partial class Homepage : Form
    {
        public Homepage()
        {
            InitializeComponent();
        }

        private void toolStripButton9_Click(object sender, EventArgs e)
        {
            DialogResult aa = MessageBox.Show("确认退出系统?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
            if (aa == DialogResult.Yes)
            {
                Dispose();
            }

        }

        private void toolStripButton2_Click(object sender, EventArgs e)
        {
            UpadtePrice aa = new UpadtePrice();
            aa.ShowDialog();
        }

        private void toolStripButton8_Click(object sender, EventArgs e)
        {
            Form10 aa = new Form10();
            aa.ShowDialog();
        }

        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            UpdatePassword aa = new UpdatePassword();
            aa.ShowDialog();
        }

        private void toolStripButton3_Click(object sender, EventArgs e)
        {
            Form5 aa = new Form5();
            aa.ShowDialog();
        }

        private void toolStripButton4_Click(object sender, EventArgs e)
        {
            Payment aa = new Payment();
            aa.ShowDialog();
        }

        private void toolStripButton5_Click(object sender, EventArgs e)
        {
            Form7 aa = new Form7();
            aa.ShowDialog();
        }

        private void toolStripButton6_Click(object sender, EventArgs e)
        {
            Inquire aa = new Inquire();
            aa.ShowDialog();
        }

        private void toolStripButton7_Click(object sender, EventArgs e)
        {
            Form9 aa = new Form9();
            aa.ShowDialog();
        }



        private void timer1_Tick(object sender, EventArgs e)
        {
            Magager.OnLoad();
        }
    }
}