1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-18 10:25:54 +01:00
VoxCharger/Sources/Forms/AboutForm.cs

24 lines
507 B
C#
Raw Normal View History

2020-04-18 22:24:48 +02:00
using System;
using System.Windows.Forms;
namespace VoxCharger
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
}
private void OnEmailLinkLabelLinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("mailto://o2jam@cxo2.me");
}
private void OnCloseButtonClick(object sender, EventArgs e)
{
Close();
}
}
}