Added split container to refill form.

This commit is contained in:
Adam McCane 2024-02-16 08:37:02 -05:00
parent f0a1e25848
commit fd2f50aaad

View File

@ -54,8 +54,12 @@ namespace Louis__Pharmacy_CNSA212_FP
this.cmuAdd = new System.Windows.Forms.ToolStripMenuItem();
this.cmuUpdate = new System.Windows.Forms.ToolStripMenuItem();
this.cmuDelete = new System.Windows.Forms.ToolStripMenuItem();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// bindingNavigatorAddNewItem
@ -128,9 +132,9 @@ namespace Louis__Pharmacy_CNSA212_FP
this.patientid,
this.medicationid,
this.rxnumber});
this.dataGridView1.Location = new System.Drawing.Point(12, 12);
this.dataGridView1.Location = new System.Drawing.Point(3, 3);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(607, 326);
this.dataGridView1.Size = new System.Drawing.Size(625, 239);
this.dataGridView1.TabIndex = 0;
//
// refillid
@ -173,32 +177,45 @@ namespace Louis__Pharmacy_CNSA212_FP
this.cmuUpdate,
this.cmuDelete});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(181, 92);
this.contextMenuStrip1.Size = new System.Drawing.Size(113, 70);
//
// cmuAdd
//
this.cmuAdd.Name = "cmuAdd";
this.cmuAdd.Size = new System.Drawing.Size(180, 22);
this.cmuAdd.Size = new System.Drawing.Size(112, 22);
this.cmuAdd.Text = "Add";
//
// cmuUpdate
//
this.cmuUpdate.Name = "cmuUpdate";
this.cmuUpdate.Size = new System.Drawing.Size(180, 22);
this.cmuUpdate.Size = new System.Drawing.Size(112, 22);
this.cmuUpdate.Text = "Update";
//
// cmuDelete
//
this.cmuDelete.Name = "cmuDelete";
this.cmuDelete.Size = new System.Drawing.Size(180, 22);
this.cmuDelete.Size = new System.Drawing.Size(112, 22);
this.cmuDelete.Text = "Delete";
//
// splitContainer1
//
this.splitContainer1.Location = new System.Drawing.Point(12, 12);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.dataGridView1);
this.splitContainer1.Size = new System.Drawing.Size(631, 498);
this.splitContainer1.SplitterDistance = 249;
this.splitContainer1.TabIndex = 1;
//
// frmRefill
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(631, 350);
this.Controls.Add(this.dataGridView1);
this.ClientSize = new System.Drawing.Size(655, 522);
this.Controls.Add(this.splitContainer1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "frmRefill";
@ -206,6 +223,9 @@ namespace Louis__Pharmacy_CNSA212_FP
this.Load += new System.EventHandler(this.frmRefill_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
}
@ -248,5 +268,6 @@ namespace Louis__Pharmacy_CNSA212_FP
private System.Windows.Forms.ToolStripMenuItem cmuAdd;
private System.Windows.Forms.ToolStripMenuItem cmuUpdate;
private System.Windows.Forms.ToolStripMenuItem cmuDelete;
private System.Windows.Forms.SplitContainer splitContainer1;
}
}