ISEbd-21_Khatypov_K.R_It-co.../Forms/FormOrganization.Designer.cs
2024-12-23 03:32:54 +04:00

145 lines
5.2 KiB
C#

namespace IT_Company.Forms
{
partial class FormOrganization
{
/// <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()
{
name = new TextBox();
address = new TextBox();
bankAccount = new TextBox();
labelName = new Label();
labelAddress = new Label();
labelBankAccount = new Label();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// name
//
name.Anchor = AnchorStyles.Top | AnchorStyles.Right;
name.Location = new Point(226, 12);
name.Name = "name";
name.Size = new Size(151, 27);
name.TabIndex = 0;
//
// address
//
address.Anchor = AnchorStyles.Top | AnchorStyles.Right;
address.Location = new Point(226, 45);
address.Name = "address";
address.Size = new Size(151, 27);
address.TabIndex = 1;
//
// bankAccount
//
bankAccount.Anchor = AnchorStyles.Top | AnchorStyles.Right;
bankAccount.Location = new Point(226, 78);
bankAccount.Name = "bankAccount";
bankAccount.Size = new Size(151, 27);
bankAccount.TabIndex = 2;
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(12, 15);
labelName.Name = "labelName";
labelName.Size = new Size(176, 20);
labelName.TabIndex = 5;
labelName.Text = "Название организации:";
//
// labelAddress
//
labelAddress.AutoSize = true;
labelAddress.Location = new Point(12, 48);
labelAddress.Name = "labelAddress";
labelAddress.Size = new Size(150, 20);
labelAddress.TabIndex = 6;
labelAddress.Text = "Адрес организации:";
//
// labelBankAccount
//
labelBankAccount.AutoSize = true;
labelBankAccount.Location = new Point(12, 81);
labelBankAccount.Name = "labelBankAccount";
labelBankAccount.Size = new Size(150, 20);
labelBankAccount.TabIndex = 7;
labelBankAccount.Text = "Банковский аккаунт:";
//
// buttonSave
//
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonSave.Location = new Point(12, 323);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 10;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonCancel.Location = new Point(283, 323);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 29);
buttonCancel.TabIndex = 11;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormOrganization
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(389, 362);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(labelBankAccount);
Controls.Add(labelAddress);
Controls.Add(labelName);
Controls.Add(bankAccount);
Controls.Add(address);
Controls.Add(name);
Name = "FormOrganization";
StartPosition = FormStartPosition.CenterParent;
Text = "Исполнитель";
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox name;
private TextBox address;
private TextBox bankAccount;
private Label labelName;
private Label labelAddress;
private Label labelBankAccount;
private Button buttonSave;
private Button buttonCancel;
}
}