mirror of
https://github.com/tribufu/ServerGridEditor
synced 2026-05-06 15:17:35 +00:00
* 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:
parent
92e71cf94a
commit
bc0b7b70ba
22 changed files with 154 additions and 62 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue