-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAcercaDe.cs
49 lines (43 loc) · 1.34 KB
/
AcercaDe.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Sobreloader
{
public partial class AcercaDe : Form
{
public AcercaDe()
{
InitializeComponent();
Strings SC = new Strings();
label2.Text = "Versión ";
label2.Text += SC.obtenerVersion();
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://www.youtube.com/user/elstef41");
}
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://twitter.com/elstef41");
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://elstef41.com/");
}
private void AcercaDe_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 27)
{
this.Close();
}
}
}
}