namespace data_displayer
{
partial class Form2
{
///
/// 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 Windows Form 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(Form2));
dateTimePicker1 = new DateTimePicker();
label1 = new Label();
SuspendLayout();
//
// dateTimePicker1
//
dateTimePicker1.Location = new Point(162, 12);
dateTimePicker1.Name = "dateTimePicker1";
dateTimePicker1.Size = new Size(200, 23);
dateTimePicker1.TabIndex = 0;
dateTimePicker1.Value = new DateTime(1753, 1, 1, 0, 0, 0, 0);
dateTimePicker1.ValueChanged += dateTimePicker1_ValueChanged;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 18);
label1.Name = "label1";
label1.Size = new Size(144, 15);
label1.TabIndex = 1;
label1.Text = "Start of the teaching week";
//
// Form2
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(375, 48);
Controls.Add(label1);
Controls.Add(dateTimePicker1);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "Form2";
Text = "Settings - Data Displayer";
ResumeLayout(false);
PerformLayout();
}
#endregion
private DateTimePicker dateTimePicker1;
private Label label1;
}
}