namespace SushiBarView.Forms { partial class FormSushi { /// /// 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() { buttonAdd = new Button(); dataGridView = new DataGridView(); ComponentName = new DataGridViewTextBoxColumn(); ComponentCount = new DataGridViewTextBoxColumn(); groupBox1 = new GroupBox(); buttonRef = new Button(); buttonDel = new Button(); buttonUpd = new Button(); buttonSave = new Button(); buttonCancel = new Button(); label1 = new Label(); label2 = new Label(); textBoxPrice = new TextBox(); textBoxName = new TextBox(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); groupBox1.SuspendLayout(); SuspendLayout(); // // buttonAdd // buttonAdd.Location = new Point(640, 29); buttonAdd.Margin = new Padding(3, 4, 3, 4); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(126, 39); buttonAdd.TabIndex = 0; buttonAdd.Text = "Добавить"; buttonAdd.UseVisualStyleBackColor = true; buttonAdd.Click += buttonAdd_Click; // // dataGridView // dataGridView.AllowUserToAddRows = false; dataGridView.AllowUserToDeleteRows = false; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Columns.AddRange(new DataGridViewColumn[] { ComponentName, ComponentCount }); dataGridView.Dock = DockStyle.Left; dataGridView.Location = new Point(3, 24); dataGridView.Margin = new Padding(3, 4, 3, 4); dataGridView.Name = "dataGridView"; dataGridView.ReadOnly = true; dataGridView.RowHeadersWidth = 51; dataGridView.RowTemplate.Height = 25; dataGridView.Size = new Size(630, 267); dataGridView.TabIndex = 1; // // ComponentName // ComponentName.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; ComponentName.HeaderText = "Компонент"; ComponentName.MinimumWidth = 6; ComponentName.Name = "ComponentName"; // // ComponentCount // ComponentCount.HeaderText = "Количество"; ComponentCount.MinimumWidth = 6; ComponentCount.Name = "ComponentCount"; ComponentCount.Width = 125; // // groupBox1 // groupBox1.Controls.Add(buttonRef); groupBox1.Controls.Add(buttonDel); groupBox1.Controls.Add(buttonUpd); groupBox1.Controls.Add(dataGridView); groupBox1.Controls.Add(buttonAdd); groupBox1.Location = new Point(14, 101); groupBox1.Margin = new Padding(3, 4, 3, 4); groupBox1.Name = "groupBox1"; groupBox1.Padding = new Padding(3, 4, 3, 4); groupBox1.Size = new Size(773, 295); groupBox1.TabIndex = 2; groupBox1.TabStop = false; groupBox1.Text = "Компоненты"; // // buttonRef // buttonRef.Location = new Point(640, 169); buttonRef.Margin = new Padding(3, 4, 3, 4); buttonRef.Name = "buttonRef"; buttonRef.Size = new Size(126, 39); buttonRef.TabIndex = 4; buttonRef.Text = "Обновить"; buttonRef.UseVisualStyleBackColor = true; buttonRef.Click += buttonRef_Click; // // buttonDel // buttonDel.Location = new Point(640, 123); buttonDel.Margin = new Padding(3, 4, 3, 4); buttonDel.Name = "buttonDel"; buttonDel.Size = new Size(126, 39); buttonDel.TabIndex = 3; buttonDel.Text = "Удалить"; buttonDel.UseVisualStyleBackColor = true; buttonDel.Click += buttonDel_Click; // // buttonUpd // buttonUpd.Location = new Point(640, 76); buttonUpd.Margin = new Padding(3, 4, 3, 4); buttonUpd.Name = "buttonUpd"; buttonUpd.Size = new Size(126, 39); buttonUpd.TabIndex = 2; buttonUpd.Text = "Изменить"; buttonUpd.UseVisualStyleBackColor = true; buttonUpd.Click += buttonUpd_Click; // // buttonSave // buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonSave.Location = new Point(573, 404); buttonSave.Margin = new Padding(3, 4, 3, 4); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(100, 31); buttonSave.TabIndex = 3; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonCancel.Location = new Point(679, 404); buttonCancel.Margin = new Padding(3, 4, 3, 4); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(100, 31); buttonCancel.TabIndex = 4; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // label1 // label1.AutoSize = true; label1.Location = new Point(25, 16); label1.Name = "label1"; label1.Size = new Size(80, 20); label1.TabIndex = 5; label1.Text = "Название:"; // // label2 // label2.AutoSize = true; label2.Location = new Point(25, 60); label2.Name = "label2"; label2.Size = new Size(86, 20); label2.TabIndex = 6; label2.Text = "Стоимость:"; // // textBoxPrice // textBoxPrice.Location = new Point(112, 56); textBoxPrice.Margin = new Padding(3, 4, 3, 4); textBoxPrice.Name = "textBoxPrice"; textBoxPrice.Size = new Size(278, 27); textBoxPrice.TabIndex = 7; // // textBoxName // textBoxName.Location = new Point(112, 17); textBoxName.Margin = new Padding(3, 4, 3, 4); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(278, 27); textBoxName.TabIndex = 8; // // FormSushi // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 451); Controls.Add(textBoxName); Controls.Add(textBoxPrice); Controls.Add(label2); Controls.Add(label1); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(groupBox1); Name = "FormSushi"; Text = "Суши"; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); groupBox1.ResumeLayout(false); ResumeLayout(false); PerformLayout(); } #endregion private Button buttonAdd; private DataGridView dataGridView; private GroupBox groupBox1; private Button buttonRef; private Button buttonDel; private Button buttonUpd; private Button buttonSave; private Button buttonCancel; private Label label1; private Label label2; private TextBox textBoxPrice; private TextBox textBoxName; private DataGridViewTextBoxColumn ComponentName; private DataGridViewTextBoxColumn ComponentCount; } }