资源简介
功能介绍:
双击软件的车位可以停车入库,右边显示车位的停车比例。
车辆管理: 费率管理 车辆管理
车辆入库:
数据管理:车帘管理 出入日志
应用程序:重置 清零

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;
namespace CarManager
{
partial class AboutBox1 : Form
{
public AboutBox1()
{
InitializeComponent();
// 初始化 AboutBox 以显示程序集信息中包含的产品信息。
// 也可以通过以下方法更改应用程序的程序集信息设置:
// - 项目->属性->应用程序->程序集信息
// - AssemblyInfo.cs
this.Text = String.Format(“关于 {0}“ Assemblytitle);
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = String.Format(“版本 {0}“ AssemblyVersion);
this.labelCopyright.Text = AssemblyCopyright;
this.labelCompanyName.Text = AssemblyCompany;
this.textBoxDescription.Text = AssemblyDescription;
}
#region 程序集属性访问器
public string Assemblytitle
{
get
{
// 获取此程序集上的所有 title 属性
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblytitleAttribute) false);
// 如果至少有一个 title 属性
if (attributes.Length > 0)
{
// 请选择第一个属性
AssemblytitleAttribute titleAttribute = (AssemblytitleAttribute)attributes[0];
// 如果该属性为非空字符串,则将其返回
if (titleAttribute.title != ““)
return titleAttribute.title;
}
// 如果没有 title 属性,或者 title 属性为一个空字符串,则返回 .exe 的名称
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Codebase);
}
}
public string AssemblyVersion
{
get
{
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
public string AssemblyDescription
{
get
{
// 获取此程序集的所有 Description 属性
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute) false);
// 如果 Description 属性不存在,则返回一个空字符串
if (attributes.Length == 0)
return ““;
// 如果有 Description 属性,则返回该属性的值
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
}
}
public string AssemblyProduct
{
get
{
// 获取此程序集上的所有 Product 属性
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute) false);
// 如果 Product 属性不存在,则返回一个空字符串
if (attributes.Length == 0)
return ““;
// 如果有 Product 属性,则返回该属性的值
return ((AssemblyProductAttribute)attributes[0]).Produc
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-09-22 14:32 停车场管理系统\
文件 4753 2008-08-17 18:38 停车场管理系统\AboutBox1.cs
文件 11528 2008-08-17 18:38 停车场管理系统\AboutBox1.Designer.cs
文件 49720 2008-08-17 18:38 停车场管理系统\AboutBox1.resx
文件 326 2013-09-22 14:03 停车场管理系统\app.config
目录 0 2013-01-08 19:02 停车场管理系统\bin\
目录 0 2013-09-22 14:31 停车场管理系统\bin\Debug\
文件 15360 2008-08-29 22:10 停车场管理系统\bin\Debug\AxInterop.MSACAL.dll
文件 32768 2008-08-29 22:10 停车场管理系统\bin\Debug\AxInterop.MSAdodcLib.dll
文件 126976 2013-01-14 09:57 停车场管理系统\bin\Debug\AxInterop.MSComctlLib.dll
文件 1636 2013-09-22 14:31 停车场管理系统\bin\Debug\CarManager.application
文件 491520 2013-09-22 14:31 停车场管理系统\bin\Debug\CarManager.exe
文件 326 2013-09-22 14:03 停车场管理系统\bin\Debug\CarManager.exe.config
文件 11633 2013-09-22 14:31 停车场管理系统\bin\Debug\CarManager.exe.manifest
文件 218624 2013-09-22 14:31 停车场管理系统\bin\Debug\CarManager.pdb
文件 1636 2013-09-22 14:06 停车场管理系统\bin\Debug\CarManager.vshost.application
文件 11608 2013-09-22 14:31 停车场管理系统\bin\Debug\CarManager.vshost.exe
文件 326 2013-09-22 14:03 停车场管理系统\bin\Debug\CarManager.vshost.exe.config
文件 11633 2013-09-22 14:06 停车场管理系统\bin\Debug\CarManager.vshost.exe.manifest
文件 2293760 2008-08-29 22:07 停车场管理系统\bin\Debug\Data.mdf
文件 573440 2008-08-29 22:07 停车场管理系统\bin\Debug\Data_log.ldf
文件 1273856 2011-08-16 11:11 停车场管理系统\bin\Debug\Interop.Microsoft.Office.Interop.Excel.dll
文件 19968 2008-08-29 22:10 停车场管理系统\bin\Debug\Interop.MSACAL.dll
文件 40960 2008-08-29 22:10 停车场管理系统\bin\Debug\Interop.MSAdodcLib.dll
文件 282624 2013-09-22 14:05 停车场管理系统\bin\Debug\Interop.MSComctlLib.dll
文件 416544 2007-10-10 09:49 停车场管理系统\bin\Debug\office.dll
目录 0 2013-01-14 10:24 停车场管理系统\bin\Release\
文件 12587 2013-09-22 14:06 停车场管理系统\CarManager.csproj
文件 679 2013-09-22 14:30 停车场管理系统\CarManager.csproj.user
文件 909 2013-09-22 14:02 停车场管理系统\CarManager.sln
文件 37888 2013-09-22 14:31 停车场管理系统\CarManager.suo
............此处省略89个文件信息
- 上一篇:VPI 培训讲义-基础培训
- 下一篇:正向最大匹配中文分词算法
相关资源
- 酒店管理系统基于Qt Creator5)
- 设备管理系统源码
- Python全栈学习笔记面向对象大作业:
- 一个超简单的企业管理系统(带ACCE
- PowerBuilder*图书馆管理系统*需求分析
- 数据库课设:图书管理系统报告
- 用汇编实现的学生成绩档案管理系统
- 教室管理系统.rar
- 基于MVC模式的会员管理系统
- 学生信息管理系统源码
- about 论坛信息管理系统
- 合同管理系统的源代码(附数据库)
- 保险公司管理系统(前台界面)
- Pb开发的酒店住宿管理系统
- ado数据库MFC图书管理系统vs2010
- 地下停车场CAD设计图
- 村居人口信息管理系统
- 数据库VFP课程设计
- 完整版家庭在线记账理财管理系统
- GUI银行管理系统
- 服装店进销存管理系统
- 数据库实现学生成绩管理系统选课管
- 课程作业:模拟仓库管理系统
- 教务管理系统需求分析(全集)
- 007出纳管理系统 v7[1].5.94 算法注册机
- c 课程设计 职工信息管理系统
- 书店销售管理系统 包附源代码
- 兔子养殖场管理系统
- 通用后台管理系统模板
- 软件工程 考勤管理系统分析与设计
评论
共有 条评论