Edited/Created forms

This commit is contained in:
Noah 2024-01-31 12:45:33 -05:00
parent a7d2f4ece7
commit da5b700d0d
9 changed files with 147 additions and 16 deletions

View File

@ -46,17 +46,29 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="frmAddPatient.cs">
<Compile Include="frmAddPatientPhysician.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPatient.Designer.cs">
<DependentUpon>frmAddPatient.cs</DependentUpon>
<Compile Include="frmAddPatientPhysician.Designer.cs">
<DependentUpon>frmAddPatientPhysician.cs</DependentUpon>
</Compile>
<Compile Include="frmAddPhysician.cs">
<Compile Include="frmInfo.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPhysician.Designer.cs">
<DependentUpon>frmAddPhysician.cs</DependentUpon>
<Compile Include="frmInfo.Designer.cs">
<DependentUpon>frmInfo.cs</DependentUpon>
</Compile>
<Compile Include="frmPrescription.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmPrescription.Designer.cs">
<DependentUpon>frmPrescription.cs</DependentUpon>
</Compile>
<Compile Include="frmRefill.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmRefill.Designer.cs">
<DependentUpon>frmRefill.cs</DependentUpon>
</Compile>
<Compile Include="frmUpdatePatient.cs">
<SubType>Form</SubType>

View File

@ -0,0 +1,40 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmAddPatientPhysician
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "addPatientPhysician";
}
#endregion
}
}

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Louis__Pharmacy_CNSA212_FP
{
public partial class frmAddPatientPhysician : Form
{
public frmAddPatientPhysician()
{
InitializeComponent();
}
}
}

View File

@ -1,7 +1,7 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmAddPhysician
partial class frmInfo
{
/// <summary>
/// Required designer variable.
@ -32,7 +32,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form2";
this.Text = "frmInfo";
}
#endregion

View File

@ -10,9 +10,9 @@ using System.Windows.Forms;
namespace Louis__Pharmacy_CNSA212_FP
{
public partial class frmAddPatient : Form
public partial class frmInfo : Form
{
public frmAddPatient()
public frmInfo()
{
InitializeComponent();
}

View File

@ -0,0 +1,40 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmPrescription
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "frmPrescription";
}
#endregion
}
}

View File

@ -10,9 +10,9 @@ using System.Windows.Forms;
namespace Louis__Pharmacy_CNSA212_FP
{
public partial class frmAddPhysician : Form
public partial class frmPrescription : Form
{
public frmAddPhysician()
public frmPrescription()
{
InitializeComponent();
}

View File

@ -1,7 +1,7 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmAddPatient
partial class frmRefill
{
/// <summary>
/// Required designer variable.
@ -32,10 +32,9 @@ namespace Louis__Pharmacy_CNSA212_FP
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
this.Text = "frmRefill";
}
#endregion
}
}
}

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Louis__Pharmacy_CNSA212_FP
{
public partial class frmRefill : Form
{
public frmRefill()
{
InitializeComponent();
}
}
}