mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
24 lines
763 B
C#
24 lines
763 B
C#
|
using System;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace Histacom2.Engine.Template
|
|||
|
{
|
|||
|
public partial class AboutBox98 : UserControl
|
|||
|
{
|
|||
|
public AboutBox98()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
this.textBox2.Text = "This product is licensed to:\r\n" + Environment.UserName + "\r\n";
|
|||
|
textBox1.BackColor = SaveSystem.currentTheme.threeDObjectsColor;
|
|||
|
textBox2.BackColor = SaveSystem.currentTheme.threeDObjectsColor;
|
|||
|
textBox3.BackColor = SaveSystem.currentTheme.threeDObjectsColor;
|
|||
|
textBox4.BackColor = SaveSystem.currentTheme.threeDObjectsColor;
|
|||
|
}
|
|||
|
|
|||
|
private void classicButton1_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
ParentForm.Close();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|