-
Notifications
You must be signed in to change notification settings - Fork 975
Expand file tree
/
Copy pathabout.cs
More file actions
58 lines (48 loc) · 1.75 KB
/
about.cs
File metadata and controls
58 lines (48 loc) · 1.75 KB
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
using System;
using System.Windows.Forms;
using System.Diagnostics;
namespace subs_check.win.gui
{
public partial class about : Form
{
// 添加两个公共属性来接收版本号
public string GuiVersion { set { label2.Text = value; } }
public string CoreVersion { set { label3.Text = value; } }
public about()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/beck-8/subs-check");
}
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://t.me/CMLiussss");
}
private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://url.cmliussss.com/SCWinGUI");
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/cmliu/SubsCheck-Win-GUI");
}
private void linkLabel5_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/beck-8/subs-check");
}
private void linkLabel6_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/bestruirui/BestSub");
}
private void linkLabel8_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/sub-store-org/Sub-Store");
}
}
}