资源简介
系统介绍
本系统属于小型的餐饮管理系统,可以有效地对中小型餐厅消费进行管理,本系统应达到以下目标:
系统采用人机交互的方式,界面美观友好,信息查询灵活、方便,数据存储安全可靠。
实现对餐厅顾客开台、点菜/加菜、账目查询和结账等操作。
对用户输入的数据,进行严格的数据检验,尽可能的避免人为错误。
实现对消费账目自动结算。
实现对消费的历史记录进行查询,支持模糊查询。
系统应最大限度地实现易维护性和易操作性。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;
namespace MrCy
{
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]).Product;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 905216 2008-01-10 11:51 06\readme.doc
文件 901 2007-10-31 09:23 06\MrCy\MrCy.sln
..A..H. 39936 2008-08-16 13:54 06\MrCy\MrCy.suo
文件 8954 2008-08-15 16:55 06\MrCy\MrCy\MrCy.csproj
文件 466 2007-12-05 09:07 06\MrCy\MrCy\Program.cs
文件 4265 2007-12-05 09:25 06\MrCy\MrCy\frmBF.Designer.cs
文件 1697 2007-12-05 09:25 06\MrCy\MrCy\frmBF.cs
文件 5814 2007-12-05 09:25 06\MrCy\MrCy\frmBF.resx
文件 18670 2007-12-05 09:26 06\MrCy\MrCy\frmDC.Designer.cs
文件 7497 2007-12-05 09:26 06\MrCy\MrCy\frmDC.cs
文件 7102 2007-12-05 09:26 06\MrCy\MrCy\frmDC.resx
文件 19388 2007-12-05 08:59 06\MrCy\MrCy\frmDesk.Designer.cs
文件 5429 2007-12-06 13:32 06\MrCy\MrCy\frmDesk.cs
文件 7102 2007-12-05 08:59 06\MrCy\MrCy\frmDesk.resx
文件 12484 2007-12-05 09:02 06\MrCy\MrCy\frmDetails.Designer.cs
文件 1722 2007-12-05 09:02 06\MrCy\MrCy\frmDetails.cs
文件 5814 2007-12-05 09:02 06\MrCy\MrCy\frmDetails.resx
文件 4237 2007-12-05 09:26 06\MrCy\MrCy\frmHF.Designer.cs
文件 1588 2007-12-06 08:13 06\MrCy\MrCy\frmHF.cs
文件 5814 2007-12-05 09:26 06\MrCy\MrCy\frmHF.resx
文件 4334 2007-12-05 09:05 06\MrCy\MrCy\frmLock.Designer.cs
文件 1412 2007-12-05 09:05 06\MrCy\MrCy\frmLock.cs
文件 5814 2007-12-05 09:05 06\MrCy\MrCy\frmLock.resx
文件 10078 2007-12-05 09:06 06\MrCy\MrCy\frmOpen.Designer.cs
文件 2375 2007-12-05 09:06 06\MrCy\MrCy\frmOpen.cs
文件 5814 2007-12-05 09:06 06\MrCy\MrCy\frmOpen.resx
文件 5389 2007-12-05 09:27 06\MrCy\MrCy\frmPwd.Designer.cs
文件 1616 2007-12-05 09:27 06\MrCy\MrCy\frmPwd.cs
文件 5814 2007-12-05 09:27 06\MrCy\MrCy\frmPwd.resx
文件 5063 2007-12-05 09:27 06\MrCy\MrCy\frmQxGl.Designer.cs
............此处省略83个文件信息
评论
共有 条评论