namespace WinFormsApp { partial class FormProducts { /// /// 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() { dataGridView = new DataGridView(); buttonCreateProduct = new Button(); groupBoxControls = new GroupBox(); buttonDeleteProduct = new Button(); buttonUpdateProduct = new Button(); groupBoxCreateProduct = new GroupBox(); numericUpDownAmount = new NumericUpDown(); numericUpDownPrice = new NumericUpDown(); buttonCancel = new Button(); buttonSaveProduct = new Button(); checkBoxIsSold = new CheckBox(); textBoxName = new TextBox(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); groupBoxControls.SuspendLayout(); groupBoxCreateProduct.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)numericUpDownAmount).BeginInit(); ((System.ComponentModel.ISupportInitialize)numericUpDownPrice).BeginInit(); SuspendLayout(); // // dataGridView // dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Dock = DockStyle.Left; dataGridView.Location = new Point(0, 0); dataGridView.Name = "dataGridView"; dataGridView.Size = new Size(602, 646); dataGridView.TabIndex = 0; // // buttonCreateProduct // buttonCreateProduct.Location = new Point(69, 22); buttonCreateProduct.Name = "buttonCreateProduct"; buttonCreateProduct.Size = new Size(139, 23); buttonCreateProduct.TabIndex = 1; buttonCreateProduct.Text = "Добавить товар"; buttonCreateProduct.UseVisualStyleBackColor = true; buttonCreateProduct.Click += buttonCreateProduct_Click; // // groupBoxControls // groupBoxControls.BackColor = Color.Transparent; groupBoxControls.Controls.Add(buttonDeleteProduct); groupBoxControls.Controls.Add(buttonUpdateProduct); groupBoxControls.Controls.Add(buttonCreateProduct); groupBoxControls.Dock = DockStyle.Right; groupBoxControls.Location = new Point(617, 0); groupBoxControls.Name = "groupBoxControls"; groupBoxControls.Size = new Size(308, 646); groupBoxControls.TabIndex = 2; groupBoxControls.TabStop = false; groupBoxControls.Text = "Действия"; // // buttonDeleteProduct // buttonDeleteProduct.Location = new Point(69, 102); buttonDeleteProduct.Name = "buttonDeleteProduct"; buttonDeleteProduct.Size = new Size(139, 23); buttonDeleteProduct.TabIndex = 3; buttonDeleteProduct.Text = "Удалить товар"; buttonDeleteProduct.UseVisualStyleBackColor = true; buttonDeleteProduct.Click += buttonDeleteProduct_Click; // // buttonUpdateProduct // buttonUpdateProduct.Location = new Point(69, 62); buttonUpdateProduct.Name = "buttonUpdateProduct"; buttonUpdateProduct.Size = new Size(139, 23); buttonUpdateProduct.TabIndex = 2; buttonUpdateProduct.Text = "Изменить товар"; buttonUpdateProduct.UseVisualStyleBackColor = true; buttonUpdateProduct.Click += buttonUpdateProduct_Click; // // groupBoxCreateProduct // groupBoxCreateProduct.BackColor = Color.Transparent; groupBoxCreateProduct.Controls.Add(numericUpDownAmount); groupBoxCreateProduct.Controls.Add(numericUpDownPrice); groupBoxCreateProduct.Controls.Add(buttonCancel); groupBoxCreateProduct.Controls.Add(buttonSaveProduct); groupBoxCreateProduct.Controls.Add(checkBoxIsSold); groupBoxCreateProduct.Controls.Add(textBoxName); groupBoxCreateProduct.Dock = DockStyle.Right; groupBoxCreateProduct.Location = new Point(383, 0); groupBoxCreateProduct.Name = "groupBoxCreateProduct"; groupBoxCreateProduct.Size = new Size(234, 646); groupBoxCreateProduct.TabIndex = 3; groupBoxCreateProduct.TabStop = false; groupBoxCreateProduct.Text = "Создание/изменение продукта"; // // numericUpDownAmount // numericUpDownAmount.Location = new Point(17, 153); numericUpDownAmount.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); numericUpDownAmount.Name = "numericUpDownAmount"; numericUpDownAmount.Size = new Size(120, 23); numericUpDownAmount.TabIndex = 7; // // numericUpDownPrice // numericUpDownPrice.DecimalPlaces = 2; numericUpDownPrice.Location = new Point(17, 94); numericUpDownPrice.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); numericUpDownPrice.Name = "numericUpDownPrice"; numericUpDownPrice.Size = new Size(120, 23); numericUpDownPrice.TabIndex = 6; // // buttonCancel // buttonCancel.Location = new Point(111, 235); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 5; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // buttonSaveProduct // buttonSaveProduct.Location = new Point(17, 235); buttonSaveProduct.Name = "buttonSaveProduct"; buttonSaveProduct.Size = new Size(75, 23); buttonSaveProduct.TabIndex = 4; buttonSaveProduct.Text = "Сохранить"; buttonSaveProduct.UseVisualStyleBackColor = true; buttonSaveProduct.Click += buttonSaveProduct_Click; // // checkBoxIsSold // checkBoxIsSold.AutoSize = true; checkBoxIsSold.Location = new Point(17, 210); checkBoxIsSold.Name = "checkBoxIsSold"; checkBoxIsSold.Size = new Size(148, 19); checkBoxIsSold.TabIndex = 3; checkBoxIsSold.Text = "Поместить в магазин?"; checkBoxIsSold.UseVisualStyleBackColor = true; // // textBoxName // textBoxName.Location = new Point(17, 40); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(100, 23); textBoxName.TabIndex = 0; // // FormProducts // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(925, 646); Controls.Add(groupBoxCreateProduct); Controls.Add(groupBoxControls); Controls.Add(dataGridView); Name = "FormProducts"; Text = "FormProducts"; Load += FormProducts_Load; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); groupBoxControls.ResumeLayout(false); groupBoxCreateProduct.ResumeLayout(false); groupBoxCreateProduct.PerformLayout(); ((System.ComponentModel.ISupportInitialize)numericUpDownAmount).EndInit(); ((System.ComponentModel.ISupportInitialize)numericUpDownPrice).EndInit(); ResumeLayout(false); } #endregion private DataGridView dataGridView; private Button buttonCreateProduct; private GroupBox groupBoxControls; private GroupBox groupBoxCreateProduct; private TextBox textBoxName; private Button buttonSaveProduct; private CheckBox checkBoxIsSold; private NumericUpDown numericUpDownAmount; private NumericUpDown numericUpDownPrice; private Button buttonCancel; private Button buttonUpdateProduct; private Button buttonDeleteProduct; } }