• 大小: 48KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-10
  • 语言: C#
  • 标签: 停车系统  

资源简介

对进入停车场的汽车进行车位安排和计时计费

资源截图

代码片段和文件信息

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;
using System.IO;

namespace 停车场收费系统
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public string [] id;
        string path = @“c:\information.txt“;
        public int count = 0;
        public  DateTime  parttime ;       

        

        private void Form1_Load(object sender EventArgs e)
        {
            id=new string[100];
            for (int i = 0; i < id.Length; i++)
            {
                id[i] = “0“;
            }
            tbxMAX.Text =Convert.ToString( id.Length);
            tbxpart.Text =Convert.ToString(id.Length );
            tbxcountpart.Text =id[0];
            tbxID.Text =“0“;
            tbxcountpart.Enabled = false;
        }

        private void btnpart_Click(object sender EventArgs e)
        {
            tbxcountpart.Enabled = true;
            parttime = DateTime.Now;
            for (int i = 0; i < id.Length; i++)
            {
                if (id[i] == “0“)
                {
                    id[i] = “1“;
                    listBox1.Items.Add((i+1).ToString() + “开始停车时间:“ + parttime.ToString());
                    tbxID.Text = (1+i).ToString();
                    ++count;
                    tbxcountpart.Text = count.ToString();
                    tbxCOUNT.Text = “0.0“;
                    tbxpart.Text = Convert.ToString(int.Parse(tbxMAX.Text) - int.Parse(tbxcountpart.Text));
                    break;
                }
            }
            FileStream f = new FileStream(path FileMode.Append FileAccess.Write);
            BinaryWriter swrite = new BinaryWriter(f);
            swrite.Write(tbxID.Text);
            swrite.Write(parttime.ToString());
            swrite.Close();
            f.Close();         
                
            
        }

        private void btncount_Click(object sender EventArgs e)
        {
            if (tbxpartID != null)
            {
               
                FileStream f = new FileStream(path FileMode.Open FileAccess.Read);
                BinaryReader sread = new BinaryReader(f);
                DateTime overtime = DateTime.Now;
                double money = 0.0;
                f.Position = 0;
                while (f.Position != -1)
                {
                    string IDD = sread.ReadString();
                    DateTime starttime =Convert.ToDateTime(sread.ReadString());
                    if (IDD == tbxpartID.Text)
                    {
                        TimeSpan time = overtime - starttime;
                        if (timecount(time) < 1.0)
                            money = 5;
                        else
                            money = timecount(time) * 5;           

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5612  2010-11-28 22:37  停车场收费系统\停车场收费系统\Properties\Resources.resx

     文件        249  2010-11-28 22:37  停车场收费系统\停车场收费系统\Properties\Settings.settings

     文件       1398  2010-11-28 22:37  停车场收费系统\停车场收费系统\Properties\AssemblyInfo.cs

     文件       2892  2010-11-28 22:37  停车场收费系统\停车场收费系统\Properties\Resources.Designer.cs

     文件       1106  2010-11-28 22:37  停车场收费系统\停车场收费系统\Properties\Settings.Designer.cs

     文件       3864  2010-11-29 18:50  停车场收费系统\停车场收费系统\停车场收费系统.csproj

     文件        490  2007-07-21 01:33  停车场收费系统\停车场收费系统\bin\Debug\停车场收费系统.vshost.exe.manifest

     文件      14328  2010-12-01 21:37  停车场收费系统\停车场收费系统\bin\Debug\停车场收费系统.vshost.exe

     文件      14848  2010-12-01 21:19  停车场收费系统\停车场收费系统\bin\Debug\停车场收费系统.exe

     文件      32256  2010-12-01 21:19  停车场收费系统\停车场收费系统\bin\Debug\停车场收费系统.pdb

     文件        180  2010-12-01 13:48  停车场收费系统\停车场收费系统\obj\Debug\停车场收费系统.Form1.resources

     文件        180  2010-11-29 18:50  停车场收费系统\停车场收费系统\obj\Debug\停车场收费系统.Properties.Resources.resources

     文件        918  2010-12-01 21:37  停车场收费系统\停车场收费系统\obj\Debug\停车场收费系统.csproj.FileListAbsolute.txt

     文件      14848  2010-12-01 21:19  停车场收费系统\停车场收费系统\obj\Debug\停车场收费系统.exe

     文件      32256  2010-12-01 21:19  停车场收费系统\停车场收费系统\obj\Debug\停车场收费系统.pdb

     文件        847  2010-12-01 13:48  停车场收费系统\停车场收费系统\obj\Debug\停车场收费系统.csproj.GenerateResource.Cache

     文件        502  2010-11-28 22:37  停车场收费系统\停车场收费系统\Program.cs

     文件        454  2010-11-29 18:51  停车场收费系统\停车场收费系统\operatorFILE.cs

     文件       6012  2010-11-30 18:17  停车场收费系统\停车场收费系统\Form1.resx

     文件      14431  2010-11-30 18:17  停车场收费系统\停车场收费系统\Form1.Designer.cs

     文件       4148  2010-12-01 21:54  停车场收费系统\停车场收费系统\Form1.cs

     文件        953  2010-11-28 22:37  停车场收费系统\停车场收费系统.sln

    ..A..H.     15360  2010-12-01 21:54  停车场收费系统\停车场收费系统.suo

     目录          0  2010-11-28 22:37  停车场收费系统\停车场收费系统\obj\Debug\TempPE

     目录          0  2010-11-29 17:58  停车场收费系统\停车场收费系统\obj\Debug\Refactor

     目录          0  2010-11-28 22:37  停车场收费系统\停车场收费系统\bin\Debug

     目录          0  2010-11-28 22:37  停车场收费系统\停车场收费系统\obj\Debug

     目录          0  2010-11-28 22:37  停车场收费系统\停车场收费系统\Properties

     目录          0  2010-11-28 22:37  停车场收费系统\停车场收费系统\bin

     目录          0  2010-11-28 22:37  停车场收费系统\停车场收费系统\obj

............此处省略6个文件信息

评论

共有 条评论

相关资源