资源简介
功能介绍:
双击软件的车位可以停车入库,右边显示车位的停车比例。
车辆管理: 费率管理 车辆管理
车辆入库:
数据管理:车帘管理 出入日志
应用程序:重置 清零
代码片段和文件信息
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 培训讲义-基础培训
- 下一篇:正向最大匹配中文分词算法
相关资源
- 图书管理系统源代码102984
- 项目:酒店管理系统10
- 美萍培训班管理系统标准版v3.4.rar
- 三调建库与管理系统使用手册2018102
- 汽车售后服务管理系统的设计与实现
- 基于SSH的医药管理系统
- 基于UML的电脑销售管理系统设计 计算
- 宿舍管理信息系统源码
- Commvault数据管理系统-日常运维手册
- VFP版的人事管理系统
- 企业员工信息管理系统完整版
- 餐饮管理系统源码
- layui后台管理系统源码
- vfp学生成绩管理系统 流畅运行
- 基于MVC的图书管理系统|本科毕业设计
- 商品后台管理系统
- struts2学生信息管理系统
- 良精通用企业网站管理系统
- mis出租屋管理系统
- VFP开发的工资管理系统数据库
- 基于.net+vs2010的简单酒店管理系统
- 美萍服装销售管理系统标准版完美破
- 勤工助学岗位申请及管理系统的设计
- 数据库课设 人事档案管理系统
- linux多人聊天室管理系统
- 房地产销售管理系统
- 毕业论文管理系统源代码+数据库文件
- 房屋收租管理系统v2.019破解版
- 学生宿舍管理系统的设计与实现计算
- 美萍干洗软件管理系统破解版
评论
共有 条评论