namespace ProjectLibrary.Forms { partial class FBook_Orders { private System.ComponentModel.IContainer components = null; private Label lblBookID; private TextBox txtBookID; private Label lblOrderID; private TextBox txtOrderID; private Button btnSave; protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } private void InitializeComponent() { lblBookID = new Label(); txtBookID = new TextBox(); lblOrderID = new Label(); txtOrderID = new TextBox(); btnSave = new Button(); buttonCancel_Click = new Button(); SuspendLayout(); // // lblBookID // lblBookID.AutoSize = true; lblBookID.Location = new Point(20, 20); lblBookID.Name = "lblBookID"; lblBookID.Size = new Size(71, 20); lblBookID.TabIndex = 0; lblBookID.Text = "ID книги:"; // // txtBookID // txtBookID.Location = new Point(100, 20); txtBookID.Name = "txtBookID"; txtBookID.ReadOnly = true; txtBookID.Size = new Size(200, 27); txtBookID.TabIndex = 1; // // lblOrderID // lblOrderID.AutoSize = true; lblOrderID.Location = new Point(20, 60); lblOrderID.Name = "lblOrderID"; lblOrderID.Size = new Size(76, 20); lblOrderID.TabIndex = 2; lblOrderID.Text = "ID заказа:"; // // txtOrderID // txtOrderID.Location = new Point(100, 60); txtOrderID.Name = "txtOrderID"; txtOrderID.ReadOnly = true; txtOrderID.Size = new Size(200, 27); txtOrderID.TabIndex = 3; // // btnSave // btnSave.Location = new Point(20, 93); btnSave.Name = "btnSave"; btnSave.Size = new Size(100, 30); btnSave.TabIndex = 4; btnSave.Text = "Сохранить"; btnSave.Click += btnSave_Click; // // buttonCancel_Click // buttonCancel_Click.Location = new Point(200, 93); buttonCancel_Click.Name = "buttonCancel_Click"; buttonCancel_Click.Size = new Size(100, 30); buttonCancel_Click.TabIndex = 10; buttonCancel_Click.Text = "Отмена"; buttonCancel_Click.Click += buttonCancel_Click_Click; // // FBook_Orders // ClientSize = new Size(400, 200); Controls.Add(buttonCancel_Click); Controls.Add(lblBookID); Controls.Add(txtBookID); Controls.Add(lblOrderID); Controls.Add(txtOrderID); Controls.Add(btnSave); Name = "FBook_Orders"; Text = "Книга и заказ"; ResumeLayout(false); PerformLayout(); } private Button buttonCancel_Click; } }