-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.cs
79 lines (56 loc) · 1.42 KB
/
About.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
/*
* Created by SharpDevelop.
* User: abdulaziz
* Date: 06/08/33
* Time: 09:43 م
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Diagnostics;
namespace Expire
{
/// <summary>
/// Description of About.
/// </summary>
public partial class About : Form
{
public About()
{
InitializeComponent();
CenterToScreen();
}
void Button1Click(object sender, EventArgs e)
{
this.Close();
}
void TwtLinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
try
{
Process.Start("https://goo.gl/YRMYEo");
twt.Links.Remove(twt.Links[0]);
twt.Links.Add(0, twt.Text.Length, "https://goo.gl/YRMYEo");
}
catch
{
MessageBox.Show(" visit our twitter page at https://goo.gl/YRMYEo");
}
}
void UpLinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
try{
Process.Start("http://sourceforge.net/projects/drugexp/");
twt.Links.Remove(twt.Links[0]);
twt.Links.Add(0,twt.Text.Length,"http://sourceforge.net/projects/drugexp/");
}catch{
MessageBox.Show(" visit our page at http://sourceforge.net/projects/drugexp/");
}
}
void Label8Click(object sender, EventArgs e)
{
}
}
}