forked from atom0s/Cure-Please
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Form3.cs
35 lines (27 loc) · 1.03 KB
/
Form3.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
namespace CurePlease
{
using System.Windows.Forms;
public partial class Form3 : Form
{
public Form3()
{
this.StartPosition = FormStartPosition.CenterScreen;
this.InitializeComponent();
this.label2.Text = Application.ProductVersion;
}
#region "== Form About"
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/atom0s/Cure-Please");
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://ext.elitemmonetwork.com/downloads/eliteapi/");
}
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://ext.elitemmonetwork.com/downloads/elitemmo_api/");
}
}
#endregion "== Form About"
}