namespace ProductMaintenance;
partial class frmAddModify
{
///
/// 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.label3 = new System.Windows.Forms.Label();
this.txtUnitPrice = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtDescription = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.txtProductCode = new System.Windows.Forms.TextBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnAccept = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(25, 76);
this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(61, 15);
this.label3.TabIndex = 14;
this.label3.Text = "Unit Price:";
//
// txtUnitPrice
//
this.txtUnitPrice.Location = new System.Drawing.Point(129, 73);
this.txtUnitPrice.Margin = new System.Windows.Forms.Padding(2);
this.txtUnitPrice.Name = "txtUnitPrice";
this.txtUnitPrice.Size = new System.Drawing.Size(140, 23);
this.txtUnitPrice.TabIndex = 15;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(25, 49);
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 = 12;
this.label2.Text = "Description:";
//
// txtDescription
//
this.txtDescription.Location = new System.Drawing.Point(129, 46);
this.txtDescription.Margin = new System.Windows.Forms.Padding(2);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(311, 23);
this.txtDescription.TabIndex = 13;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(25, 21);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(83, 15);
this.label1.TabIndex = 9;
this.label1.Text = "Product Code:";
//
// txtProductCode
//
this.txtProductCode.Location = new System.Drawing.Point(129, 19);
this.txtProductCode.Margin = new System.Windows.Forms.Padding(2);
this.txtProductCode.Name = "txtProductCode";
this.txtProductCode.Size = new System.Drawing.Size(140, 23);
this.txtProductCode.TabIndex = 10;
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(237, 111);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(90, 24);
this.btnCancel.TabIndex = 19;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnAccept
//
this.btnAccept.Location = new System.Drawing.Point(129, 111);
this.btnAccept.Margin = new System.Windows.Forms.Padding(2);
this.btnAccept.Name = "btnAccept";
this.btnAccept.Size = new System.Drawing.Size(90, 24);
this.btnAccept.TabIndex = 18;
this.btnAccept.Text = "Accept";
this.btnAccept.UseVisualStyleBackColor = true;
this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click);
//
// frmAddModify
//
this.AcceptButton = this.btnAccept;
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(464, 155);
this.ControlBox = false;
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnAccept);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtUnitPrice);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.label1);
this.Controls.Add(this.txtProductCode);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(2);
this.MaximizeBox = false;
this.Name = "frmAddModify";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Add / Modify";
this.Load += new System.EventHandler(this.frmAddModify_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label3;
private TextBox txtUnitPrice;
private Label label2;
private TextBox txtDescription;
private Label label1;
private TextBox txtProductCode;
private Button btnCancel;
private Button btnAccept;
}