blob: a97ab1c1cab6c73e4e4f56517d3be866f84dab5e (
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 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 classicButton1_Click(object sender, EventArgs e)
{
ParentForm.Close();
}
}
}
|