Added names of the forms into the navigation drop down in the menu strip.

This commit is contained in:
Adam McCane 2024-02-07 11:10:43 -05:00
parent 90cae15b6b
commit 390d7f7de2

View File

@ -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;
}
}