blob: 33c40e437709b4201c15f8524f280d1561440cc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Windows.Forms;
namespace TimeHACK.Engine.Template
{
public partial class AboutBox95 : UserControl
{
public AboutBox95()
{
InitializeComponent();
this.textBox2.Text = "This product is licensed to:\r\n" + Environment.UserName + "\r\n";
}
private void button1_Click(object sender, EventArgs e)
{
this.ParentForm.Close();
}
}
}
|