namespace ProductMaintenance { partial class frmProductMain { /// /// 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.lstProducts = new System.Windows.Forms.ListBox(); this.btnAdd = new System.Windows.Forms.Button(); this.btnDelete = new System.Windows.Forms.Button(); this.btnExit = new System.Windows.Forms.Button(); this.SuspendLayout(); // // lstProducts // this.lstProducts.FormattingEnabled = true; this.lstProducts.ItemHeight = 25; this.lstProducts.Location = new System.Drawing.Point(27, 29); this.lstProducts.Name = "lstProducts"; this.lstProducts.Size = new System.Drawing.Size(548, 304); this.lstProducts.TabIndex = 3; // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(607, 29); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(159, 44); this.btnAdd.TabIndex = 0; this.btnAdd.Text = "Add Product"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // btnDelete // this.btnDelete.Location = new System.Drawing.Point(607, 91); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(159, 44); this.btnDelete.TabIndex = 1; this.btnDelete.Text = "Delete Product"; this.btnDelete.UseVisualStyleBackColor = true; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnExit // this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnExit.Location = new System.Drawing.Point(607, 153); this.btnExit.Name = "btnExit"; this.btnExit.Size = new System.Drawing.Size(159, 44); this.btnExit.TabIndex = 2; this.btnExit.Text = "E&xit"; this.btnExit.UseVisualStyleBackColor = true; this.btnExit.Click += new System.EventHandler(this.btnExit_Click); // // frmProductMain // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnExit; this.ClientSize = new System.Drawing.Size(801, 358); this.Controls.Add(this.btnExit); this.Controls.Add(this.btnDelete); this.Controls.Add(this.btnAdd); this.Controls.Add(this.lstProducts); this.Name = "frmProductMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Product Maintenance"; this.Load += new System.EventHandler(this.frmProductMain_Load); this.ResumeLayout(false); } #endregion private ListBox lstProducts; private Button btnAdd; private Button btnDelete; private Button btnExit; } }