151 lines
6.8 KiB
C#
151 lines
6.8 KiB
C#
namespace IndianHealthService.ClinicalScheduling
|
|
{
|
|
partial class DMassSlotDelete
|
|
{
|
|
/// <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.dtStart = new System.Windows.Forms.DateTimePicker();
|
|
this.dtEnd = new System.Windows.Forms.DateTimePicker();
|
|
this.lblStart = new System.Windows.Forms.Label();
|
|
this.lblEnd = new System.Windows.Forms.Label();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dtStart
|
|
//
|
|
this.dtStart.Location = new System.Drawing.Point(163, 68);
|
|
this.dtStart.Name = "dtStart";
|
|
this.dtStart.Size = new System.Drawing.Size(200, 20);
|
|
this.dtStart.TabIndex = 0;
|
|
//
|
|
// dtEnd
|
|
//
|
|
this.dtEnd.Location = new System.Drawing.Point(163, 135);
|
|
this.dtEnd.Name = "dtEnd";
|
|
this.dtEnd.Size = new System.Drawing.Size(200, 20);
|
|
this.dtEnd.TabIndex = 1;
|
|
//
|
|
// lblStart
|
|
//
|
|
this.lblStart.AutoSize = true;
|
|
this.lblStart.Location = new System.Drawing.Point(24, 68);
|
|
this.lblStart.Name = "lblStart";
|
|
this.lblStart.Size = new System.Drawing.Size(57, 13);
|
|
this.lblStart.TabIndex = 2;
|
|
this.lblStart.Text = "Start Date";
|
|
//
|
|
// lblEnd
|
|
//
|
|
this.lblEnd.AutoSize = true;
|
|
this.lblEnd.Location = new System.Drawing.Point(24, 135);
|
|
this.lblEnd.Name = "lblEnd";
|
|
this.lblEnd.Size = new System.Drawing.Size(51, 13);
|
|
this.lblEnd.TabIndex = 3;
|
|
this.lblEnd.Text = "End Date";
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(3, 3);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 4;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(94, 3);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 5;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.tableLayoutPanel1.ColumnCount = 2;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.62406F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.37594F));
|
|
this.tableLayoutPanel1.Controls.Add(this.btnOK, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.btnCancel, 1, 0);
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(307, 226);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 1;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(185, 29);
|
|
this.tableLayoutPanel1.TabIndex = 6;
|
|
//
|
|
// errorProvider
|
|
//
|
|
this.errorProvider.ContainerControl = this;
|
|
//
|
|
// DMassSlotDelete
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(504, 267);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Controls.Add(this.lblEnd);
|
|
this.Controls.Add(this.lblStart);
|
|
this.Controls.Add(this.dtEnd);
|
|
this.Controls.Add(this.dtStart);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Name = "DMassSlotDelete";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "Mass Slot Delete";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DateTimePicker dtStart;
|
|
private System.Windows.Forms.DateTimePicker dtEnd;
|
|
private System.Windows.Forms.Label lblStart;
|
|
private System.Windows.Forms.Label lblEnd;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.ErrorProvider errorProvider;
|
|
}
|
|
} |