PIBD14-Boyko-M.S.-GSM-Autot.../ProjectGSM/Forms/FormCourt.Designer.cs
2024-11-05 03:59:13 +04:00

113 lines
3.6 KiB
C#

namespace ProjectGSM.Forms
{
partial class FormCourt
{
/// <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()
{
nameLabel = new Label();
nameTextBox = new TextBox();
saveButton = new Button();
cancelButton = new Button();
adressLabel = new Label();
adressBox = new TextBox();
SuspendLayout();
//
// nameLabel
//
nameLabel.Location = new Point(10, 10);
nameLabel.Name = "nameLabel";
nameLabel.Size = new Size(100, 23);
nameLabel.TabIndex = 0;
nameLabel.Text = "Название:";
//
// nameTextBox
//
nameTextBox.Location = new Point(116, 10);
nameTextBox.Name = "nameTextBox";
nameTextBox.Size = new Size(120, 23);
nameTextBox.TabIndex = 1;
//
// saveButton
//
saveButton.Location = new Point(116, 101);
saveButton.Name = "saveButton";
saveButton.Size = new Size(75, 23);
saveButton.TabIndex = 4;
saveButton.Text = "Сохранить";
saveButton.Click += saveButton_Click;
//
// cancelButton
//
cancelButton.Location = new Point(197, 101);
cancelButton.Name = "cancelButton";
cancelButton.Size = new Size(75, 23);
cancelButton.TabIndex = 5;
cancelButton.Text = "Отмена";
cancelButton.Click += cancelButton_Click;
//
// adressLabel
//
adressLabel.Location = new Point(10, 50);
adressLabel.Name = "adressLabel";
adressLabel.Size = new Size(111, 23);
adressLabel.TabIndex = 11;
adressLabel.Text = "Адрес:";
//
// adressBox
//
adressBox.Location = new Point(116, 47);
adressBox.Name = "adressBox";
adressBox.Size = new Size(120, 23);
adressBox.TabIndex = 12;
//
// FormCourt
//
ClientSize = new Size(284, 134);
Controls.Add(adressBox);
Controls.Add(adressLabel);
Controls.Add(nameLabel);
Controls.Add(nameTextBox);
Controls.Add(saveButton);
Controls.Add(cancelButton);
Name = "FormCourt";
StartPosition = FormStartPosition.CenterScreen;
Text = "Суд";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label nameLabel;
private TextBox nameTextBox;
private Button saveButton;
private Button cancelButton;
private Label adressLabel;
private TextBox adressBox;
}
}