Merge pull request #159 from IBMPCDOS5/master

UI Cleanup #3
This commit is contained in:
lempamo 2017-09-12 20:32:53 -05:00 committed by GitHub
commit 3645078653
3 changed files with 4 additions and 9 deletions

View file

@ -102,7 +102,7 @@ private void InitializeComponent()
//
this.classicButton1.BackColor = System.Drawing.Color.Silver;
this.classicButton1.ForeColor = System.Drawing.Color.Black;
this.classicButton1.Location = new System.Drawing.Point(251, 220);
this.classicButton1.Location = new System.Drawing.Point(251, 223);
this.classicButton1.Name = "classicButton1";
this.classicButton1.Size = new System.Drawing.Size(75, 23);
this.classicButton1.TabIndex = 6;

View file

@ -11,14 +11,9 @@ public AboutBox95()
this.textBox2.Text = "This product is licensed to:\r\n" + Environment.UserName + "\r\n";
}
private void button1_Click(object sender, EventArgs e)
{
this.ParentForm.Close();
}
private void classicButton1_Click(object sender, EventArgs e)
{
this.ParentForm.Close();
ParentForm.Close();
}
}
}

View file

@ -92,8 +92,8 @@ private void NewGameDialog_Load(object sender, EventArgs e)
private void btnDevMode_Click(object sender, EventArgs e)
{
MessageBox.Show("DevMode is a mode Designed for Development of the game, if you are seeing this that means it is activated! All DevMode does is if a Profile already exists then rather than asking you to choose a different name it just " +
"deletes the old one! This means that you won't have 1 million profiles everytime you want to test something in the game!");
MessageBox.Show("DevMode (Development Mode) is a special mode that lets you test features without having a large amount of accounts just to test a new feature. How it works is simple:" +
"\n1. It checks for a profile of the same name.\n2. If so, it deletes the profile and starts a new game.\n3. If not, then it starts a new game.");
}
}
}