Histacom2/Histacom2.Engine/Template/AboutBox95.cs
FloppyDiskDrive aa7ec83d57 UI Cleanup #4
Fixed the AboutInfobox95 UI
2017-09-12 20:15:59 -05:00

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();
}
}
}