using System.ComponentModel;
namespace C969Project;
partial class AppointmentsForm
{
///
/// Required designer variable.
///
private IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
appointmentDataView = new System.Windows.Forms.DataGridView();
calendar = new System.Windows.Forms.MonthCalendar();
addButton = new System.Windows.Forms.Button();
modifyButton = new System.Windows.Forms.Button();
deleteButton = new System.Windows.Forms.Button();
showAllButton = new System.Windows.Forms.Button();
appointmentDetails = new System.Windows.Forms.GroupBox();
endTimeLabel = new System.Windows.Forms.Label();
startTimeLabel = new System.Windows.Forms.Label();
withLabel = new System.Windows.Forms.Label();
apptTypeLabel = new System.Windows.Forms.Label();
apptTitleLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)appointmentDataView).BeginInit();
appointmentDetails.SuspendLayout();
SuspendLayout();
//
// appointmentDataView
//
appointmentDataView.AllowUserToAddRows = false;
appointmentDataView.AllowUserToDeleteRows = false;
appointmentDataView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right));
appointmentDataView.Location = new System.Drawing.Point(12, 11);
appointmentDataView.Name = "appointmentDataView";
appointmentDataView.ReadOnly = true;
appointmentDataView.Size = new System.Drawing.Size(739, 523);
appointmentDataView.TabIndex = 0;
//
// calendar
//
calendar.Anchor = ((System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right));
calendar.Location = new System.Drawing.Point(773, 11);
calendar.Name = "calendar";
calendar.TabIndex = 1;
//
// addButton
//
addButton.Location = new System.Drawing.Point(12, 540);
addButton.Name = "addButton";
addButton.Size = new System.Drawing.Size(75, 23);
addButton.TabIndex = 2;
addButton.Text = "Add";
addButton.UseVisualStyleBackColor = true;
//
// modifyButton
//
modifyButton.Location = new System.Drawing.Point(93, 540);
modifyButton.Name = "modifyButton";
modifyButton.Size = new System.Drawing.Size(75, 23);
modifyButton.TabIndex = 3;
modifyButton.Text = "Modify";
modifyButton.UseVisualStyleBackColor = true;
//
// deleteButton
//
deleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right));
deleteButton.Location = new System.Drawing.Point(676, 540);
deleteButton.Name = "deleteButton";
deleteButton.Size = new System.Drawing.Size(75, 23);
deleteButton.TabIndex = 4;
deleteButton.Text = "Delete";
deleteButton.UseVisualStyleBackColor = true;
//
// showAllButton
//
showAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right));
showAllButton.Location = new System.Drawing.Point(773, 185);
showAllButton.Name = "showAllButton";
showAllButton.Size = new System.Drawing.Size(227, 23);
showAllButton.TabIndex = 5;
showAllButton.Text = "Show All Appointments";
showAllButton.UseVisualStyleBackColor = true;
//
// appointmentDetails
//
appointmentDetails.Controls.Add(endTimeLabel);
appointmentDetails.Controls.Add(startTimeLabel);
appointmentDetails.Controls.Add(withLabel);
appointmentDetails.Controls.Add(apptTypeLabel);
appointmentDetails.Controls.Add(apptTitleLabel);
appointmentDetails.Location = new System.Drawing.Point(773, 214);
appointmentDetails.Name = "appointmentDetails";
appointmentDetails.Size = new System.Drawing.Size(223, 320);
appointmentDetails.TabIndex = 6;
appointmentDetails.TabStop = false;
appointmentDetails.Text = "Details";
//
// endTimeLabel
//
endTimeLabel.Location = new System.Drawing.Point(6, 111);
endTimeLabel.Name = "endTimeLabel";
endTimeLabel.Size = new System.Drawing.Size(211, 23);
endTimeLabel.TabIndex = 4;
endTimeLabel.Text = "End: ";
endTimeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// startTimeLabel
//
startTimeLabel.Location = new System.Drawing.Point(6, 88);
startTimeLabel.Name = "startTimeLabel";
startTimeLabel.Size = new System.Drawing.Size(211, 23);
startTimeLabel.TabIndex = 3;
startTimeLabel.Text = "Start: ";
startTimeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// withLabel
//
withLabel.Location = new System.Drawing.Point(6, 65);
withLabel.Name = "withLabel";
withLabel.Size = new System.Drawing.Size(211, 23);
withLabel.TabIndex = 2;
withLabel.Text = "With: ";
withLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// apptTypeLabel
//
apptTypeLabel.Location = new System.Drawing.Point(6, 42);
apptTypeLabel.Name = "apptTypeLabel";
apptTypeLabel.Size = new System.Drawing.Size(211, 23);
apptTypeLabel.TabIndex = 1;
apptTypeLabel.Text = "Type: ";
apptTypeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// apptTitleLabel
//
apptTitleLabel.Location = new System.Drawing.Point(6, 19);
apptTitleLabel.Name = "apptTitleLabel";
apptTitleLabel.Size = new System.Drawing.Size(211, 23);
apptTitleLabel.TabIndex = 0;
apptTitleLabel.Text = "Title: ";
apptTitleLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// AppointmentsForm
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(1008, 575);
Controls.Add(appointmentDetails);
Controls.Add(showAllButton);
Controls.Add(deleteButton);
Controls.Add(modifyButton);
Controls.Add(addButton);
Controls.Add(calendar);
Controls.Add(appointmentDataView);
Text = "AppointmentsForm";
((System.ComponentModel.ISupportInitialize)appointmentDataView).EndInit();
appointmentDetails.ResumeLayout(false);
ResumeLayout(false);
}
private System.Windows.Forms.Label apptTypeLabel;
private System.Windows.Forms.Label withLabel;
private System.Windows.Forms.Label startTimeLabel;
private System.Windows.Forms.Label endTimeLabel;
private System.Windows.Forms.Label apptTitleLabel;
private System.Windows.Forms.GroupBox appointmentDetails;
private System.Windows.Forms.Button showAllButton;
private System.Windows.Forms.DataGridView appointmentDataView;
private System.Windows.Forms.MonthCalendar calendar;
private System.Windows.Forms.Button addButton;
private System.Windows.Forms.Button modifyButton;
private System.Windows.Forms.Button deleteButton;
#endregion
}