mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
aa7ec83d57
Fixed the AboutInfobox95 UI
19 lines
455 B
C#
19 lines
455 B
C#
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();
|
|
}
|
|
}
|
|
}
|