Created frmWelcome, frmUpdatePatient, frmAddPatient, frmAddPhysician

This commit is contained in:
Noah 2024-01-31 12:11:30 -05:00
parent 9e6e7eead2
commit a7d2f4ece7
10 changed files with 205 additions and 7 deletions

View File

@ -46,11 +46,29 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<Compile Include="frmAddPatient.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="frmAddPatient.Designer.cs">
<DependentUpon>frmAddPatient.cs</DependentUpon>
</Compile>
<Compile Include="frmAddPhysician.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmAddPhysician.Designer.cs">
<DependentUpon>frmAddPhysician.cs</DependentUpon>
</Compile>
<Compile Include="frmUpdatePatient.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmUpdatePatient.Designer.cs">
<DependentUpon>frmUpdatePatient.cs</DependentUpon>
</Compile>
<Compile Include="frmWelcome.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmWelcome.Designer.cs">
<DependentUpon>frmWelcome.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />

View File

@ -16,7 +16,7 @@ namespace Louis__Pharmacy_CNSA212_FP
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
Application.Run(new frmAddPatient());
}
}
}

View File

@ -1,7 +1,7 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class Form1
partial class frmAddPatient
{
/// <summary>
/// Required designer variable.

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 frmAddPatient : Form
{
public frmAddPatient()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,40 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmAddPhysician
{
/// <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 = "Form2";
}
#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 frmAddPhysician : Form
{
public frmAddPhysician()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,40 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmUpdatePatient
{
/// <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 = "frmUpdatePatient";
}
#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 frmUpdatePatient : Form
{
public frmUpdatePatient()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,40 @@

namespace Louis__Pharmacy_CNSA212_FP
{
partial class frmWelcome
{
/// <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 = "frmWelcome";
}
#endregion
}
}

View File

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