163 lines
5.6 KiB
C#
163 lines
5.6 KiB
C#
namespace viewmodel
|
|
{
|
|
partial class FormClient
|
|
{
|
|
/// <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()
|
|
{
|
|
labelOrganization = new Label();
|
|
textBoxName = new TextBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
textBox1 = new TextBox();
|
|
labelContact = new Label();
|
|
textBox2 = new TextBox();
|
|
labelPhone = new Label();
|
|
textBox3 = new TextBox();
|
|
labelEmail = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// labelOrganization
|
|
//
|
|
labelOrganization.AutoSize = true;
|
|
labelOrganization.Location = new Point(12, 20);
|
|
labelOrganization.Name = "labelOrganization";
|
|
labelOrganization.Size = new Size(108, 15);
|
|
labelOrganization.TabIndex = 0;
|
|
labelOrganization.Text = "Имя организации:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(116, 12);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(208, 23);
|
|
textBoxName.TabIndex = 2;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(247, 130);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(77, 30);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(164, 130);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(83, 30);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// textBox1
|
|
//
|
|
textBox1.Location = new Point(116, 41);
|
|
textBox1.Name = "textBox1";
|
|
textBox1.Size = new Size(208, 23);
|
|
textBox1.TabIndex = 9;
|
|
//
|
|
// labelContact
|
|
//
|
|
labelContact.AutoSize = true;
|
|
labelContact.Location = new Point(12, 44);
|
|
labelContact.Name = "labelContact";
|
|
labelContact.Size = new Size(104, 15);
|
|
labelContact.TabIndex = 8;
|
|
labelContact.Text = "Контактное лицо:";
|
|
labelContact.UseWaitCursor = true;
|
|
//
|
|
// textBox2
|
|
//
|
|
textBox2.Location = new Point(116, 70);
|
|
textBox2.Name = "textBox2";
|
|
textBox2.Size = new Size(208, 23);
|
|
textBox2.TabIndex = 11;
|
|
//
|
|
// labelPhone
|
|
//
|
|
labelPhone.AutoSize = true;
|
|
labelPhone.Location = new Point(12, 78);
|
|
labelPhone.Name = "labelPhone";
|
|
labelPhone.Size = new Size(58, 15);
|
|
labelPhone.TabIndex = 10;
|
|
labelPhone.Text = "Телефон:";
|
|
//
|
|
// textBox3
|
|
//
|
|
textBox3.Location = new Point(116, 101);
|
|
textBox3.Name = "textBox3";
|
|
textBox3.Size = new Size(208, 23);
|
|
textBox3.TabIndex = 13;
|
|
//
|
|
// labelEmail
|
|
//
|
|
labelEmail.AutoSize = true;
|
|
labelEmail.Location = new Point(12, 109);
|
|
labelEmail.Name = "labelEmail";
|
|
labelEmail.Size = new Size(44, 15);
|
|
labelEmail.TabIndex = 12;
|
|
labelEmail.Text = "Почта:";
|
|
//
|
|
// FormClient
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(393, 194);
|
|
Controls.Add(textBox3);
|
|
Controls.Add(labelEmail);
|
|
Controls.Add(textBox2);
|
|
Controls.Add(labelPhone);
|
|
Controls.Add(textBox1);
|
|
Controls.Add(labelContact);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelOrganization);
|
|
Name = "FormClient";
|
|
Text = "Покупатель";
|
|
Load += FormClient_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelOrganization;
|
|
private TextBox textBoxName;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
private TextBox textBox1;
|
|
private Label labelContact;
|
|
private TextBox textBox2;
|
|
private Label labelPhone;
|
|
private TextBox textBox3;
|
|
private Label labelEmail;
|
|
}
|
|
} |