blob: 1accc56800f50560e3fc78fe2327c607a61b71a1 (
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 button1_Click(object sender, EventArgs e)
{
this.ParentForm.Close();
}
}
}
|