• 大小: 1.41MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-11-04
  • 语言: C#
  • 标签: C#  WinForms  

资源简介

☆☆ 资源说明:☆☆ ☆ 系统功能:☆ 系统采用人机交互的方式,界面美观友好,信息查询灵活、方便,数据存储安全可靠; 实现对餐厅顾客开台、点菜/加菜、账目查询和结账等操作; 对用户输入的数据,进行严格的数据检验,尽可能的避免人为错误; 实现对消费账目自动结算; 实现对消费的历史记录进行查询,支持模糊查询; 系统应最大限度地实现易维护性和易操作性;

资源截图

代码片段和文件信息

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
        {
      

评论

共有 条评论