资源简介
☆☆ 资源说明:☆☆
☆ 系统功能:☆
系统采用人机交互的方式,界面美观友好,信息查询灵活、方便,数据存储安全可靠;
实现对餐厅顾客开台、点菜/加菜、账目查询和结账等操作;
对用户输入的数据,进行严格的数据检验,尽可能的避免人为错误;
实现对消费账目自动结算;
实现对消费的历史记录进行查询,支持模糊查询;
系统应最大限度地实现易维护性和易操作性;
代码片段和文件信息
using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
namespace MrCy
{
partial class AboutBox1 : Form
{
public AboutBox1()
{
InitializeComponent();
// 初始化 AboutBox 以显示程序集信息中包含的产品信息。
// 也可以通过以下方法更改应用程序的程序集信息设置:
// - 项目->属性->应用程序->程序集信息
// - AssemblyInfo.cs
Text = String.Format(“关于 {0}“ Assemblytitle);
labelProductName.Text = AssemblyProduct;
labelVersion.Text = String.Format(“版本 {0}“ AssemblyVersion);
labelCopyright.Text = AssemblyCopyright;
labelCompanyName.Text = AssemblyCompany;
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 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;
}
}
public string AssemblyCopyright
{
相关资源
- C#使用pem格式的密钥对文件来做RSA加解
- [源码] C#编程 - 轻松入侵全班同学电脑
- c#语法分析器自上而下
- C#仿迅雷程序
- 用C#实现的新生报到注册系统(含源码
- protobuf-C#-聊天服务器
- Reflector 非常强大的.net C#反汇编、逆向
- 销售管理系统---UML课程设计,采用C
- c#网上订餐系统242193
- c#+sql2005酒店管理信息系统
- HTMLC#多个前端,后台的模板
- 书店管理系统附带数据库
- C# 多媒体播放 源代码
- C#账户管理系统源码
- c# 读取netcdf
- 毕业设计项目---拍拍网
- 软件工程及文档附带安装程序,及各
- C#数据库系统开发案例精选光盘内容
- C#数据库系统开发案例精选(书后光盘
- 鹏哥特色教程之C#入门到精通 基础篇
- C#编程系列:文档管理系统
- 协会管理系统V1.0 源代码
- 金旭亮《C#面向对象程序设计》教案
- C#版2048小游戏源码
- C#三层架构酒店管理系统
- 校园公共自行车租凭系统的设计与实
- C#源代码 库存管理系统
- c#基于emgu进行图像配准及拼接
- C# 开发modbus合集
- C#串口调试工具源码
评论
共有 条评论