PIbd-22_Rogashova_E.A._SUBD/BookShopView/FormBookAuthor.Designer.cs

98 lines
3.9 KiB
C#

namespace BookShopView
{
partial class FormBookAuthor
{
/// <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.labelComponent = new System.Windows.Forms.Label();
this.comboBoxAuthor = new System.Windows.Forms.ComboBox();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelComponent
//
this.labelComponent.AutoSize = true;
this.labelComponent.Location = new System.Drawing.Point(34, 43);
this.labelComponent.Name = "labelComponent";
this.labelComponent.Size = new System.Drawing.Size(51, 20);
this.labelComponent.TabIndex = 0;
this.labelComponent.Text = "Автор";
//
// comboBoxAuthor
//
this.comboBoxAuthor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxAuthor.FormattingEnabled = true;
this.comboBoxAuthor.Location = new System.Drawing.Point(128, 40);
this.comboBoxAuthor.Name = "comboBoxAuthor";
this.comboBoxAuthor.Size = new System.Drawing.Size(265, 28);
this.comboBoxAuthor.TabIndex = 2;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(34, 117);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(114, 48);
this.buttonSave.TabIndex = 4;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(301, 117);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(114, 48);
this.buttonCancel.TabIndex = 5;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// FormBookAuthor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(461, 190);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.comboBoxAuthor);
this.Controls.Add(this.labelComponent);
this.Name = "FormBookAuthor";
this.Text = "Автор книги";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label labelComponent;
private ComboBox comboBoxAuthor;
private Button buttonSave;
private Button buttonCancel;
}
}