1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-11-24 15:10:14 +01:00
VoxCharger/Sources/Forms/HelpForm.cs

19 lines
312 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 HelpForm : Form
{
public HelpForm()
{
InitializeComponent();
}
private void OnOkButtonClick(object sender, EventArgs e)
{
Close();
}
}
}