namespace SewingDresses { partial class FormDresses { /// /// 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.dressGridView = new System.Windows.Forms.DataGridView(); this.ButtonAdd = new System.Windows.Forms.Button(); this.ButtonChange = new System.Windows.Forms.Button(); this.ButtonDelete = new System.Windows.Forms.Button(); this.ButtonRefresh = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dressGridView)).BeginInit(); this.SuspendLayout(); // // dressGridView // this.dressGridView.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight; this.dressGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dressGridView.Location = new System.Drawing.Point(2, 2); this.dressGridView.Name = "dressGridView"; this.dressGridView.RowTemplate.Height = 25; this.dressGridView.Size = new System.Drawing.Size(605, 447); this.dressGridView.TabIndex = 0; // // ButtonAdd // this.ButtonAdd.Location = new System.Drawing.Point(661, 30); this.ButtonAdd.Name = "ButtonAdd"; this.ButtonAdd.Size = new System.Drawing.Size(92, 35); this.ButtonAdd.TabIndex = 1; this.ButtonAdd.Text = "Add"; this.ButtonAdd.UseVisualStyleBackColor = true; this.ButtonAdd.Click += new System.EventHandler(this.ButtonAdd_Click); // // ButtonChange // this.ButtonChange.Location = new System.Drawing.Point(661, 85); this.ButtonChange.Name = "ButtonChange"; this.ButtonChange.Size = new System.Drawing.Size(92, 35); this.ButtonChange.TabIndex = 2; this.ButtonChange.Text = "Change"; this.ButtonChange.UseVisualStyleBackColor = true; this.ButtonChange.Click += new System.EventHandler(this.ButtonUpdate_Click); // // ButtonDelete // this.ButtonDelete.Location = new System.Drawing.Point(661, 142); this.ButtonDelete.Name = "ButtonDelete"; this.ButtonDelete.Size = new System.Drawing.Size(92, 35); this.ButtonDelete.TabIndex = 3; this.ButtonDelete.Text = "Delete"; this.ButtonDelete.UseVisualStyleBackColor = true; this.ButtonDelete.Click += new System.EventHandler(this.ButtonDelete_Click); // // ButtonRefresh // this.ButtonRefresh.Location = new System.Drawing.Point(661, 204); this.ButtonRefresh.Name = "ButtonRefresh"; this.ButtonRefresh.Size = new System.Drawing.Size(92, 35); this.ButtonRefresh.TabIndex = 4; this.ButtonRefresh.Text = "Refresh"; this.ButtonRefresh.UseVisualStyleBackColor = true; this.ButtonRefresh.Click += new System.EventHandler(this.ButtonRefresh_Click); // // FormDresses // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.ButtonRefresh); this.Controls.Add(this.ButtonDelete); this.Controls.Add(this.ButtonChange); this.Controls.Add(this.ButtonAdd); this.Controls.Add(this.dressGridView); this.Name = "FormDresses"; this.Text = "FormDresses"; this.Load += new System.EventHandler(this.FormDresses_Load); ((System.ComponentModel.ISupportInitialize)(this.dressGridView)).EndInit(); this.ResumeLayout(false); } #endregion private DataGridView dressGridView; private Button ButtonAdd; private Button ButtonChange; private Button ButtonDelete; private Button ButtonRefresh; } }