From 390d7f7de28588c0f1dce2b4d270d13290875161 Mon Sep 17 00:00:00 2001 From: Adam McCane Date: Wed, 7 Feb 2024 11:10:43 -0500 Subject: [PATCH] Added names of the forms into the navigation drop down in the menu strip. --- .../frmMain.Designer.cs | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Louis'-Pharmacy_CNSA212-FP/frmMain.Designer.cs b/Louis'-Pharmacy_CNSA212-FP/frmMain.Designer.cs index ce1ba8f..9b66476 100644 --- a/Louis'-Pharmacy_CNSA212-FP/frmMain.Designer.cs +++ b/Louis'-Pharmacy_CNSA212-FP/frmMain.Designer.cs @@ -32,6 +32,10 @@ this.mnuNavigation = new System.Windows.Forms.ToolStripMenuItem(); this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem(); this.mnuHelpAbout = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuView = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuAddUpdatePatientPhysician = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuAddUpdatePrescription = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuAddUpdateRemoveRefill = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // @@ -48,6 +52,11 @@ // // mnuNavigation // + this.mnuNavigation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mnuView, + this.mnuAddUpdatePatientPhysician, + this.mnuAddUpdatePrescription, + this.mnuAddUpdateRemoveRefill}); this.mnuNavigation.Name = "mnuNavigation"; this.mnuNavigation.Size = new System.Drawing.Size(77, 20); this.mnuNavigation.Text = "Navigation"; @@ -66,6 +75,30 @@ this.mnuHelpAbout.Size = new System.Drawing.Size(180, 22); this.mnuHelpAbout.Text = "About"; // + // mnuView + // + this.mnuView.Name = "mnuView"; + this.mnuView.Size = new System.Drawing.Size(286, 22); + this.mnuView.Text = "View Patient/Prescription/Physician Info"; + // + // mnuAddUpdatePatientPhysician + // + this.mnuAddUpdatePatientPhysician.Name = "mnuAddUpdatePatientPhysician"; + this.mnuAddUpdatePatientPhysician.Size = new System.Drawing.Size(286, 22); + this.mnuAddUpdatePatientPhysician.Text = "Add/Update Patient/Physician"; + // + // mnuAddUpdatePrescription + // + this.mnuAddUpdatePrescription.Name = "mnuAddUpdatePrescription"; + this.mnuAddUpdatePrescription.Size = new System.Drawing.Size(286, 22); + this.mnuAddUpdatePrescription.Text = "Add/Update Prescription"; + // + // mnuAddUpdateRemoveRefill + // + this.mnuAddUpdateRemoveRefill.Name = "mnuAddUpdateRemoveRefill"; + this.mnuAddUpdateRemoveRefill.Size = new System.Drawing.Size(286, 22); + this.mnuAddUpdateRemoveRefill.Text = "Add/Update/Remove Refill"; + // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -89,5 +122,9 @@ private System.Windows.Forms.ToolStripMenuItem mnuNavigation; private System.Windows.Forms.ToolStripMenuItem mnuHelp; private System.Windows.Forms.ToolStripMenuItem mnuHelpAbout; + private System.Windows.Forms.ToolStripMenuItem mnuView; + private System.Windows.Forms.ToolStripMenuItem mnuAddUpdatePatientPhysician; + private System.Windows.Forms.ToolStripMenuItem mnuAddUpdatePrescription; + private System.Windows.Forms.ToolStripMenuItem mnuAddUpdateRemoveRefill; } } \ No newline at end of file