namespace ProductMaintenance; partial class frmProductMaintenance { /// /// 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.btnAdd = new System.Windows.Forms.Button(); this.btnExit = new System.Windows.Forms.Button(); this.dgvProducts = new System.Windows.Forms.DataGridView(); ((System.ComponentModel.ISupportInitialize)(this.dgvProducts)).BeginInit(); this.SuspendLayout(); // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(15, 244); this.btnAdd.Margin = new System.Windows.Forms.Padding(2); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(90, 24); this.btnAdd.TabIndex = 9; this.btnAdd.Text = "Add Product"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // btnExit // this.btnExit.Location = new System.Drawing.Point(626, 244); this.btnExit.Margin = new System.Windows.Forms.Padding(2); this.btnExit.Name = "btnExit"; this.btnExit.Size = new System.Drawing.Size(90, 24); this.btnExit.TabIndex = 12; this.btnExit.Text = "Exit"; this.btnExit.UseVisualStyleBackColor = true; this.btnExit.Click += new System.EventHandler(this.btnExit_Click); // // dgvProducts // this.dgvProducts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvProducts.Location = new System.Drawing.Point(15, 15); this.dgvProducts.Margin = new System.Windows.Forms.Padding(2); this.dgvProducts.Name = "dgvProducts"; this.dgvProducts.RowHeadersWidth = 62; this.dgvProducts.RowTemplate.Height = 25; this.dgvProducts.Size = new System.Drawing.Size(701, 220); this.dgvProducts.TabIndex = 13; this.dgvProducts.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvProducts_CellClick); // // frmProductMaintenance // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnExit; this.ClientSize = new System.Drawing.Size(733, 281); this.Controls.Add(this.dgvProducts); this.Controls.Add(this.btnExit); this.Controls.Add(this.btnAdd); this.Margin = new System.Windows.Forms.Padding(2); this.Name = "frmProductMaintenance"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Product Maintenance"; this.Load += new System.EventHandler(this.frmProductMaintenance_Load); ((System.ComponentModel.ISupportInitialize)(this.dgvProducts)).EndInit(); this.ResumeLayout(false); } #endregion private Button btnAdd; private Button btnExit; private DataGridView dgvProducts; }