1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- namespace data_displayer
- {
- partial class Form2
- {
- /// <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 Windows Form 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()
- {
- 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;
- }
- }
|