namespace ProductMaintenance
{
partial class frmNewProduct
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.txtCode = new System.Windows.Forms.TextBox();
this.txtDescription = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtPrice = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.btnSave = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(60, 23);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 15);
this.label1.TabIndex = 0;
this.label1.Text = "Code:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtCode
//
this.txtCode.Location = new System.Drawing.Point(108, 20);
this.txtCode.Margin = new System.Windows.Forms.Padding(2);
this.txtCode.Name = "txtCode";
this.txtCode.Size = new System.Drawing.Size(82, 23);
this.txtCode.TabIndex = 1;
//
// txtDescription
//
this.txtDescription.Location = new System.Drawing.Point(108, 47);
this.txtDescription.Margin = new System.Windows.Forms.Padding(2);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(241, 23);
this.txtDescription.TabIndex = 3;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(28, 50);
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(70, 15);
this.label2.TabIndex = 2;
this.label2.Text = "Description:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtPrice
//
this.txtPrice.Location = new System.Drawing.Point(108, 74);
this.txtPrice.Margin = new System.Windows.Forms.Padding(2);
this.txtPrice.Name = "txtPrice";
this.txtPrice.Size = new System.Drawing.Size(82, 23);
this.txtPrice.TabIndex = 5;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(62, 77);
this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(36, 15);
this.label3.TabIndex = 4;
this.label3.Text = "Price:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(108, 111);
this.btnSave.Margin = new System.Windows.Forms.Padding(2);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(111, 23);
this.btnSave.TabIndex = 6;
this.btnSave.Text = "&Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(238, 111);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(111, 23);
this.btnCancel.TabIndex = 7;
this.btnCancel.Text = "&Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// frmNewProduct
//
this.AcceptButton = this.btnSave;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(377, 152);
this.ControlBox = false;
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.txtPrice);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtCode);
this.Controls.Add(this.label1);
this.Margin = new System.Windows.Forms.Padding(2);
this.MaximizeBox = false;
this.Name = "frmNewProduct";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "New Product";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private TextBox txtCode;
private TextBox txtDescription;
private Label label2;
private TextBox txtPrice;
private Label label3;
private Button btnSave;
private Button btnCancel;
}
}