167 lines
4.5 KiB
C#
167 lines
4.5 KiB
C#
namespace Library
|
|
{
|
|
partial class FormBook
|
|
{
|
|
/// <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()
|
|
{
|
|
labelName = new Label();
|
|
textBoxName = new TextBox();
|
|
labelCover = new Label();
|
|
textBoxCover = new TextBox();
|
|
labelAuthor = new Label();
|
|
labelDate = new Label();
|
|
dateTextBox = new CustomComponents.DateTextBox();
|
|
button1 = new Button();
|
|
buttonSave = new Button();
|
|
booksForm = new KOP_Labs.BooksForm();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(34, 218);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(124, 20);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "Название книги:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(175, 218);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(205, 27);
|
|
textBoxName.TabIndex = 1;
|
|
//
|
|
// labelCover
|
|
//
|
|
labelCover.AutoSize = true;
|
|
labelCover.Location = new Point(34, 263);
|
|
labelCover.Name = "labelCover";
|
|
labelCover.Size = new Size(75, 20);
|
|
labelCover.TabIndex = 2;
|
|
labelCover.Text = "Обложка:";
|
|
//
|
|
// textBoxCover
|
|
//
|
|
textBoxCover.Location = new Point(175, 256);
|
|
textBoxCover.Name = "textBoxCover";
|
|
textBoxCover.Size = new Size(205, 27);
|
|
textBoxCover.TabIndex = 3;
|
|
textBoxCover.DoubleClick += textBoxCover_Click;
|
|
//
|
|
// labelAuthor
|
|
//
|
|
labelAuthor.AutoSize = true;
|
|
labelAuthor.Location = new Point(34, 14);
|
|
labelAuthor.Name = "labelAuthor";
|
|
labelAuthor.Size = new Size(54, 20);
|
|
labelAuthor.TabIndex = 4;
|
|
labelAuthor.Text = "Автор:";
|
|
//
|
|
// labelDate
|
|
//
|
|
labelDate.AutoSize = true;
|
|
labelDate.Location = new Point(34, 327);
|
|
labelDate.Name = "labelDate";
|
|
labelDate.Size = new Size(106, 20);
|
|
labelDate.TabIndex = 6;
|
|
labelDate.Text = "Дата издания:";
|
|
//
|
|
// dateTextBox
|
|
//
|
|
dateTextBox.Location = new Point(165, 289);
|
|
dateTextBox.Name = "dateTextBox";
|
|
dateTextBox.Pattern = "";
|
|
dateTextBox.Size = new Size(157, 77);
|
|
dateTextBox.TabIndex = 8;
|
|
dateTextBox.TextBoxValue = "";
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(34, 399);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(94, 29);
|
|
button1.TabIndex = 9;
|
|
button1.Text = "Закрыть";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += buttonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(257, 399);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(94, 29);
|
|
buttonSave.TabIndex = 10;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// booksForm
|
|
//
|
|
booksForm.AutoSize = true;
|
|
booksForm.Location = new Point(129, 14);
|
|
booksForm.Name = "booksForm";
|
|
booksForm.SelectedValue = null;
|
|
booksForm.Size = new Size(251, 201);
|
|
booksForm.TabIndex = 11;
|
|
//
|
|
// FormBook
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(392, 484);
|
|
Controls.Add(booksForm);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(button1);
|
|
Controls.Add(dateTextBox);
|
|
Controls.Add(labelDate);
|
|
Controls.Add(labelAuthor);
|
|
Controls.Add(textBoxCover);
|
|
Controls.Add(labelCover);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelName);
|
|
Name = "FormBook";
|
|
Text = "Создание/Редактирование книги";
|
|
Load += FormBook_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private TextBox textBoxName;
|
|
private Label labelCover;
|
|
private TextBox textBoxCover;
|
|
private Label labelAuthor;
|
|
private Label labelDate;
|
|
private CustomComponents.DateTextBox dateTextBox;
|
|
private Button button1;
|
|
private Button buttonSave;
|
|
private KOP_Labs.BooksForm booksForm;
|
|
}
|
|
} |