127 lines
4.1 KiB
C#
127 lines
4.1 KiB
C#
namespace ProjectLibrary.Forms
|
|
{
|
|
partial class FBook_library
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
private Label lblBookID;
|
|
private TextBox txtBookID;
|
|
private Label lblLibraryID;
|
|
private TextBox txtLibraryID;
|
|
private Label lblCount;
|
|
private TextBox txtCount;
|
|
private Button btnSave;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
lblBookID = new Label();
|
|
txtBookID = new TextBox();
|
|
lblLibraryID = new Label();
|
|
txtLibraryID = new TextBox();
|
|
lblCount = new Label();
|
|
txtCount = 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(140, 20);
|
|
txtBookID.Name = "txtBookID";
|
|
txtBookID.ReadOnly = true;
|
|
txtBookID.Size = new Size(200, 27);
|
|
txtBookID.TabIndex = 1;
|
|
//
|
|
// lblLibraryID
|
|
//
|
|
lblLibraryID.AutoSize = true;
|
|
lblLibraryID.Location = new Point(20, 60);
|
|
lblLibraryID.Name = "lblLibraryID";
|
|
lblLibraryID.Size = new Size(114, 20);
|
|
lblLibraryID.TabIndex = 2;
|
|
lblLibraryID.Text = "ID библиотеки:";
|
|
//
|
|
// txtLibraryID
|
|
//
|
|
txtLibraryID.Location = new Point(140, 57);
|
|
txtLibraryID.Name = "txtLibraryID";
|
|
txtLibraryID.ReadOnly = true;
|
|
txtLibraryID.Size = new Size(200, 27);
|
|
txtLibraryID.TabIndex = 3;
|
|
//
|
|
// lblCount
|
|
//
|
|
lblCount.AutoSize = true;
|
|
lblCount.Location = new Point(20, 100);
|
|
lblCount.Name = "lblCount";
|
|
lblCount.Size = new Size(93, 20);
|
|
lblCount.TabIndex = 4;
|
|
lblCount.Text = "Количество:";
|
|
//
|
|
// txtCount
|
|
//
|
|
txtCount.Location = new Point(140, 93);
|
|
txtCount.Name = "txtCount";
|
|
txtCount.Size = new Size(200, 27);
|
|
txtCount.TabIndex = 5;
|
|
//
|
|
// btnSave
|
|
//
|
|
btnSave.Location = new Point(20, 140);
|
|
btnSave.Name = "btnSave";
|
|
btnSave.Size = new Size(100, 30);
|
|
btnSave.TabIndex = 6;
|
|
btnSave.Text = "Сохранить";
|
|
btnSave.Click += btnSave_Click;
|
|
//
|
|
// buttonCancel_Click
|
|
//
|
|
buttonCancel_Click.Location = new Point(240, 140);
|
|
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_library
|
|
//
|
|
ClientSize = new Size(400, 200);
|
|
Controls.Add(buttonCancel_Click);
|
|
Controls.Add(lblBookID);
|
|
Controls.Add(txtBookID);
|
|
Controls.Add(lblLibraryID);
|
|
Controls.Add(txtLibraryID);
|
|
Controls.Add(lblCount);
|
|
Controls.Add(txtCount);
|
|
Controls.Add(btnSave);
|
|
Name = "FBook_library";
|
|
Text = "Книга в библиотеке";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
#endregion
|
|
|
|
private Button buttonCancel_Click;
|
|
}
|
|
}
|