namespace Inet.Viewer.WinForms.Prompt
{
///
/// a ComboBox for selecting a DateTime value
///
partial class DateTimeComboBox
{
///
/// 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()
{
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
this.comboBox = new System.Windows.Forms.ComboBox();
this.button = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// dateTimePicker
//
this.dateTimePicker.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dateTimePicker.Location = new System.Drawing.Point(0, 0);
this.dateTimePicker.Name = "dateTimePicker";
this.dateTimePicker.Size = new System.Drawing.Size(200, 20);
this.dateTimePicker.TabIndex = 0;
this.dateTimePicker.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
//
// comboBox
//
this.comboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox.FormattingEnabled = true;
this.comboBox.Location = new System.Drawing.Point(0, 0);
this.comboBox.Name = "comboBox";
this.comboBox.Size = new System.Drawing.Size(221, 21);
this.comboBox.TabIndex = 1;
this.comboBox.Visible = false;
this.comboBox.DropDownClosed += new System.EventHandler(this.comboBox1_DropDownClosed);
this.comboBox.SelectedValueChanged += new System.EventHandler(this.comboBox_SelectedValueChanged);
//
// button
//
this.button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.button.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.button.FlatAppearance.BorderColor = System.Drawing.SystemColors.ActiveBorder;
this.button.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button.Image = global::Inet.Viewer.Images.dropdown;
this.button.Location = new System.Drawing.Point(200, 0);
this.button.Name = "button";
this.button.Size = new System.Drawing.Size(21, 20);
this.button.TabIndex = 2;
this.button.UseVisualStyleBackColor = false;
this.button.Click += new System.EventHandler(this.button1_Click);
//
// DateTimeComboBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.button);
this.Controls.Add(this.dateTimePicker);
this.Controls.Add(this.comboBox);
this.Name = "DateTimeComboBox";
this.Size = new System.Drawing.Size(221, 22);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DateTimePicker dateTimePicker;
private System.Windows.Forms.ComboBox comboBox;
private System.Windows.Forms.Button button;
}
}