Added a shrink changing form but the math seems to be off so it is disabled for the time being. Updated the interface on the main form and the modify record form to include the log viewer and the log console.

This commit is contained in:
2017-04-18 01:51:51 -05:00
parent c72fbf88cf
commit ba5808443b
11 changed files with 6572 additions and 39 deletions
+31 -1
View File
@@ -35,6 +35,8 @@
this.exitFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.editMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.createNewRecordEditMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.helpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.examineLogsHelpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainTabControl = new System.Windows.Forms.TabControl();
this.projectionTabPage = new System.Windows.Forms.TabPage();
this.projectionsDataGridView = new System.Windows.Forms.DataGridView();
@@ -108,6 +110,7 @@
this.informationPanel = new System.Windows.Forms.Panel();
this.errorLabel = new System.Windows.Forms.Label();
this.addRecordButton = new System.Windows.Forms.Button();
this.showConsoleHelpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainLayoutPanel.SuspendLayout();
this.mainMenuStrip.SuspendLayout();
this.mainTabControl.SuspendLayout();
@@ -164,7 +167,8 @@
this.mainMenuStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FileMainMenu,
this.editMainMenu});
this.editMainMenu,
this.helpMainMenu});
this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
this.mainMenuStrip.Name = "mainMenuStrip";
this.mainMenuStrip.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
@@ -201,6 +205,22 @@
this.createNewRecordEditMainMenu.Text = "&Create New Record";
this.createNewRecordEditMainMenu.Click += new System.EventHandler(this.createNewRecordEditMainMenu_Click);
//
// helpMainMenu
//
this.helpMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.showConsoleHelpMainMenu,
this.examineLogsHelpMainMenu});
this.helpMainMenu.Name = "helpMainMenu";
this.helpMainMenu.Size = new System.Drawing.Size(68, 31);
this.helpMainMenu.Text = "&Help";
//
// examineLogsHelpMainMenu
//
this.examineLogsHelpMainMenu.Name = "examineLogsHelpMainMenu";
this.examineLogsHelpMainMenu.Size = new System.Drawing.Size(286, 34);
this.examineLogsHelpMainMenu.Text = "Examine &Logs";
this.examineLogsHelpMainMenu.Click += new System.EventHandler(this.ViewLogFiles);
//
// mainTabControl
//
this.mainLayoutPanel.SetColumnSpan(this.mainTabControl, 4);
@@ -947,6 +967,13 @@
this.addRecordButton.UseVisualStyleBackColor = true;
this.addRecordButton.Click += new System.EventHandler(this.addRecordButton_Click);
//
// showConsoleHelpMainMenu
//
this.showConsoleHelpMainMenu.Name = "showConsoleHelpMainMenu";
this.showConsoleHelpMainMenu.Size = new System.Drawing.Size(286, 34);
this.showConsoleHelpMainMenu.Text = "Sh&ow/Hide Console";
this.showConsoleHelpMainMenu.Click += new System.EventHandler(this.DisplayLogConsole);
//
// NewModifyRecord
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
@@ -1074,5 +1101,8 @@
private System.Windows.Forms.Button addRecordButton;
private System.Windows.Forms.ToolStripMenuItem editMainMenu;
private System.Windows.Forms.ToolStripMenuItem createNewRecordEditMainMenu;
private System.Windows.Forms.ToolStripMenuItem helpMainMenu;
private System.Windows.Forms.ToolStripMenuItem examineLogsHelpMainMenu;
private System.Windows.Forms.ToolStripMenuItem showConsoleHelpMainMenu;
}
}