SUBD/LabWork/LabWork/FormContact.Designer.cs

118 lines
3.0 KiB
C#

namespace LabWork
{
partial class FormContact
{
/// <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()
{
textBoxName = new TextBox();
textBoxNumber = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
label1 = new Label();
label2 = new Label();
SuspendLayout();
//
// textBoxName
//
textBoxName.Location = new Point(190, 51);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(438, 31);
textBoxName.TabIndex = 0;
//
// textBoxNumber
//
textBoxNumber.Location = new Point(190, 132);
textBoxNumber.Name = "textBoxNumber";
textBoxNumber.Size = new Size(438, 31);
textBoxNumber.TabIndex = 1;
//
// buttonSave
//
buttonSave.Location = new Point(475, 207);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(112, 43);
buttonSave.TabIndex = 2;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(616, 207);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(112, 43);
buttonCancel.TabIndex = 3;
buttonCancel.Text = "Отменить";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(55, 54);
label1.Name = "label1";
label1.Size = new Size(127, 25);
label1.TabIndex = 4;
label1.Text = "Имя контакта:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(109, 135);
label2.Name = "label2";
label2.Size = new Size(73, 25);
label2.TabIndex = 5;
label2.Text = "Номер:";
//
// FormContact
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 288);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxNumber);
Controls.Add(textBoxName);
Name = "FormContact";
Text = "Редактирование контакта";
Load += FormComponent_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBoxName;
private TextBox textBoxNumber;
private Button buttonSave;
private Button buttonCancel;
private Label label1;
private Label label2;
}
}