2024-06-23 14:01:09 +04:00
|
|
|
|
namespace WinFormsApp
|
|
|
|
|
{
|
|
|
|
|
partial class FormProducts
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required designer variable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required method for Designer support - do not modify
|
|
|
|
|
/// the contents of this method with the code editor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
2024-06-25 22:09:51 +04:00
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProducts));
|
2024-06-23 14:01:09 +04:00
|
|
|
|
dataGridView = new DataGridView();
|
|
|
|
|
buttonCreateProduct = new Button();
|
|
|
|
|
groupBoxControls = new GroupBox();
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonDeleteProduct = new Button();
|
|
|
|
|
buttonUpdateProduct = new Button();
|
2024-06-25 21:12:06 +04:00
|
|
|
|
buttonPrintCheque = new Button();
|
2024-06-24 14:09:32 +04:00
|
|
|
|
buttonReadBarCode = new Button();
|
|
|
|
|
pictureBox1 = new PictureBox();
|
|
|
|
|
buttonGenerateBarCode = new Button();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxCreateProduct = new GroupBox();
|
2024-06-25 22:09:51 +04:00
|
|
|
|
label3 = new Label();
|
|
|
|
|
label2 = new Label();
|
|
|
|
|
label1 = new Label();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
numericUpDownAmount = new NumericUpDown();
|
|
|
|
|
numericUpDownPrice = new NumericUpDown();
|
|
|
|
|
buttonCancel = new Button();
|
|
|
|
|
buttonSaveProduct = new Button();
|
|
|
|
|
checkBoxIsSold = new CheckBox();
|
|
|
|
|
textBoxName = new TextBox();
|
2024-06-24 16:23:42 +04:00
|
|
|
|
menuStrip1 = new MenuStrip();
|
|
|
|
|
медиаФайлыToolStripMenuItem = new ToolStripMenuItem();
|
2024-06-25 21:12:06 +04:00
|
|
|
|
прайслистToolStripMenuItem = new ToolStripMenuItem();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
|
|
|
groupBoxControls.SuspendLayout();
|
2024-06-24 14:09:32 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxCreateProduct.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownAmount).BeginInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPrice).BeginInit();
|
2024-06-24 16:23:42 +04:00
|
|
|
|
menuStrip1.SuspendLayout();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
2024-06-25 22:34:53 +04:00
|
|
|
|
dataGridView.BackgroundColor = Color.AliceBlue;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
dataGridView.Location = new Point(290, 27);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
dataGridView.Name = "dataGridView";
|
2024-06-25 16:01:10 +04:00
|
|
|
|
dataGridView.ReadOnly = true;
|
|
|
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
dataGridView.Size = new Size(629, 345);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
dataGridView.TabIndex = 0;
|
2024-06-25 16:01:10 +04:00
|
|
|
|
dataGridView.SelectionChanged += dataGridView_SelectionChanged;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonCreateProduct
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonCreateProduct.BackColor = Color.FromArgb(192, 255, 192);
|
|
|
|
|
buttonCreateProduct.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
|
|
|
|
|
buttonCreateProduct.ForeColor = SystemColors.ActiveCaptionText;
|
|
|
|
|
buttonCreateProduct.Location = new Point(69, 51);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonCreateProduct.Name = "buttonCreateProduct";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonCreateProduct.Size = new Size(139, 41);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonCreateProduct.TabIndex = 1;
|
|
|
|
|
buttonCreateProduct.Text = "Добавить товар";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonCreateProduct.UseVisualStyleBackColor = false;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonCreateProduct.Click += buttonCreateProduct_Click;
|
|
|
|
|
//
|
|
|
|
|
// groupBoxControls
|
|
|
|
|
//
|
|
|
|
|
groupBoxControls.BackColor = Color.Transparent;
|
2024-06-23 14:27:50 +04:00
|
|
|
|
groupBoxControls.Controls.Add(buttonDeleteProduct);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxControls.Controls.Add(buttonUpdateProduct);
|
|
|
|
|
groupBoxControls.Controls.Add(buttonCreateProduct);
|
2024-06-25 22:09:51 +04:00
|
|
|
|
groupBoxControls.Dock = DockStyle.Left;
|
|
|
|
|
groupBoxControls.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
|
|
|
|
|
groupBoxControls.ForeColor = SystemColors.ControlLightLight;
|
|
|
|
|
groupBoxControls.Location = new Point(0, 24);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxControls.Name = "groupBoxControls";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
groupBoxControls.Size = new Size(285, 535);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxControls.TabIndex = 2;
|
|
|
|
|
groupBoxControls.TabStop = false;
|
|
|
|
|
groupBoxControls.Text = "Действия";
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
// buttonDeleteProduct
|
|
|
|
|
//
|
|
|
|
|
buttonDeleteProduct.BackColor = Color.FromArgb(255, 192, 192);
|
|
|
|
|
buttonDeleteProduct.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
|
|
|
|
|
buttonDeleteProduct.ForeColor = SystemColors.ActiveCaptionText;
|
|
|
|
|
buttonDeleteProduct.Location = new Point(69, 98);
|
|
|
|
|
buttonDeleteProduct.Name = "buttonDeleteProduct";
|
|
|
|
|
buttonDeleteProduct.Size = new Size(139, 39);
|
|
|
|
|
buttonDeleteProduct.TabIndex = 3;
|
|
|
|
|
buttonDeleteProduct.Text = "Удалить товар";
|
|
|
|
|
buttonDeleteProduct.UseVisualStyleBackColor = false;
|
|
|
|
|
buttonDeleteProduct.Click += buttonDeleteProduct_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonUpdateProduct
|
|
|
|
|
//
|
|
|
|
|
buttonUpdateProduct.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
|
|
|
|
|
buttonUpdateProduct.ForeColor = SystemColors.ActiveCaptionText;
|
|
|
|
|
buttonUpdateProduct.Location = new Point(69, 143);
|
|
|
|
|
buttonUpdateProduct.Name = "buttonUpdateProduct";
|
|
|
|
|
buttonUpdateProduct.Size = new Size(139, 43);
|
|
|
|
|
buttonUpdateProduct.TabIndex = 2;
|
|
|
|
|
buttonUpdateProduct.Text = "Изменить товар";
|
|
|
|
|
buttonUpdateProduct.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonUpdateProduct.Click += buttonUpdateProduct_Click;
|
|
|
|
|
//
|
2024-06-25 21:12:06 +04:00
|
|
|
|
// buttonPrintCheque
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonPrintCheque.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
|
|
|
|
|
buttonPrintCheque.Location = new Point(667, 378);
|
2024-06-25 21:12:06 +04:00
|
|
|
|
buttonPrintCheque.Name = "buttonPrintCheque";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonPrintCheque.Size = new Size(138, 57);
|
2024-06-25 21:12:06 +04:00
|
|
|
|
buttonPrintCheque.TabIndex = 7;
|
|
|
|
|
buttonPrintCheque.Text = "Распечатать чек";
|
|
|
|
|
buttonPrintCheque.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonPrintCheque.Click += buttonPrintCheque_Click;
|
|
|
|
|
//
|
2024-06-24 14:09:32 +04:00
|
|
|
|
// buttonReadBarCode
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonReadBarCode.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
|
|
|
|
|
buttonReadBarCode.Location = new Point(667, 487);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
buttonReadBarCode.Name = "buttonReadBarCode";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonReadBarCode.Size = new Size(138, 42);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
buttonReadBarCode.TabIndex = 6;
|
|
|
|
|
buttonReadBarCode.Text = "Получить товар по штрих-коду";
|
|
|
|
|
buttonReadBarCode.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonReadBarCode.Click += buttonReadBarCode_Click;
|
|
|
|
|
//
|
|
|
|
|
// pictureBox1
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
pictureBox1.Location = new Point(811, 378);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
pictureBox1.Name = "pictureBox1";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
pictureBox1.Size = new Size(102, 103);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
pictureBox1.TabIndex = 5;
|
|
|
|
|
pictureBox1.TabStop = false;
|
|
|
|
|
//
|
|
|
|
|
// buttonGenerateBarCode
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonGenerateBarCode.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
|
|
|
|
|
buttonGenerateBarCode.Location = new Point(811, 487);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
buttonGenerateBarCode.Name = "buttonGenerateBarCode";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonGenerateBarCode.Size = new Size(102, 42);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
buttonGenerateBarCode.TabIndex = 4;
|
|
|
|
|
buttonGenerateBarCode.Text = "Сгенерировать штрих-код товара";
|
|
|
|
|
buttonGenerateBarCode.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonGenerateBarCode.Click += buttonGenerateBarCode_Click;
|
|
|
|
|
//
|
2024-06-23 14:01:09 +04:00
|
|
|
|
// groupBoxCreateProduct
|
|
|
|
|
//
|
|
|
|
|
groupBoxCreateProduct.BackColor = Color.Transparent;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
groupBoxCreateProduct.BackgroundImageLayout = ImageLayout.Center;
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(label3);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(label2);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(label1);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxCreateProduct.Controls.Add(numericUpDownAmount);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(numericUpDownPrice);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(buttonCancel);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(buttonSaveProduct);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(checkBoxIsSold);
|
|
|
|
|
groupBoxCreateProduct.Controls.Add(textBoxName);
|
2024-06-25 22:09:51 +04:00
|
|
|
|
groupBoxCreateProduct.Dock = DockStyle.Left;
|
|
|
|
|
groupBoxCreateProduct.Font = new Font("Segoe UI", 10F, FontStyle.Bold);
|
|
|
|
|
groupBoxCreateProduct.ForeColor = SystemColors.ControlLightLight;
|
|
|
|
|
groupBoxCreateProduct.Location = new Point(285, 24);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxCreateProduct.Name = "groupBoxCreateProduct";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
groupBoxCreateProduct.Size = new Size(243, 535);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxCreateProduct.TabIndex = 3;
|
|
|
|
|
groupBoxCreateProduct.TabStop = false;
|
|
|
|
|
groupBoxCreateProduct.Text = "Создание/изменение продукта";
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
// label3
|
|
|
|
|
//
|
|
|
|
|
label3.AutoSize = true;
|
|
|
|
|
label3.Location = new Point(5, 206);
|
|
|
|
|
label3.Name = "label3";
|
|
|
|
|
label3.Size = new Size(238, 19);
|
|
|
|
|
label3.TabIndex = 10;
|
|
|
|
|
label3.Text = "Кол-во на складе (если имеется)";
|
|
|
|
|
//
|
|
|
|
|
// label2
|
|
|
|
|
//
|
|
|
|
|
label2.AutoSize = true;
|
|
|
|
|
label2.Location = new Point(71, 139);
|
|
|
|
|
label2.Name = "label2";
|
|
|
|
|
label2.Size = new Size(90, 19);
|
|
|
|
|
label2.TabIndex = 9;
|
|
|
|
|
label2.Text = "Цена (руб.)";
|
|
|
|
|
//
|
|
|
|
|
// label1
|
|
|
|
|
//
|
|
|
|
|
label1.AutoSize = true;
|
|
|
|
|
label1.Location = new Point(24, 76);
|
|
|
|
|
label1.Name = "label1";
|
|
|
|
|
label1.Size = new Size(186, 19);
|
|
|
|
|
label1.TabIndex = 8;
|
|
|
|
|
label1.Text = "Наименование продукта";
|
|
|
|
|
//
|
2024-06-23 14:01:09 +04:00
|
|
|
|
// numericUpDownAmount
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
numericUpDownAmount.Location = new Point(36, 228);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
numericUpDownAmount.Maximum = new decimal(new int[] { 100000, 0, 0, 0 });
|
|
|
|
|
numericUpDownAmount.Name = "numericUpDownAmount";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
numericUpDownAmount.Size = new Size(165, 25);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
numericUpDownAmount.TabIndex = 7;
|
|
|
|
|
//
|
|
|
|
|
// numericUpDownPrice
|
|
|
|
|
//
|
|
|
|
|
numericUpDownPrice.DecimalPlaces = 2;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
numericUpDownPrice.Location = new Point(36, 161);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
numericUpDownPrice.Maximum = new decimal(new int[] { 100000, 0, 0, 0 });
|
|
|
|
|
numericUpDownPrice.Name = "numericUpDownPrice";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
numericUpDownPrice.Size = new Size(165, 25);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
numericUpDownPrice.TabIndex = 6;
|
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonCancel.ForeColor = SystemColors.ActiveCaptionText;
|
|
|
|
|
buttonCancel.Location = new Point(141, 473);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonCancel.Name = "buttonCancel";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonCancel.Size = new Size(96, 32);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonCancel.TabIndex = 5;
|
|
|
|
|
buttonCancel.Text = "Отмена";
|
|
|
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
2024-06-23 14:21:59 +04:00
|
|
|
|
buttonCancel.Click += buttonCancel_Click;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonSaveProduct
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonSaveProduct.ForeColor = SystemColors.ActiveCaptionText;
|
|
|
|
|
buttonSaveProduct.Location = new Point(6, 473);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonSaveProduct.Name = "buttonSaveProduct";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
buttonSaveProduct.Size = new Size(109, 30);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
buttonSaveProduct.TabIndex = 4;
|
|
|
|
|
buttonSaveProduct.Text = "Сохранить";
|
|
|
|
|
buttonSaveProduct.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSaveProduct.Click += buttonSaveProduct_Click;
|
|
|
|
|
//
|
|
|
|
|
// checkBoxIsSold
|
|
|
|
|
//
|
|
|
|
|
checkBoxIsSold.AutoSize = true;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
checkBoxIsSold.Location = new Point(27, 288);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
checkBoxIsSold.Name = "checkBoxIsSold";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
checkBoxIsSold.Size = new Size(183, 23);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
checkBoxIsSold.TabIndex = 3;
|
|
|
|
|
checkBoxIsSold.Text = "Поместить в магазин?";
|
|
|
|
|
checkBoxIsSold.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
|
|
|
|
// textBoxName
|
|
|
|
|
//
|
2024-06-25 22:09:51 +04:00
|
|
|
|
textBoxName.Location = new Point(36, 98);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
textBoxName.Name = "textBoxName";
|
2024-06-25 22:09:51 +04:00
|
|
|
|
textBoxName.Size = new Size(165, 25);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
textBoxName.TabIndex = 0;
|
|
|
|
|
//
|
2024-06-24 16:23:42 +04:00
|
|
|
|
// menuStrip1
|
|
|
|
|
//
|
2024-06-25 21:12:06 +04:00
|
|
|
|
menuStrip1.Items.AddRange(new ToolStripItem[] { медиаФайлыToolStripMenuItem, прайслистToolStripMenuItem });
|
2024-06-24 16:23:42 +04:00
|
|
|
|
menuStrip1.Location = new Point(0, 0);
|
|
|
|
|
menuStrip1.Name = "menuStrip1";
|
|
|
|
|
menuStrip1.Size = new Size(925, 24);
|
|
|
|
|
menuStrip1.TabIndex = 4;
|
|
|
|
|
menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// медиаФайлыToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
медиаФайлыToolStripMenuItem.Name = "медиаФайлыToolStripMenuItem";
|
|
|
|
|
медиаФайлыToolStripMenuItem.Size = new Size(96, 20);
|
|
|
|
|
медиаФайлыToolStripMenuItem.Text = "Медиа файлы";
|
|
|
|
|
медиаФайлыToolStripMenuItem.Click += медиаФайлыToolStripMenuItem_Click;
|
|
|
|
|
//
|
2024-06-25 21:12:06 +04:00
|
|
|
|
// прайслистToolStripMenuItem
|
2024-06-25 20:24:29 +04:00
|
|
|
|
//
|
2024-06-25 21:12:06 +04:00
|
|
|
|
прайслистToolStripMenuItem.Name = "прайслистToolStripMenuItem";
|
|
|
|
|
прайслистToolStripMenuItem.Size = new Size(84, 20);
|
|
|
|
|
прайслистToolStripMenuItem.Text = "Прайс-лист";
|
|
|
|
|
прайслистToolStripMenuItem.Click += прайслистToolStripMenuItem_Click;
|
2024-06-25 20:24:29 +04:00
|
|
|
|
//
|
2024-06-23 14:01:09 +04:00
|
|
|
|
// FormProducts
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
BackgroundImage = (Image)resources.GetObject("$this.BackgroundImage");
|
|
|
|
|
ClientSize = new Size(925, 559);
|
|
|
|
|
Controls.Add(buttonPrintCheque);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
Controls.Add(groupBoxCreateProduct);
|
2024-06-25 22:09:51 +04:00
|
|
|
|
Controls.Add(buttonReadBarCode);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
Controls.Add(groupBoxControls);
|
2024-06-25 22:09:51 +04:00
|
|
|
|
Controls.Add(buttonGenerateBarCode);
|
|
|
|
|
Controls.Add(pictureBox1);
|
2024-06-23 14:01:09 +04:00
|
|
|
|
Controls.Add(dataGridView);
|
2024-06-24 16:23:42 +04:00
|
|
|
|
Controls.Add(menuStrip1);
|
|
|
|
|
MainMenuStrip = menuStrip1;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
Name = "FormProducts";
|
2024-06-25 22:34:53 +04:00
|
|
|
|
Text = "Товары";
|
2024-06-23 14:01:09 +04:00
|
|
|
|
Load += FormProducts_Load;
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
|
|
|
groupBoxControls.ResumeLayout(false);
|
2024-06-24 14:09:32 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
groupBoxCreateProduct.ResumeLayout(false);
|
|
|
|
|
groupBoxCreateProduct.PerformLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownAmount).EndInit();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPrice).EndInit();
|
2024-06-24 16:23:42 +04:00
|
|
|
|
menuStrip1.ResumeLayout(false);
|
|
|
|
|
menuStrip1.PerformLayout();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
ResumeLayout(false);
|
2024-06-24 16:23:42 +04:00
|
|
|
|
PerformLayout();
|
2024-06-23 14:01:09 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#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;
|
2024-06-23 14:27:50 +04:00
|
|
|
|
private Button buttonDeleteProduct;
|
2024-06-24 14:09:32 +04:00
|
|
|
|
private Button buttonGenerateBarCode;
|
|
|
|
|
private PictureBox pictureBox1;
|
|
|
|
|
private Button buttonReadBarCode;
|
2024-06-24 16:23:42 +04:00
|
|
|
|
private MenuStrip menuStrip1;
|
|
|
|
|
private ToolStripMenuItem медиаФайлыToolStripMenuItem;
|
2024-06-25 20:24:29 +04:00
|
|
|
|
private Button buttonPrintCheque;
|
2024-06-25 21:12:06 +04:00
|
|
|
|
private ToolStripMenuItem прайслистToolStripMenuItem;
|
2024-06-25 22:09:51 +04:00
|
|
|
|
private Label label3;
|
|
|
|
|
private Label label2;
|
|
|
|
|
private Label label1;
|
2024-06-23 14:01:09 +04:00
|
|
|
|
}
|
|
|
|
|
}
|