97 lines
3.9 KiB
C#
97 lines
3.9 KiB
C#
|
namespace VisableComponents
|
|||
|
{
|
|||
|
partial class MyTextBoxDate
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Обязательная переменная конструктора.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Освободить все используемые ресурсы.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Код, автоматически созданный конструктором компонентов
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Требуемый метод для поддержки конструктора — не изменяйте
|
|||
|
/// содержимое этого метода с помощью редактора кода.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|||
|
this.labelMin = new System.Windows.Forms.Label();
|
|||
|
this.labelMax = new System.Windows.Forms.Label();
|
|||
|
this.panel = new System.Windows.Forms.Panel();
|
|||
|
this.panel.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// dateTimePicker
|
|||
|
//
|
|||
|
this.dateTimePicker.Location = new System.Drawing.Point(12, 22);
|
|||
|
this.dateTimePicker.MaxDate = new System.DateTime(9998, 12, 3, 0, 0, 0, 0);
|
|||
|
this.dateTimePicker.MinDate = new System.DateTime(1753, 1, 2, 0, 0, 0, 0);
|
|||
|
this.dateTimePicker.Name = "dateTimePicker";
|
|||
|
this.dateTimePicker.Size = new System.Drawing.Size(200, 22);
|
|||
|
this.dateTimePicker.TabIndex = 0;
|
|||
|
this.dateTimePicker.ValueChanged += new System.EventHandler(this.dateTimePicker_ValueChanged);
|
|||
|
//
|
|||
|
// labelMin
|
|||
|
//
|
|||
|
this.labelMin.AutoSize = true;
|
|||
|
this.labelMin.Location = new System.Drawing.Point(27, 0);
|
|||
|
this.labelMin.Name = "labelMin";
|
|||
|
this.labelMin.Size = new System.Drawing.Size(28, 16);
|
|||
|
this.labelMin.TabIndex = 2;
|
|||
|
this.labelMin.Text = "Min";
|
|||
|
//
|
|||
|
// labelMax
|
|||
|
//
|
|||
|
this.labelMax.AutoSize = true;
|
|||
|
this.labelMax.Location = new System.Drawing.Point(186, 0);
|
|||
|
this.labelMax.Name = "labelMax";
|
|||
|
this.labelMax.Size = new System.Drawing.Size(32, 16);
|
|||
|
this.labelMax.TabIndex = 3;
|
|||
|
this.labelMax.Text = "Max";
|
|||
|
//
|
|||
|
// panel
|
|||
|
//
|
|||
|
this.panel.Controls.Add(this.dateTimePicker);
|
|||
|
this.panel.Location = new System.Drawing.Point(30, 19);
|
|||
|
this.panel.Name = "panel";
|
|||
|
this.panel.Size = new System.Drawing.Size(226, 72);
|
|||
|
this.panel.TabIndex = 4;
|
|||
|
//
|
|||
|
// MyTextBoxDate
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.panel);
|
|||
|
this.Controls.Add(this.labelMax);
|
|||
|
this.Controls.Add(this.labelMin);
|
|||
|
this.Name = "MyTextBoxDate";
|
|||
|
this.Size = new System.Drawing.Size(316, 150);
|
|||
|
this.panel.ResumeLayout(false);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.DateTimePicker dateTimePicker;
|
|||
|
private System.Windows.Forms.Label labelMin;
|
|||
|
private System.Windows.Forms.Label labelMax;
|
|||
|
private System.Windows.Forms.Panel panel;
|
|||
|
}
|
|||
|
}
|