aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Template/AboutBox98.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-11-15 15:49:35 -0500
committerlempamo <[email protected]>2017-11-15 15:49:35 -0500
commit3f03fdb36c72812ec7b899ba533260b06286de55 (patch)
tree1903cf12be764800d708d3b8c55e3109835679dd /Histacom2.Engine/Template/AboutBox98.cs
parent190bbd4c2e9385a2f20761b20f1c6d31d56fbbfd (diff)
downloadhistacom2-3f03fdb36c72812ec7b899ba533260b06286de55.tar.gz
histacom2-3f03fdb36c72812ec7b899ba533260b06286de55.tar.bz2
histacom2-3f03fdb36c72812ec7b899ba533260b06286de55.zip
a few minor fixes involving the about box
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();
+ }
+ }
+}