namespace Microsoft.Win32.TaskScheduler
{
public partial class FullDateTimePicker
{
///
/// Required designer variable.
///
private System.ComponentModel.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 Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FullDateTimePicker));
this.dateTimePickerDate = new System.Windows.Forms.DateTimePicker();
this.tableLayoutPanelFullDateTime = new System.Windows.Forms.TableLayoutPanel();
this.dateTimePickerTime = new System.Windows.Forms.DateTimePicker();
this.utcCheckBox = new System.Windows.Forms.CheckBox();
this.tableLayoutPanelFullDateTime.SuspendLayout();
this.SuspendLayout();
//
// dateTimePickerDate
//
this.dateTimePickerDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
resources.ApplyResources(this.dateTimePickerDate, "dateTimePickerDate");
this.dateTimePickerDate.Name = "dateTimePickerDate";
this.dateTimePickerDate.ValueChanged += new System.EventHandler(this.subControl_ValueChanged);
//
// tableLayoutPanelFullDateTime
//
resources.ApplyResources(this.tableLayoutPanelFullDateTime, "tableLayoutPanelFullDateTime");
this.tableLayoutPanelFullDateTime.Controls.Add(this.dateTimePickerDate, 0, 0);
this.tableLayoutPanelFullDateTime.Controls.Add(this.dateTimePickerTime, 1, 0);
this.tableLayoutPanelFullDateTime.Controls.Add(this.utcCheckBox, 2, 0);
this.tableLayoutPanelFullDateTime.Name = "tableLayoutPanelFullDateTime";
//
// dateTimePickerTime
//
this.dateTimePickerTime.Format = System.Windows.Forms.DateTimePickerFormat.Time;
resources.ApplyResources(this.dateTimePickerTime, "dateTimePickerTime");
this.dateTimePickerTime.Name = "dateTimePickerTime";
this.dateTimePickerTime.ShowUpDown = true;
this.dateTimePickerTime.ValueChanged += new System.EventHandler(this.subControl_ValueChanged);
//
// utcCheckBox
//
resources.ApplyResources(this.utcCheckBox, "utcCheckBox");
this.utcCheckBox.Name = "utcCheckBox";
this.utcCheckBox.UseVisualStyleBackColor = true;
this.utcCheckBox.CheckedChanged += new System.EventHandler(this.subControl_ValueChanged);
//
// FullDateTimePicker
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanelFullDateTime);
this.Name = "FullDateTimePicker";
this.Load += new System.EventHandler(this.FullDateTimePicker_Load);
this.RightToLeftChanged += new System.EventHandler(this.FullDateTimePicker_RightToLeftChanged);
this.tableLayoutPanelFullDateTime.ResumeLayout(false);
this.tableLayoutPanelFullDateTime.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DateTimePicker dateTimePickerDate;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanelFullDateTime;
private System.Windows.Forms.DateTimePicker dateTimePickerTime;
private System.Windows.Forms.CheckBox utcCheckBox;
}
}