About Page

This commit is contained in:
jtsshieh 2017-10-29 12:01:04 -04:00
parent d04e6c44ea
commit 4c3477099a
2 changed files with 9 additions and 0 deletions

View file

@ -100,7 +100,12 @@ private void InitializeComponent()
//
// classicButton1
//
this.classicButton1.AdaptBackColorWithTheme = true;
this.classicButton1.AdaptFontWithTheme = true;
this.classicButton1.AdaptForeColorWithTheme = true;
this.classicButton1.BackColor = System.Drawing.Color.Silver;
this.classicButton1.DialogResult = System.Windows.Forms.DialogResult.None;
this.classicButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
this.classicButton1.ForeColor = System.Drawing.Color.Black;
this.classicButton1.Location = new System.Drawing.Point(251, 223);
this.classicButton1.Name = "classicButton1";

View file

@ -9,6 +9,10 @@ public AboutBox95()
{
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)