Pibd-14_Eredavkin.R.A_Cours.../CourseWorkEreda копия/FormInput.Designer.cs
2024-05-27 17:45:42 +04:00

86 lines
2.9 KiB
C#

namespace CourseWorkEreda
{
partial class FormInput
{
/// <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()
{
labelAbout = new Label();
numElement = new NumericUpDown();
buttonAdd = new Button();
((System.ComponentModel.ISupportInitialize)numElement).BeginInit();
SuspendLayout();
//
// labelAbout
//
labelAbout.AutoSize = true;
labelAbout.Location = new Point(50, 21);
labelAbout.Name = "labelAbout";
labelAbout.Size = new Size(94, 15);
labelAbout.TabIndex = 0;
labelAbout.Text = "Введите данные";
labelAbout.Click += label1_Click;
//
// numElement
//
numElement.Location = new Point(23, 39);
numElement.Name = "numElement";
numElement.Size = new Size(162, 23);
numElement.TabIndex = 1;
numElement.ValueChanged += numElement_ValueChanged;
//
// buttonAdd
//
buttonAdd.Location = new Point(23, 79);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(151, 65);
buttonAdd.TabIndex = 2;
buttonAdd.Text = "Вставка нового Элемента";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// FormInput
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(214, 184);
Controls.Add(buttonAdd);
Controls.Add(numElement);
Controls.Add(labelAbout);
Name = "FormInput";
Text = "FormInput";
((System.ComponentModel.ISupportInitialize)numElement).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelAbout;
private NumericUpDown numElement;
private Button buttonAdd;
}
}