资源简介
C# 餐饮管理系统C# 餐饮管理系统C# 餐饮管理系统C# 餐饮管理系统C# 餐饮管理系统C# 餐饮管理系统C# 餐饮管理系统

代码片段和文件信息
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;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5335 2010-07-26 11:16 源码03 餐饮管理系统\MrCy\AboutBox1.cs
文件 10622 2010-07-26 11:16 源码03 餐饮管理系统\MrCy\AboutBox1.Designer.cs
文件 49720 2010-07-26 11:16 源码03 餐饮管理系统\MrCy\AboutBox1.resx
文件 414 2010-02-03 17:14 源码03 餐饮管理系统\MrCy\app.config
文件 350 2010-02-03 17:10 源码03 餐饮管理系统\MrCy\ba
文件 946176 2005-02-15 19:54 源码03 餐饮管理系统\MrCy\bin\Debug\Excel.dll
文件 539648 2010-12-15 20:04 源码03 餐饮管理系统\MrCy\bin\Debug\MrCy.exe
文件 374 2010-02-05 13:27 源码03 餐饮管理系统\MrCy\bin\Debug\MrCy.exe.config
文件 345600 2010-12-15 20:04 源码03 餐饮管理系统\MrCy\bin\Debug\MrCy.pdb
文件 14328 2010-12-15 20:06 源码03 餐饮管理系统\MrCy\bin\Debug\MrCy.vshost.exe
文件 374 2010-02-05 13:27 源码03 餐饮管理系统\MrCy\bin\Debug\MrCy.vshost.exe.config
文件 490 2009-06-11 05:14 源码03 餐饮管理系统\MrCy\bin\Debug\MrCy.vshost.exe.manifest
文件 155648 2005-06-03 14:35 源码03 餐饮管理系统\MrCy\bin\Debug\Office.dll
文件 57344 2005-06-03 14:35 源码03 餐饮管理系统\MrCy\bin\Debug\VBIDE.dll
文件 1697 2007-12-05 09:25 源码03 餐饮管理系统\MrCy\frmBF.cs
文件 4265 2007-12-05 09:25 源码03 餐饮管理系统\MrCy\frmBF.Designer.cs
文件 5814 2007-12-05 09:25 源码03 餐饮管理系统\MrCy\frmBF.resx
文件 341 2008-10-25 20:34 源码03 餐饮管理系统\MrCy\frmCalender.cs
文件 2500 2008-10-25 20:34 源码03 餐饮管理系统\MrCy\frmCalender.Designer.cs
文件 5814 2008-10-25 20:34 源码03 餐饮管理系统\MrCy\frmCalender.resx
文件 8609 1997-12-09 16:31 源码03 餐饮管理系统\MrCy\frmDC.cs
文件 18706 1997-12-09 16:31 源码03 餐饮管理系统\MrCy\frmDC.Designer.cs
文件 7102 1997-12-09 16:31 源码03 餐饮管理系统\MrCy\frmDC.resx
文件 5549 2008-12-22 20:30 源码03 餐饮管理系统\MrCy\frmDesk.cs
文件 19061 2008-12-22 20:30 源码03 餐饮管理系统\MrCy\frmDesk.Designer.cs
文件 6918 2008-12-22 20:30 源码03 餐饮管理系统\MrCy\frmDesk.resx
文件 1722 2007-12-05 09:02 源码03 餐饮管理系统\MrCy\frmDetails.cs
文件 12484 2007-12-05 09:02 源码03 餐饮管理系统\MrCy\frmDetails.Designer.cs
文件 5814 2007-12-05 09:02 源码03 餐饮管理系统\MrCy\frmDetails.resx
文件 6008 2008-12-22 20:58 源码03 餐饮管理系统\MrCy\FrmFood.cs
............此处省略112个文件信息
- 上一篇:C#winform的书店销售系统
- 下一篇:asp.net毕业设计管理系统源码
相关资源
- C#解析HL7消息的库135797
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
评论
共有 条评论