2016-01-07 15:00:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
2016-01-09 20:46:25 +00:00
|
|
|
|
namespace Crypto_Notepad
|
2016-01-07 15:00:49 +00:00
|
|
|
|
{
|
|
|
|
|
|
public partial class AboutFrom : Form
|
|
|
|
|
|
{
|
|
|
|
|
|
public AboutFrom()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void AboutWindow_Load(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Version vrs = new Version(Application.ProductVersion);
|
2016-01-09 20:46:25 +00:00
|
|
|
|
label1.Text = string.Format("Crypto Notepad " + "{0}.{1}.{2}", vrs.Major, vrs.Minor, vrs.Build);
|
2016-01-07 15:00:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-01-10 12:28:43 +00:00
|
|
|
|
private void customRichTextBox1_LinkClicked(object sender, LinkClickedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Process.Start(e.LinkText);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void AboutFrom_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
pictureBox1.Focus();
|
2016-01-07 15:00:49 +00:00
|
|
|
|
}
|
2016-01-15 16:13:33 +00:00
|
|
|
|
|
|
|
|
|
|
private void label1_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Process.Start("https://github.com/Sigmanor/Crypto-Notepad/wiki/Release-Notes");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-17 12:47:21 +00:00
|
|
|
|
private void pictureBox1_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Process.Start("https://crypto-notepad.github.io/");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Process.Start("https://github.com/Sigmanor/Crypto-Notepad");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Process.Start("https://github.com/Sigmanor/Crypto-Notepad/blob/master/LICENSE");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
2016-01-15 16:13:33 +00:00
|
|
|
|
{
|
2018-12-06 11:15:33 +00:00
|
|
|
|
Process.Start("https://sigmanor.github.io/");
|
2016-01-15 16:13:33 +00:00
|
|
|
|
}
|
2016-01-07 15:00:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|