82 lines
2.6 KiB
C#
82 lines
2.6 KiB
C#
|
namespace lab4
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
dateTimePicker = new DateTimePicker();
|
|||
|
label1 = new Label();
|
|||
|
numericUpDown = new NumericUpDown();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDown).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// dateTimePicker
|
|||
|
//
|
|||
|
dateTimePicker.Location = new Point(12, 12);
|
|||
|
dateTimePicker.Name = "dateTimePicker";
|
|||
|
dateTimePicker.Size = new Size(250, 27);
|
|||
|
dateTimePicker.TabIndex = 0;
|
|||
|
dateTimePicker.ValueChanged += dateTimePicker_ValueChanged;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(12, 57);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(0, 20);
|
|||
|
label1.TabIndex = 1;
|
|||
|
//
|
|||
|
// numericUpDown
|
|||
|
//
|
|||
|
numericUpDown.Location = new Point(290, 12);
|
|||
|
numericUpDown.Name = "numericUpDown";
|
|||
|
numericUpDown.Size = new Size(150, 27);
|
|||
|
numericUpDown.TabIndex = 2;
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(numericUpDown);
|
|||
|
Controls.Add(label1);
|
|||
|
Controls.Add(dateTimePicker);
|
|||
|
Name = "Form1";
|
|||
|
Text = "Form1";
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDown).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DateTimePicker dateTimePicker;
|
|||
|
private Label label1;
|
|||
|
private NumericUpDown numericUpDown;
|
|||
|
}
|
|||
|
}
|