92 lines
3.6 KiB
C#
92 lines
3.6 KiB
C#
namespace WindowsFormsApp13
|
|
{
|
|
partial class AddForm
|
|
{
|
|
/// <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.buttonAdd = new System.Windows.Forms.Button();
|
|
this.textBoxNewBookName = new System.Windows.Forms.TextBox();
|
|
this.textBoxAutorId = new System.Windows.Forms.TextBox();
|
|
this.textBoxStyleId = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonAdd
|
|
//
|
|
this.buttonAdd.Location = new System.Drawing.Point(368, 329);
|
|
this.buttonAdd.Name = "buttonAdd";
|
|
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonAdd.TabIndex = 0;
|
|
this.buttonAdd.Text = "Add";
|
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|
//
|
|
// textBoxNewBookName
|
|
//
|
|
this.textBoxNewBookName.Location = new System.Drawing.Point(358, 162);
|
|
this.textBoxNewBookName.Name = "textBoxNewBookName";
|
|
this.textBoxNewBookName.Size = new System.Drawing.Size(100, 20);
|
|
this.textBoxNewBookName.TabIndex = 1;
|
|
this.textBoxNewBookName.TextChanged += new System.EventHandler(this.textBoxNewBookName_TextChanged);
|
|
//
|
|
// textBoxAutorId
|
|
//
|
|
this.textBoxAutorId.Location = new System.Drawing.Point(358, 208);
|
|
this.textBoxAutorId.Name = "textBoxAutorId";
|
|
this.textBoxAutorId.Size = new System.Drawing.Size(100, 20);
|
|
this.textBoxAutorId.TabIndex = 2;
|
|
//
|
|
// textBoxStyleId
|
|
//
|
|
this.textBoxStyleId.Location = new System.Drawing.Point(358, 264);
|
|
this.textBoxStyleId.Name = "textBoxStyleId";
|
|
this.textBoxStyleId.Size = new System.Drawing.Size(100, 20);
|
|
this.textBoxStyleId.TabIndex = 3;
|
|
//
|
|
// AddForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.textBoxStyleId);
|
|
this.Controls.Add(this.textBoxAutorId);
|
|
this.Controls.Add(this.textBoxNewBookName);
|
|
this.Controls.Add(this.buttonAdd);
|
|
this.Name = "AddForm";
|
|
this.Text = "Form3";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonAdd;
|
|
private System.Windows.Forms.TextBox textBoxNewBookName;
|
|
private System.Windows.Forms.TextBox textBoxAutorId;
|
|
private System.Windows.Forms.TextBox textBoxStyleId;
|
|
}
|
|
} |