107 lines
4.2 KiB
C#
107 lines
4.2 KiB
C#
namespace ResultsBrowser.Filters
|
|
{
|
|
partial class DateFilterUI
|
|
{
|
|
/// <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 Component 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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.toLabel = new System.Windows.Forms.Label();
|
|
this.toDateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.fromLabel = new System.Windows.Forms.Label();
|
|
this.fromDateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.toLabel);
|
|
this.groupBox1.Controls.Add(this.toDateTimePicker);
|
|
this.groupBox1.Controls.Add(this.fromLabel);
|
|
this.groupBox1.Controls.Add(this.fromDateTimePicker);
|
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.groupBox1.Location = new System.Drawing.Point(0, 0);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(835, 40);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Date";
|
|
//
|
|
// toLabel
|
|
//
|
|
this.toLabel.AutoSize = true;
|
|
this.toLabel.Location = new System.Drawing.Point(390, 16);
|
|
this.toLabel.Name = "toLabel";
|
|
this.toLabel.Size = new System.Drawing.Size(20, 13);
|
|
this.toLabel.TabIndex = 6;
|
|
this.toLabel.Text = "To";
|
|
//
|
|
// toDateTimePicker
|
|
//
|
|
this.toDateTimePicker.Location = new System.Drawing.Point(430, 13);
|
|
this.toDateTimePicker.Name = "toDateTimePicker";
|
|
this.toDateTimePicker.Size = new System.Drawing.Size(151, 20);
|
|
this.toDateTimePicker.TabIndex = 5;
|
|
//
|
|
// fromLabel
|
|
//
|
|
this.fromLabel.AutoSize = true;
|
|
this.fromLabel.Location = new System.Drawing.Point(128, 17);
|
|
this.fromLabel.Name = "fromLabel";
|
|
this.fromLabel.Size = new System.Drawing.Size(30, 13);
|
|
this.fromLabel.TabIndex = 4;
|
|
this.fromLabel.Text = "From";
|
|
//
|
|
// fromDateTimePicker
|
|
//
|
|
this.fromDateTimePicker.Location = new System.Drawing.Point(168, 13);
|
|
this.fromDateTimePicker.Name = "fromDateTimePicker";
|
|
this.fromDateTimePicker.Size = new System.Drawing.Size(151, 20);
|
|
this.fromDateTimePicker.TabIndex = 3;
|
|
//
|
|
// DateFilter
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Name = "DateFilter";
|
|
this.Size = new System.Drawing.Size(835, 40);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.Label fromLabel;
|
|
private System.Windows.Forms.DateTimePicker fromDateTimePicker;
|
|
private System.Windows.Forms.Label toLabel;
|
|
private System.Windows.Forms.DateTimePicker toDateTimePicker;
|
|
}
|
|
}
|