aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Template/AboutBox98.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Histacom2.Engine/Template/AboutBox98.cs')
-rw-r--r--Histacom2.Engine/Template/AboutBox98.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Histacom2.Engine/Template/AboutBox98.cs b/Histacom2.Engine/Template/AboutBox98.cs
new file mode 100644
index 0000000..f5a9ad4
--- /dev/null
+++ b/Histacom2.Engine/Template/AboutBox98.cs
@@ -0,0 +1,23 @@
+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();
+ }
+ }
+}