Purged the row grouping code from the modify record form as it is no longer needed as well a moving all the main control events into their own toggle functions to make event enabling/disabling more consistent.

This commit is contained in:
2017-12-10 23:53:34 -06:00
parent e37b8c840a
commit 13af4ff791
4 changed files with 561 additions and 499 deletions
+18 -4
View File
@@ -111,6 +111,7 @@
this.informationPanel = new System.Windows.Forms.Panel();
this.errorLabel = new System.Windows.Forms.Label();
this.addRecordButton = new System.Windows.Forms.Button();
this.insertAdSepecialRowButton = new System.Windows.Forms.Button();
this.mainLayoutPanel.SuspendLayout();
this.mainMenuStrip.SuspendLayout();
this.mainTabControl.SuspendLayout();
@@ -187,7 +188,7 @@
// exitFileMainMenu
//
this.exitFileMainMenu.Name = "exitFileMainMenu";
this.exitFileMainMenu.Size = new System.Drawing.Size(240, 34);
this.exitFileMainMenu.Size = new System.Drawing.Size(137, 34);
this.exitFileMainMenu.Text = "E&xit";
//
// editMainMenu
@@ -201,7 +202,7 @@
// createNewRecordEditMainMenu
//
this.createNewRecordEditMainMenu.Name = "createNewRecordEditMainMenu";
this.createNewRecordEditMainMenu.Size = new System.Drawing.Size(283, 34);
this.createNewRecordEditMainMenu.Size = new System.Drawing.Size(282, 34);
this.createNewRecordEditMainMenu.Text = "&Create New Record";
this.createNewRecordEditMainMenu.Click += new System.EventHandler(this.CreateNewRecordEditMainMenuOnClick);
//
@@ -217,14 +218,14 @@
// showConsoleHelpMainMenu
//
this.showConsoleHelpMainMenu.Name = "showConsoleHelpMainMenu";
this.showConsoleHelpMainMenu.Size = new System.Drawing.Size(286, 34);
this.showConsoleHelpMainMenu.Size = new System.Drawing.Size(285, 34);
this.showConsoleHelpMainMenu.Text = "Sh&ow/Hide Console";
this.showConsoleHelpMainMenu.Click += new System.EventHandler(this.DisplayLogConsole);
//
// examineLogsHelpMainMenu
//
this.examineLogsHelpMainMenu.Name = "examineLogsHelpMainMenu";
this.examineLogsHelpMainMenu.Size = new System.Drawing.Size(286, 34);
this.examineLogsHelpMainMenu.Size = new System.Drawing.Size(285, 34);
this.examineLogsHelpMainMenu.Text = "Examine &Logs";
this.examineLogsHelpMainMenu.Click += new System.EventHandler(this.ViewLogFiles);
//
@@ -946,6 +947,7 @@
//
// informationPanel
//
this.informationPanel.Controls.Add(this.insertAdSepecialRowButton);
this.informationPanel.Controls.Add(this.errorLabel);
this.informationPanel.Controls.Add(this.addRecordButton);
this.informationPanel.Dock = System.Windows.Forms.DockStyle.Fill;
@@ -974,6 +976,17 @@
this.addRecordButton.UseVisualStyleBackColor = true;
this.addRecordButton.Click += new System.EventHandler(this.SaveRecordOnAddRecordButtonClick);
//
// insertAdSepecialRowButton
//
this.insertAdSepecialRowButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.insertAdSepecialRowButton.Location = new System.Drawing.Point(8, 133);
this.insertAdSepecialRowButton.Name = "insertAdSepecialRowButton";
this.insertAdSepecialRowButton.Size = new System.Drawing.Size(167, 41);
this.insertAdSepecialRowButton.TabIndex = 29;
this.insertAdSepecialRowButton.Text = "Insert Ad Row";
this.insertAdSepecialRowButton.UseVisualStyleBackColor = true;
this.insertAdSepecialRowButton.Visible = false;
//
// NewModifyRecord
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
@@ -1104,5 +1117,6 @@
private System.Windows.Forms.ToolStripMenuItem helpMainMenu;
private System.Windows.Forms.ToolStripMenuItem examineLogsHelpMainMenu;
private System.Windows.Forms.ToolStripMenuItem showConsoleHelpMainMenu;
private System.Windows.Forms.Button insertAdSepecialRowButton;
}
}
File diff suppressed because it is too large Load Diff