namespace SewingDresses { partial class FormDress { /// /// 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.nameDressLabel = new System.Windows.Forms.Label(); this.priceDressLabel = new System.Windows.Forms.Label(); this.nameDressTextBox = new System.Windows.Forms.TextBox(); this.priceDressTextBox = new System.Windows.Forms.TextBox(); this.materialsGroupBox = new System.Windows.Forms.GroupBox(); this.RefreshButton = new System.Windows.Forms.Button(); this.deleteButton = new System.Windows.Forms.Button(); this.changeButton = new System.Windows.Forms.Button(); this.AddButton = new System.Windows.Forms.Button(); this.dressGridView = new System.Windows.Forms.DataGridView(); this.ColumnID = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnMaterial = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.saveButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.materialsGroupBox.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dressGridView)).BeginInit(); this.SuspendLayout(); // // nameDressLabel // this.nameDressLabel.AutoSize = true; this.nameDressLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.nameDressLabel.Location = new System.Drawing.Point(12, 9); this.nameDressLabel.Name = "nameDressLabel"; this.nameDressLabel.Size = new System.Drawing.Size(66, 25); this.nameDressLabel.TabIndex = 0; this.nameDressLabel.Text = "Name:"; // // priceDressLabel // this.priceDressLabel.AutoSize = true; this.priceDressLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.priceDressLabel.Location = new System.Drawing.Point(12, 46); this.priceDressLabel.Name = "priceDressLabel"; this.priceDressLabel.Size = new System.Drawing.Size(58, 25); this.priceDressLabel.TabIndex = 1; this.priceDressLabel.Text = "Price:"; // // nameDressTextBox // this.nameDressTextBox.Location = new System.Drawing.Point(84, 11); this.nameDressTextBox.Name = "nameDressTextBox"; this.nameDressTextBox.Size = new System.Drawing.Size(287, 23); this.nameDressTextBox.TabIndex = 2; // // priceDressTextBox // this.priceDressTextBox.Location = new System.Drawing.Point(84, 48); this.priceDressTextBox.Name = "priceDressTextBox"; this.priceDressTextBox.ReadOnly = true; this.priceDressTextBox.Size = new System.Drawing.Size(178, 23); this.priceDressTextBox.TabIndex = 3; // // materialsGroupBox // this.materialsGroupBox.Controls.Add(this.RefreshButton); this.materialsGroupBox.Controls.Add(this.deleteButton); this.materialsGroupBox.Controls.Add(this.changeButton); this.materialsGroupBox.Controls.Add(this.AddButton); this.materialsGroupBox.Controls.Add(this.dressGridView); this.materialsGroupBox.Location = new System.Drawing.Point(16, 89); this.materialsGroupBox.Name = "materialsGroupBox"; this.materialsGroupBox.Size = new System.Drawing.Size(770, 301); this.materialsGroupBox.TabIndex = 4; this.materialsGroupBox.TabStop = false; this.materialsGroupBox.Text = "Materials"; // // RefreshButton // this.RefreshButton.Location = new System.Drawing.Point(638, 225); this.RefreshButton.Name = "RefreshButton"; this.RefreshButton.Size = new System.Drawing.Size(103, 36); this.RefreshButton.TabIndex = 4; this.RefreshButton.Text = "Refresh"; this.RefreshButton.UseVisualStyleBackColor = true; this.RefreshButton.Click += new System.EventHandler(this.ButtonRefresh_Click); // // deleteButton // this.deleteButton.Location = new System.Drawing.Point(638, 168); this.deleteButton.Name = "deleteButton"; this.deleteButton.Size = new System.Drawing.Size(103, 36); this.deleteButton.TabIndex = 3; this.deleteButton.Text = "Delete"; this.deleteButton.UseVisualStyleBackColor = true; this.deleteButton.Click += new System.EventHandler(this.ButtonDelete_Click); // // changeButton // this.changeButton.Location = new System.Drawing.Point(638, 110); this.changeButton.Name = "changeButton"; this.changeButton.Size = new System.Drawing.Size(103, 36); this.changeButton.TabIndex = 2; this.changeButton.Text = "Change"; this.changeButton.UseVisualStyleBackColor = true; this.changeButton.Click += new System.EventHandler(this.ButtonUpdate_Click); // // AddButton // this.AddButton.Location = new System.Drawing.Point(638, 56); this.AddButton.Name = "AddButton"; this.AddButton.Size = new System.Drawing.Size(103, 36); this.AddButton.TabIndex = 1; this.AddButton.Text = "Add"; this.AddButton.UseVisualStyleBackColor = true; this.AddButton.Click += new System.EventHandler(this.ButtonAdd_Click); // // dressGridView // this.dressGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dressGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColumnID, this.ColumnMaterial, this.ColumnQuantity}); this.dressGridView.Location = new System.Drawing.Point(6, 22); this.dressGridView.Name = "dressGridView"; this.dressGridView.RowTemplate.Height = 25; this.dressGridView.Size = new System.Drawing.Size(588, 273); this.dressGridView.TabIndex = 0; // // ColumnID // this.ColumnID.HeaderText = "ID"; this.ColumnID.Name = "ColumnID"; this.ColumnID.Visible = false; // // ColumnMaterial // this.ColumnMaterial.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.ColumnMaterial.HeaderText = "Material"; this.ColumnMaterial.Name = "ColumnMaterial"; // // ColumnQuantity // this.ColumnQuantity.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.ColumnQuantity.HeaderText = "Quantity"; this.ColumnQuantity.Name = "ColumnQuantity"; // // saveButton // this.saveButton.Location = new System.Drawing.Point(562, 407); this.saveButton.Name = "saveButton"; this.saveButton.Size = new System.Drawing.Size(89, 31); this.saveButton.TabIndex = 5; this.saveButton.Text = "Save"; this.saveButton.UseVisualStyleBackColor = true; this.saveButton.Click += new System.EventHandler(this.ButtonSave_Click); // // cancelButton // this.cancelButton.Location = new System.Drawing.Point(657, 407); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(89, 31); this.cancelButton.TabIndex = 6; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.ButtonCancel_Click); // // FormDress // 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.cancelButton); this.Controls.Add(this.saveButton); this.Controls.Add(this.materialsGroupBox); this.Controls.Add(this.priceDressTextBox); this.Controls.Add(this.nameDressTextBox); this.Controls.Add(this.priceDressLabel); this.Controls.Add(this.nameDressLabel); this.Name = "FormDress"; this.Text = "FormDress"; this.Load += new System.EventHandler(this.FormDress_Load); this.materialsGroupBox.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dressGridView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label nameDressLabel; private Label priceDressLabel; private TextBox nameDressTextBox; private TextBox priceDressTextBox; private GroupBox materialsGroupBox; private Button RefreshButton; private Button deleteButton; private Button changeButton; private Button AddButton; private DataGridView dressGridView; private DataGridViewTextBoxColumn ColumnID; private DataGridViewTextBoxColumn ColumnMaterial; private DataGridViewTextBoxColumn ColumnQuantity; private Button saveButton; private Button cancelButton; } }