Files
McBitFont/McBitFont/About.cs
2025-06-20 11:35:00 +03:00

26 lines
671 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: " + MainForm.version;
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
System.Diagnostics.Process.Start("mailto:mcfly@mcflyer.ru");
}
}
}