WinForms cleanup, fix #38 (#39)

* fix spelling of "CreateIslndForm"

* sync up values of MinimizeBox, MaximizeBox, ShowInTaskbar, FormBorderStyle, and StartPosition properties on forms

* enable menu items after creating a new project

* improve form names

* add some clarity to warning/question MessageBox.Show text

* invert if statement to reduce nesting and change OKCancel to YesNo
This commit is contained in:
Andrew DeLisa 2019-01-07 14:24:32 -05:00 committed by GrapeshotGames
parent 92e71cf94a
commit bc0b7b70ba
22 changed files with 154 additions and 62 deletions

View file

@ -629,7 +629,10 @@
this.Controls.Add(this.cancelBtn);
this.Controls.Add(this.saveBtn);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "EditServerTemplate";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Edit Server Template";
this.Load += new System.EventHandler(this.EditServerTemplate_Load);