diff options
| author | lempamo <[email protected]> | 2017-09-12 20:32:53 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-09-12 20:32:53 -0500 |
| commit | 364507865396c68c2ea52bf9ad1405d68b697d10 (patch) | |
| tree | 176bae4399c6255aeebe2478e13dd8d149b635e5 | |
| parent | 5b72a30b11422473d2b6fd35e2909cd2a7eb5395 (diff) | |
| parent | aa7ec83d57080044ff74ee6dbc03a84af56e3ab9 (diff) | |
| download | histacom2-364507865396c68c2ea52bf9ad1405d68b697d10.tar.gz histacom2-364507865396c68c2ea52bf9ad1405d68b697d10.tar.bz2 histacom2-364507865396c68c2ea52bf9ad1405d68b697d10.zip | |
Merge pull request #159 from IBMPCDOS5/master
UI Cleanup #3
| -rw-r--r-- | Histacom2.Engine/Template/AboutBox95.Designer.cs | 2 | ||||
| -rw-r--r-- | Histacom2.Engine/Template/AboutBox95.cs | 7 | ||||
| -rw-r--r-- | Histacom2/SaveDialogs/NewGameDialog.cs | 4 |
3 files changed, 4 insertions, 9 deletions
diff --git a/Histacom2.Engine/Template/AboutBox95.Designer.cs b/Histacom2.Engine/Template/AboutBox95.Designer.cs index 4b44f9d..8ad5dea 100644 --- a/Histacom2.Engine/Template/AboutBox95.Designer.cs +++ b/Histacom2.Engine/Template/AboutBox95.Designer.cs @@ -102,7 +102,7 @@ // 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; diff --git a/Histacom2.Engine/Template/AboutBox95.cs b/Histacom2.Engine/Template/AboutBox95.cs index aca8df5..a97ab1c 100644 --- a/Histacom2.Engine/Template/AboutBox95.cs +++ b/Histacom2.Engine/Template/AboutBox95.cs @@ -11,14 +11,9 @@ namespace Histacom2.Engine.Template 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(); } } } diff --git a/Histacom2/SaveDialogs/NewGameDialog.cs b/Histacom2/SaveDialogs/NewGameDialog.cs index 7609d5d..eb8d44f 100644 --- a/Histacom2/SaveDialogs/NewGameDialog.cs +++ b/Histacom2/SaveDialogs/NewGameDialog.cs @@ -92,8 +92,8 @@ namespace Histacom2 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."); } } } |
