namespace CourseWorkEreda { partial class FormInput { /// /// 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() { 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; } }