1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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(); } } }