-
Notifications
You must be signed in to change notification settings - Fork 0
/
AcercaDe.cs
55 lines (47 loc) · 1.46 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
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Nomlyzer
{
public partial class AcercaDe : Form
{
Strings st = new Strings();
public AcercaDe()
{
InitializeComponent();
label5.Text = "Versión ";
label5. Text += st.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();
}
}
private void button1_Click_1(object sender, EventArgs e)
{
this.Dispose();
}
}
}