188 lines
6.6 KiB
C#
Raw Normal View History

2024-12-20 20:09:17 +04:00
namespace LDBproject.AdditionalForms
{
partial class RegOrder
{
/// <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()
{
LibrarianCBox = new ComboBox();
LibLabel = new Label();
DateLabel = new Label();
ReturnDTPicker = new DateTimePicker();
groupBox1 = new GroupBox();
DataGV = new DataGridView();
BookColumnCBox = new DataGridViewComboBoxColumn();
AuthorColumn = new DataGridViewTextBoxColumn();
SaveBtn = new Button();
BackBtn = new Button();
ReaderLabel = new Label();
CardCBox = new ComboBox();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)DataGV).BeginInit();
SuspendLayout();
//
// LibrarianCBox
//
LibrarianCBox.FormattingEnabled = true;
LibrarianCBox.Location = new Point(119, 21);
LibrarianCBox.Name = "LibrarianCBox";
LibrarianCBox.Size = new Size(182, 33);
LibrarianCBox.TabIndex = 0;
//
// LibLabel
//
LibLabel.AutoSize = true;
LibLabel.Location = new Point(30, 24);
LibLabel.Name = "LibLabel";
LibLabel.Size = new Size(83, 25);
LibLabel.TabIndex = 1;
LibLabel.Text = "Librarian:";
//
// DateLabel
//
DateLabel.AutoSize = true;
DateLabel.Location = new Point(30, 128);
DateLabel.Name = "DateLabel";
DateLabel.Size = new Size(107, 25);
DateLabel.TabIndex = 2;
DateLabel.Text = "Return date:";
//
// ReturnDTPicker
//
ReturnDTPicker.Location = new Point(37, 163);
ReturnDTPicker.Name = "ReturnDTPicker";
ReturnDTPicker.Size = new Size(264, 31);
ReturnDTPicker.TabIndex = 3;
//
// groupBox1
//
groupBox1.Controls.Add(DataGV);
groupBox1.Location = new Point(334, 24);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(423, 266);
groupBox1.TabIndex = 4;
groupBox1.TabStop = false;
groupBox1.Text = "BookListGBox";
//
// DataGV
//
DataGV.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
DataGV.Columns.AddRange(new DataGridViewColumn[] { BookColumnCBox, AuthorColumn });
DataGV.Location = new Point(6, 41);
DataGV.Name = "DataGV";
DataGV.RowHeadersWidth = 62;
DataGV.Size = new Size(411, 206);
DataGV.TabIndex = 0;
//
// BookColumnCBox
//
BookColumnCBox.HeaderText = "Book's title";
BookColumnCBox.MinimumWidth = 8;
BookColumnCBox.Name = "BookColumnCBox";
BookColumnCBox.Width = 150;
//
// AuthorColumn
//
AuthorColumn.HeaderText = "Author";
AuthorColumn.MinimumWidth = 8;
AuthorColumn.Name = "AuthorColumn";
AuthorColumn.Width = 150;
//
// SaveBtn
//
SaveBtn.Location = new Point(37, 216);
SaveBtn.Name = "SaveBtn";
SaveBtn.Size = new Size(264, 34);
SaveBtn.TabIndex = 5;
SaveBtn.Text = "Save and give out";
SaveBtn.UseVisualStyleBackColor = true;
SaveBtn.Click += SaveBtn_Click;
//
// BackBtn
//
BackBtn.Location = new Point(37, 256);
BackBtn.Name = "BackBtn";
BackBtn.Size = new Size(264, 34);
BackBtn.TabIndex = 6;
BackBtn.Text = "Go back";
BackBtn.UseVisualStyleBackColor = true;
BackBtn.Click += BackBtn_Click;
//
// ReaderLabel
//
ReaderLabel.AutoSize = true;
ReaderLabel.Location = new Point(30, 65);
ReaderLabel.Name = "ReaderLabel";
ReaderLabel.Size = new Size(66, 50);
ReaderLabel.TabIndex = 7;
ReaderLabel.Text = "Reader\r\ncard:";
//
// CardCBox
//
CardCBox.FormattingEnabled = true;
CardCBox.Location = new Point(119, 82);
CardCBox.Name = "CardCBox";
CardCBox.Size = new Size(182, 33);
CardCBox.TabIndex = 8;
//
// RegOrder
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(785, 314);
Controls.Add(CardCBox);
Controls.Add(ReaderLabel);
Controls.Add(BackBtn);
Controls.Add(SaveBtn);
Controls.Add(groupBox1);
Controls.Add(ReturnDTPicker);
Controls.Add(DateLabel);
Controls.Add(LibLabel);
Controls.Add(LibrarianCBox);
Name = "RegOrder";
Text = "RegOrder";
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)DataGV).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox LibrarianCBox;
private Label LibLabel;
private Label DateLabel;
private DateTimePicker ReturnDTPicker;
private GroupBox groupBox1;
private DataGridView DataGV;
private Button SaveBtn;
private Button BackBtn;
private Label ReaderLabel;
private ComboBox CardCBox;
private DataGridViewComboBoxColumn BookColumnCBox;
private DataGridViewTextBoxColumn AuthorColumn;
}
}