Begin work on appointments form

This commit is contained in:
Spudnut2000 2025-06-19 12:52:57 -05:00
parent 8b504a9c79
commit cef0cb9451
3 changed files with 116 additions and 0 deletions

104
C969Project/AppointmentsForm.Designer.cs generated Normal file
View File

@ -0,0 +1,104 @@
using System.ComponentModel;
namespace C969Project;
partial class AppointmentsForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private 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()
{
dataGridView1 = new System.Windows.Forms.DataGridView();
monthCalendar1 = new System.Windows.Forms.MonthCalendar();
button1 = new System.Windows.Forms.Button();
button2 = new System.Windows.Forms.Button();
button3 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
//
// dataGridView1
//
dataGridView1.Location = new System.Drawing.Point(12, 11);
dataGridView1.Name = "dataGridView1";
dataGridView1.Size = new System.Drawing.Size(739, 375);
dataGridView1.TabIndex = 0;
//
// monthCalendar1
//
monthCalendar1.Location = new System.Drawing.Point(763, 11);
monthCalendar1.Name = "monthCalendar1";
monthCalendar1.TabIndex = 1;
//
// button1
//
button1.Location = new System.Drawing.Point(12, 392);
button1.Name = "button1";
button1.Size = new System.Drawing.Size(75, 23);
button1.TabIndex = 2;
button1.Text = "Add";
button1.UseVisualStyleBackColor = true;
//
// button2
//
button2.Location = new System.Drawing.Point(93, 392);
button2.Name = "button2";
button2.Size = new System.Drawing.Size(75, 23);
button2.TabIndex = 3;
button2.Text = "Modify";
button2.UseVisualStyleBackColor = true;
//
// button3
//
button3.Location = new System.Drawing.Point(676, 392);
button3.Name = "button3";
button3.Size = new System.Drawing.Size(75, 23);
button3.TabIndex = 4;
button3.Text = "Delete";
button3.UseVisualStyleBackColor = true;
//
// AppointmentsForm
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(1008, 625);
Controls.Add(button3);
Controls.Add(button2);
Controls.Add(button1);
Controls.Add(monthCalendar1);
Controls.Add(dataGridView1);
Text = "AppointmentsForm";
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
ResumeLayout(false);
}
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.MonthCalendar monthCalendar1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
#endregion
}

View File

@ -0,0 +1,9 @@
namespace C969Project;
public partial class AppointmentsForm : Form
{
public AppointmentsForm()
{
InitializeComponent();
}
}

View File

@ -23,6 +23,9 @@
<Compile Update="AddUpdateCustomerForm.cs"> <Compile Update="AddUpdateCustomerForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="AppointmentsForm.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>