-
Notifications
You must be signed in to change notification settings - Fork 600
/
Copy pathFormAboutVersion.cs
52 lines (47 loc) · 1.58 KB
/
FormAboutVersion.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
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 FormAboutVersion : Form
{
/// <summary>
/// 实例化一个版本信息说明的窗口对象
/// </summary>
/// <param name="sv">系统的版本号</param>
public FormAboutVersion(SystemVersion sv)
{
InitializeComponent();
m_SystemVersion = sv;
Icon = UserSystem.GetFormWindowIcon();
}
private SystemVersion m_SystemVersion = null;
private void FormAboutVersion_Load(object sender, EventArgs e)
{
Text = "版本号说明";
label1.Text = "版本:V" + m_SystemVersion.ToString();
label2.Text = m_SystemVersion.MainVersion.ToString();
label3.Text = m_SystemVersion.SecondaryVersion.ToString();
label4.Text = m_SystemVersion.EditVersion.ToString();
label5.Text = "主版本,架构升级或是界面大更新。";
label6.Text = "次版本,界面小更新或是新功能增加。";
label7.Text = "修订版,性能优化或是BUG修复。";
}
private void FormAboutVersion_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
{
Close();
}
}
}
}