blob: aca8df5282b237ab5fc57a011f712595a5f3a12c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Windows.Forms;
namespace Histacom2.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();
}
private void classicButton1_Click(object sender, EventArgs e)
{
this.ParentForm.Close();
}
}
}
|