168 lines
5.7 KiB
C#
168 lines
5.7 KiB
C#
namespace ProjectLibrary.Forms
|
|
{
|
|
partial class FOrders
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
private Label lblOrderID;
|
|
private TextBox txtOrderID;
|
|
private Label lblOrderDate;
|
|
private TextBox txtOrderDate;
|
|
private Label lblReturnDate;
|
|
private TextBox txtReturnDate;
|
|
private Label lblReaderID;
|
|
private TextBox txtReaderID;
|
|
private Label lblBookID;
|
|
private TextBox txtBookID;
|
|
private Button btnSave;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
lblOrderID = new Label();
|
|
txtOrderID = new TextBox();
|
|
lblOrderDate = new Label();
|
|
txtOrderDate = new TextBox();
|
|
lblReturnDate = new Label();
|
|
txtReturnDate = new TextBox();
|
|
lblReaderID = new Label();
|
|
txtReaderID = new TextBox();
|
|
lblBookID = new Label();
|
|
txtBookID = new TextBox();
|
|
btnSave = new Button();
|
|
buttonCancel_Click = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// lblOrderID
|
|
//
|
|
lblOrderID.AutoSize = true;
|
|
lblOrderID.Location = new Point(20, 20);
|
|
lblOrderID.Name = "lblOrderID";
|
|
lblOrderID.Size = new Size(76, 20);
|
|
lblOrderID.TabIndex = 0;
|
|
lblOrderID.Text = "ID заказа:";
|
|
//
|
|
// txtOrderID
|
|
//
|
|
txtOrderID.Location = new Point(137, 20);
|
|
txtOrderID.Name = "txtOrderID";
|
|
txtOrderID.ReadOnly = true;
|
|
txtOrderID.Size = new Size(200, 27);
|
|
txtOrderID.TabIndex = 1;
|
|
//
|
|
// lblOrderDate
|
|
//
|
|
lblOrderDate.AutoSize = true;
|
|
lblOrderDate.Location = new Point(20, 60);
|
|
lblOrderDate.Name = "lblOrderDate";
|
|
lblOrderDate.Size = new Size(93, 20);
|
|
lblOrderDate.TabIndex = 2;
|
|
lblOrderDate.Text = "Дата заказа:";
|
|
//
|
|
// txtOrderDate
|
|
//
|
|
txtOrderDate.Location = new Point(137, 60);
|
|
txtOrderDate.Name = "txtOrderDate";
|
|
txtOrderDate.Size = new Size(200, 27);
|
|
txtOrderDate.TabIndex = 3;
|
|
//
|
|
// lblReturnDate
|
|
//
|
|
lblReturnDate.AutoSize = true;
|
|
lblReturnDate.Location = new Point(20, 100);
|
|
lblReturnDate.Name = "lblReturnDate";
|
|
lblReturnDate.Size = new Size(111, 20);
|
|
lblReturnDate.TabIndex = 4;
|
|
lblReturnDate.Text = "Дата возврата:";
|
|
//
|
|
// txtReturnDate
|
|
//
|
|
txtReturnDate.Location = new Point(137, 100);
|
|
txtReturnDate.Name = "txtReturnDate";
|
|
txtReturnDate.Size = new Size(200, 27);
|
|
txtReturnDate.TabIndex = 5;
|
|
//
|
|
// lblReaderID
|
|
//
|
|
lblReaderID.AutoSize = true;
|
|
lblReaderID.Location = new Point(20, 140);
|
|
lblReaderID.Name = "lblReaderID";
|
|
lblReaderID.Size = new Size(92, 20);
|
|
lblReaderID.TabIndex = 6;
|
|
lblReaderID.Text = "ID читателя:";
|
|
//
|
|
// txtReaderID
|
|
//
|
|
txtReaderID.Location = new Point(137, 140);
|
|
txtReaderID.Name = "txtReaderID";
|
|
txtReaderID.Size = new Size(200, 27);
|
|
txtReaderID.TabIndex = 7;
|
|
//
|
|
// lblBookID
|
|
//
|
|
lblBookID.AutoSize = true;
|
|
lblBookID.Location = new Point(20, 180);
|
|
lblBookID.Name = "lblBookID";
|
|
lblBookID.Size = new Size(71, 20);
|
|
lblBookID.TabIndex = 8;
|
|
lblBookID.Text = "ID книги:";
|
|
//
|
|
// txtBookID
|
|
//
|
|
txtBookID.Location = new Point(137, 177);
|
|
txtBookID.Name = "txtBookID";
|
|
txtBookID.ReadOnly = true;
|
|
txtBookID.Size = new Size(200, 27);
|
|
txtBookID.TabIndex = 9;
|
|
//
|
|
// btnSave
|
|
//
|
|
btnSave.Location = new Point(20, 222);
|
|
btnSave.Name = "btnSave";
|
|
btnSave.Size = new Size(100, 30);
|
|
btnSave.TabIndex = 10;
|
|
btnSave.Text = "Сохранить";
|
|
btnSave.Click += btnSave_Click;
|
|
//
|
|
// buttonCancel_Click
|
|
//
|
|
buttonCancel_Click.Location = new Point(237, 222);
|
|
buttonCancel_Click.Name = "buttonCancel_Click";
|
|
buttonCancel_Click.Size = new Size(100, 30);
|
|
buttonCancel_Click.TabIndex = 11;
|
|
buttonCancel_Click.Text = "Отмена";
|
|
buttonCancel_Click.Click += buttonCancel_Click_Click;
|
|
//
|
|
// FOrders
|
|
//
|
|
ClientSize = new Size(400, 300);
|
|
Controls.Add(buttonCancel_Click);
|
|
Controls.Add(lblOrderID);
|
|
Controls.Add(txtOrderID);
|
|
Controls.Add(lblOrderDate);
|
|
Controls.Add(txtOrderDate);
|
|
Controls.Add(lblReturnDate);
|
|
Controls.Add(txtReturnDate);
|
|
Controls.Add(lblReaderID);
|
|
Controls.Add(txtReaderID);
|
|
Controls.Add(lblBookID);
|
|
Controls.Add(txtBookID);
|
|
Controls.Add(btnSave);
|
|
Name = "FOrders";
|
|
Text = "Заказы";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
private Button buttonCancel_Click;
|
|
}
|
|
}
|