0303/0303RogovaNeshina/AddBooksForm.Designer.cs
2026-03-03 15:44:38 +04:00

135 lines
5.5 KiB
C#

namespace _0303RogovaNeshina
{
partial class AddBooksForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.lblName = new System.Windows.Forms.Label();
this.lblAuthor = new System.Windows.Forms.Label();
this.lblPrice = new System.Windows.Forms.Label();
this.tbName = new System.Windows.Forms.TextBox();
this.cbAuthor = new System.Windows.Forms.ComboBox();
this.tbPrice = new System.Windows.Forms.TextBox();
this.btnSave = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(20, 20);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(90, 13);
this.lblName.TabIndex = 0;
this.lblName.Text = "Название книги:";
//
// lblAuthor
//
this.lblAuthor.AutoSize = true;
this.lblAuthor.Location = new System.Drawing.Point(20, 60);
this.lblAuthor.Name = "lblAuthor";
this.lblAuthor.Size = new System.Drawing.Size(40, 13);
this.lblAuthor.TabIndex = 1;
this.lblAuthor.Text = "Автор:";
//
// lblPrice
//
this.lblPrice.AutoSize = true;
this.lblPrice.Location = new System.Drawing.Point(20, 100);
this.lblPrice.Name = "lblPrice";
this.lblPrice.Size = new System.Drawing.Size(35, 13);
this.lblPrice.TabIndex = 2;
this.lblPrice.Text = "Цена:";
//
// tbName
//
this.tbName.Location = new System.Drawing.Point(120, 17);
this.tbName.Name = "tbName";
this.tbName.Size = new System.Drawing.Size(200, 20);
this.tbName.TabIndex = 3;
//
// cbAuthor
//
this.cbAuthor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbAuthor.FormattingEnabled = true;
this.cbAuthor.Location = new System.Drawing.Point(120, 57);
this.cbAuthor.Name = "cbAuthor";
this.cbAuthor.Size = new System.Drawing.Size(200, 21);
this.cbAuthor.TabIndex = 4;
//
// tbPrice
//
this.tbPrice.Location = new System.Drawing.Point(120, 97);
this.tbPrice.Name = "tbPrice";
this.tbPrice.Size = new System.Drawing.Size(100, 20);
this.tbPrice.TabIndex = 5;
this.tbPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(120, 140);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(80, 25);
this.btnSave.TabIndex = 6;
this.btnSave.Text = "Сохранить";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(210, 140);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(80, 25);
this.btnCancel.TabIndex = 7;
this.btnCancel.Text = "Отмена";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// AddBooksForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(350, 180);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.tbPrice);
this.Controls.Add(this.cbAuthor);
this.Controls.Add(this.tbName);
this.Controls.Add(this.lblPrice);
this.Controls.Add(this.lblAuthor);
this.Controls.Add(this.lblName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AddBooksForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Добавление книги";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblAuthor;
private System.Windows.Forms.Label lblPrice;
private System.Windows.Forms.TextBox tbName;
private System.Windows.Forms.ComboBox cbAuthor;
private System.Windows.Forms.TextBox tbPrice;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnCancel;
}
}