Histacom2/TimeHACK.Engine/Template/Infobox95.cs
2017-04-22 13:50:14 -06:00

20 lines
404 B
C#

using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace TimeHACK.Engine.Template
{
public partial class Infobox95 : UserControl
{
public Infobox95()
{
InitializeComponent();
}
private void ok_Click(object sender, EventArgs e)
{
this.ParentForm.Close();
}
}
}