124 lines
4.8 KiB
C#
124 lines
4.8 KiB
C#
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()
|
|
{
|
|
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();
|
|
((System.ComponentModel.ISupportInitialize)appointmentDataView).BeginInit();
|
|
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;
|
|
//
|
|
// AppointmentsForm
|
|
//
|
|
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
ClientSize = new System.Drawing.Size(1008, 575);
|
|
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();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
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
|
|
} |