namespace ProjectGSM.Forms { partial class FormCourt { /// /// 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() { 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; } }