• 大小: 890KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-06-12
  • 语言: C#
  • 标签:

资源简介

WinForm编写的一款神奇、美观的时钟程序,值得各位新老程序员学习、研究。千万不可错过哟

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;

namespace DateTime1
{
    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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       37092  2009-09-18 16:34  25175_1.jpg
     文件       50721  2009-09-18 16:35  25175_2.jpg
     文件       16063  2009-09-18 16:33  25175_3.jpg
     文件         724  2012-07-20 16:20  25175源码必读.txt
     文件        4868  2012-07-20 16:23  AboutBox1.cs
     文件       10541  2012-07-20 16:21  AboutBox1.Designer.cs
     文件       49720  2009-09-18 16:30  AboutBox1.resx
     目录           0  2009-06-27 22:32  bin\
     目录           0  2009-09-18 16:16  bin\Debug\
     文件        5146  2007-11-21 21:01  bin\Debug\Clock.xml
     文件        1727  2012-07-20 16:18  bin\Debug\DiskTop Clock.application
     文件      126976  2012-07-20 16:18  bin\Debug\DiskTop Clock.exe
     文件        2668  2012-07-20 16:18  bin\Debug\DiskTop Clock.exe.manifest
     文件       75264  2012-07-20 16:18  bin\Debug\DiskTop Clock.pdb
     文件        1727  2012-07-20 16:18  bin\Debug\DiskTop Clock.vshost.application
     文件        5632  2005-12-08 14:51  bin\Debug\DiskTop Clock.vshost.exe
     文件        2668  2012-07-20 16:18  bin\Debug\DiskTop Clock.vshost.exe.manifest
     目录           0  2009-06-27 22:39  bin\Debug\Skin\
     文件      145256  2007-09-29 20:33  bin\Debug\Skin\BEIKO.bmp
     文件      636780  2007-09-29 12:38  bin\Debug\Skin\children.BMP
     文件      172856  2007-08-19 14:12  bin\Debug\Skin\Default.bmp
     文件        9049  2009-05-04 07:06  bin\Debug\Skin\ico-arrow.gif
     文件      235256  2007-09-30 03:25  bin\Debug\Skin\MOON.bmp
     文件      172856  2007-08-19 17:49  bin\Debug\Skin\sh3.bmp
     文件      172856  2007-09-24 15:02  bin\Debug\Skin\vector.bmp
     文件      345296  2007-10-08 22:33  bin\Debug\Skin\中国结.bmp
     文件         388  2007-08-16 22:00  ClassDiagram1.cd
     文件           1  2007-08-18 00:11  ClassDiagram2.cd
     文件        7406  2007-09-29 18:35  ClockICO.ico
     文件        5406  2007-09-29 18:35  DateTime1.csproj
     文件         605  2007-09-29 00:02  DateTime1.csproj.user
............此处省略32个文件信息

评论

共有 条评论

相关资源