26 lines
672 B
C#
26 lines
672 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace McBitFont {
|
|
public partial class About : Form {
|
|
public About() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void About_Load(object sender, EventArgs e) {
|
|
lblVersion.Text = "Version: v" + MainForm.version;
|
|
}
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
|
|
System.Diagnostics.Process.Start("mailto:mcfly@mcflyer.ru");
|
|
}
|
|
}
|
|
}
|