mirror of
https://github.com/SirusDoma/VoxCharger.git
synced 2024-12-18 10:25:54 +01:00
24 lines
507 B
C#
24 lines
507 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|