namespace FurnitureAssemblyView { partial class FormFurniture { /// /// 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.labelName = new System.Windows.Forms.Label(); this.labelCost = new System.Windows.Forms.Label(); this.textBoxName = new System.Windows.Forms.TextBox(); this.textBoxPrice = new System.Windows.Forms.TextBox(); this.groupBoxWorkPiece = new System.Windows.Forms.GroupBox(); this.buttonRefresh = new System.Windows.Forms.Button(); this.buttonDelete = new System.Windows.Forms.Button(); this.buttonUpdate = new System.Windows.Forms.Button(); this.buttonAdd = new System.Windows.Forms.Button(); this.dataGridView = new System.Windows.Forms.DataGridView(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.ColumnID = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.groupBoxWorkPiece.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(23, 30); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(80, 20); this.labelName.TabIndex = 0; this.labelName.Text = "Название:"; // // labelCost // this.labelCost.AutoSize = true; this.labelCost.Location = new System.Drawing.Point(23, 84); this.labelCost.Name = "labelCost"; this.labelCost.Size = new System.Drawing.Size(86, 20); this.labelCost.TabIndex = 1; this.labelCost.Text = "Стоимость:"; // // textBoxName // this.textBoxName.Location = new System.Drawing.Point(133, 27); this.textBoxName.Name = "textBoxName"; this.textBoxName.Size = new System.Drawing.Size(332, 27); this.textBoxName.TabIndex = 2; // // textBoxPrice // this.textBoxPrice.Location = new System.Drawing.Point(133, 81); this.textBoxPrice.Name = "textBoxPrice"; this.textBoxPrice.Size = new System.Drawing.Size(196, 27); this.textBoxPrice.TabIndex = 3; // // groupBoxWorkPiece // this.groupBoxWorkPiece.Controls.Add(this.buttonRefresh); this.groupBoxWorkPiece.Controls.Add(this.buttonDelete); this.groupBoxWorkPiece.Controls.Add(this.buttonUpdate); this.groupBoxWorkPiece.Controls.Add(this.buttonAdd); this.groupBoxWorkPiece.Controls.Add(this.dataGridView); this.groupBoxWorkPiece.Location = new System.Drawing.Point(23, 126); this.groupBoxWorkPiece.Name = "groupBoxWorkPiece"; this.groupBoxWorkPiece.Size = new System.Drawing.Size(567, 300); this.groupBoxWorkPiece.TabIndex = 4; this.groupBoxWorkPiece.TabStop = false; this.groupBoxWorkPiece.Text = "Заготовки"; // // buttonRefresh // this.buttonRefresh.Location = new System.Drawing.Point(454, 196); this.buttonRefresh.Name = "buttonRefresh"; this.buttonRefresh.Size = new System.Drawing.Size(94, 29); this.buttonRefresh.TabIndex = 4; this.buttonRefresh.Text = "Обновить"; this.buttonRefresh.UseVisualStyleBackColor = true; this.buttonRefresh.Click += new System.EventHandler(this.ButtonRefresh_Click); // // buttonDelete // this.buttonDelete.Location = new System.Drawing.Point(454, 145); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(94, 29); this.buttonDelete.TabIndex = 3; this.buttonDelete.Text = "Удалить"; this.buttonDelete.UseVisualStyleBackColor = true; this.buttonDelete.Click += new System.EventHandler(this.ButtonDelete_Click); // // buttonUpdate // this.buttonUpdate.Location = new System.Drawing.Point(454, 95); this.buttonUpdate.Name = "buttonUpdate"; this.buttonUpdate.Size = new System.Drawing.Size(94, 29); this.buttonUpdate.TabIndex = 2; this.buttonUpdate.Text = "Изменить"; this.buttonUpdate.UseVisualStyleBackColor = true; this.buttonUpdate.Click += new System.EventHandler(this.ButtonUpdate_Click); // // buttonAdd // this.buttonAdd.Location = new System.Drawing.Point(454, 43); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(94, 29); this.buttonAdd.TabIndex = 1; this.buttonAdd.Text = "Добавить"; this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.ButtonAdd_Click); // // dataGridView // this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColumnID, this.ColumnName, this.ColumnPrice}); this.dataGridView.Location = new System.Drawing.Point(6, 26); this.dataGridView.Name = "dataGridView"; this.dataGridView.RowHeadersWidth = 51; this.dataGridView.RowTemplate.Height = 29; this.dataGridView.Size = new System.Drawing.Size(436, 268); this.dataGridView.TabIndex = 0; // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(340, 448); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(95, 29); this.buttonSave.TabIndex = 5; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(458, 448); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(94, 29); this.buttonCancel.TabIndex = 6; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // ColumnID // this.ColumnID.HeaderText = "Id"; this.ColumnID.MinimumWidth = 6; this.ColumnID.Name = "ColumnID"; this.ColumnID.Visible = false; this.ColumnID.Width = 125; // // ColumnName // this.ColumnName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.ColumnName.HeaderText = "Название"; this.ColumnName.MinimumWidth = 6; this.ColumnName.Name = "ColumnName"; // // ColumnPrice // this.ColumnPrice.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.ColumnPrice.HeaderText = "Количество"; this.ColumnPrice.MinimumWidth = 6; this.ColumnPrice.Name = "ColumnPrice"; // // FormFurniture // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(619, 500); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.groupBoxWorkPiece); this.Controls.Add(this.textBoxPrice); this.Controls.Add(this.textBoxName); this.Controls.Add(this.labelCost); this.Controls.Add(this.labelName); this.Name = "FormFurniture"; this.Text = "Изделие"; this.Load += new System.EventHandler(this.FormFurniture_Load); this.groupBoxWorkPiece.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelName; private Label labelCost; private TextBox textBoxName; private TextBox textBoxPrice; private GroupBox groupBoxWorkPiece; private Button buttonRefresh; private Button buttonDelete; private Button buttonUpdate; private Button buttonAdd; private DataGridView dataGridView; private Button buttonSave; private Button buttonCancel; private DataGridViewTextBoxColumn ColumnID; private DataGridViewTextBoxColumn ColumnName; private DataGridViewTextBoxColumn ColumnPrice; } }