-
Notifications
You must be signed in to change notification settings - Fork 600
/
Copy pathFormAbout.cs
100 lines (82 loc) · 2.73 KB
/
FormAbout.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
using HslCommunication.BasicFramework;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace CommonLibrary
{
/// <summary>
/// 系统的关于类
/// </summary>
public partial class FormAbout : Form
{
#region Constructor
/// <summary>
/// 实例化一个关于系统的窗口对象
/// </summary>
/// <param name="softName">应用程序的名称</param>
/// <param name="sv">系统的版本</param>
/// <param name="yearStart">应用起始年份</param>
/// <param name="belongName">本系统的版权归属人</param>
public FormAbout(string softName, SystemVersion sv, int yearStart, string belongName)
{
InitializeComponent();
SoftName = softName;
SV = sv;
YearStart = yearStart;
BelongName = belongName;
Icon = UserSystem.GetFormWindowIcon();
}
/// <summary>
/// 实例化一个关于系统的窗口对象
/// </summary>
/// <param name="sv">系统的版本</param>
/// <param name="yearStart">版权起始年份</param>
/// <param name="belongName">本系统的版权归属人</param>
public FormAbout(SystemVersion sv, int yearStart, string belongName)
{
InitializeComponent();
SoftName = Application.ProductName;
SV = sv;
YearStart = yearStart;
BelongName = belongName;
}
#endregion
#region Quick Close
private void FormAbout_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
{
Close();
}
}
#endregion
#region Window Load
private void FormAbout_Load(object sender, EventArgs e)
{
Text = "关于系统";
label5.Text = "框架版本:" + SoftBasic.FrameworkVersion.ToString();
label1.Text = SoftName;
label2.Text = "V" + SV.ToString();
if (DateTime.Now.Year > YearStart)
{
label3.Text = $"(C) {YearStart}-{DateTime.Now.Year} {BelongName} 保留所有权利";
}
else
{
label3.Text = $"(C) {YearStart} {BelongName} 保留所有权利";
}
}
#endregion
#region Private Members
private string SoftName = string.Empty;
private SystemVersion SV = null;
private int YearStart = 2017;
private string BelongName = "Richard.Hu";
#endregion
}
}