PIbd-33_Sergunov_M.A._COP_4/Library/LibraryView/FormBook.Designer.cs

169 lines
6.9 KiB
C#
Raw Normal View History

2023-11-29 18:00:55 +04:00
using KOP_Labs;
namespace LibraryView
2023-11-17 09:56:34 +04:00
{
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()
{
this.label1 = new System.Windows.Forms.Label();
2023-11-29 18:00:55 +04:00
this.MeComboBoxGenre = new CustomComponents.DropDownList();
2023-11-17 09:56:34 +04:00
this.textBoxTitle = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
2023-11-29 18:00:55 +04:00
this.textBoxCost = new CustomComponents.ZhelovanovVisualComponents.TextBoxComponent();
2023-11-17 09:56:34 +04:00
this.buttonSave = new System.Windows.Forms.Button();
this.buttonClose = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 21);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(121, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Название книги";
//
// romanovaComboBoxGenre
//
2023-11-29 18:00:55 +04:00
this.MeComboBoxGenre.Location = new System.Drawing.Point(-3, 240);
this.MeComboBoxGenre.Name = "romanovaComboBoxGenre";
this.MeComboBoxGenre.Selected = "";
this.MeComboBoxGenre.Size = new System.Drawing.Size(259, 116);
this.MeComboBoxGenre.TabIndex = 1;
2023-11-17 09:56:34 +04:00
//
// textBoxTitle
//
this.textBoxTitle.Location = new System.Drawing.Point(22, 44);
this.textBoxTitle.Name = "textBoxTitle";
this.textBoxTitle.Size = new System.Drawing.Size(196, 27);
this.textBoxTitle.TabIndex = 2;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.SystemColors.Control;
this.label2.Location = new System.Drawing.Point(20, 91);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(123, 20);
this.label2.TabIndex = 3;
this.label2.Text = "Описание книги";
//
// textBoxDescription
//
this.textBoxDescription.Location = new System.Drawing.Point(22, 114);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.Size = new System.Drawing.Size(290, 110);
this.textBoxDescription.TabIndex = 4;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(22, 240);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(48, 20);
this.label3.TabIndex = 5;
this.label3.Text = "Жанр";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(22, 310);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(83, 20);
this.label4.TabIndex = 6;
this.label4.Text = "Стоимость";
//
// textBoxCost
//
this.textBoxCost.Location = new System.Drawing.Point(20, 333);
this.textBoxCost.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.textBoxCost.Name = "textBoxCost";
this.textBoxCost.Size = new System.Drawing.Size(168, 84);
this.textBoxCost.TabIndex = 7;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(49, 435);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(94, 29);
this.buttonSave.TabIndex = 8;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonClose
//
this.buttonClose.Location = new System.Drawing.Point(162, 435);
this.buttonClose.Name = "buttonClose";
this.buttonClose.Size = new System.Drawing.Size(94, 29);
this.buttonClose.TabIndex = 9;
this.buttonClose.Text = "Отменить";
this.buttonClose.UseVisualStyleBackColor = true;
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
//
// FormBook
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(342, 477);
this.Controls.Add(this.buttonClose);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.textBoxCost);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.textBoxDescription);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBoxTitle);
2023-11-29 18:00:55 +04:00
this.Controls.Add(this.MeComboBoxGenre);
2023-11-17 09:56:34 +04:00
this.Controls.Add(this.label1);
this.Name = "FormBook";
this.Text = "Книги";
this.Load += new System.EventHandler(this.FormBook_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private CustomComponents.DropDownList MeComboBoxGenre;
private TextBox textBoxTitle;
private Label label2;
private TextBox textBoxDescription;
private Label label3;
private Label label4;
2023-11-29 18:00:55 +04:00
private CustomComponents.ZhelovanovVisualComponents.TextBoxComponent textBoxCost;
private Button buttonSave;
2023-11-17 09:56:34 +04:00
private Button buttonClose;
}
}