2024-02-05 19:09:54 +04:00
|
|
|
|
namespace FishFactory.Forms
|
|
|
|
|
{
|
|
|
|
|
partial class FormCanned
|
|
|
|
|
{
|
|
|
|
|
/// <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-02-06 23:13:36 +04:00
|
|
|
|
label1 = new Label();
|
|
|
|
|
label2 = new Label();
|
|
|
|
|
buttonAdd = new Button();
|
|
|
|
|
buttonUpd = new Button();
|
|
|
|
|
buttonDel = new Button();
|
|
|
|
|
buttonRef = new Button();
|
|
|
|
|
dataGridView = new DataGridView();
|
|
|
|
|
textBoxName = new TextBox();
|
|
|
|
|
textBoxPrice = new TextBox();
|
|
|
|
|
groupBox1 = new GroupBox();
|
|
|
|
|
buttonSave = new Button();
|
|
|
|
|
buttonCancel = new Button();
|
2024-03-02 12:10:12 +04:00
|
|
|
|
Number = new DataGridViewTextBoxColumn();
|
|
|
|
|
Component = new DataGridViewTextBoxColumn();
|
|
|
|
|
Count = new DataGridViewTextBoxColumn();
|
2024-02-06 23:13:36 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
|
|
|
groupBox1.SuspendLayout();
|
|
|
|
|
SuspendLayout();
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
|
|
|
|
// label1
|
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
label1.AutoSize = true;
|
|
|
|
|
label1.Location = new Point(18, 20);
|
|
|
|
|
label1.Name = "label1";
|
|
|
|
|
label1.Size = new Size(80, 20);
|
|
|
|
|
label1.TabIndex = 0;
|
|
|
|
|
label1.Text = "Название:";
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
|
|
|
|
// label2
|
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
label2.AutoSize = true;
|
|
|
|
|
label2.Location = new Point(18, 55);
|
|
|
|
|
label2.Name = "label2";
|
|
|
|
|
label2.Size = new Size(86, 20);
|
|
|
|
|
label2.TabIndex = 1;
|
|
|
|
|
label2.Text = "Стоимость:";
|
|
|
|
|
//
|
|
|
|
|
// buttonAdd
|
|
|
|
|
//
|
|
|
|
|
buttonAdd.Location = new Point(656, 59);
|
|
|
|
|
buttonAdd.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
buttonAdd.Name = "buttonAdd";
|
|
|
|
|
buttonAdd.Size = new Size(111, 38);
|
|
|
|
|
buttonAdd.TabIndex = 0;
|
|
|
|
|
buttonAdd.Text = "Добавить";
|
|
|
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonUpd
|
|
|
|
|
//
|
|
|
|
|
buttonUpd.Location = new Point(656, 120);
|
|
|
|
|
buttonUpd.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
buttonUpd.Name = "buttonUpd";
|
|
|
|
|
buttonUpd.Size = new Size(111, 38);
|
|
|
|
|
buttonUpd.TabIndex = 1;
|
|
|
|
|
buttonUpd.Text = "Изменить";
|
|
|
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonUpd.Click += buttonUpd_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonDel
|
|
|
|
|
//
|
|
|
|
|
buttonDel.Location = new Point(656, 178);
|
|
|
|
|
buttonDel.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
buttonDel.Name = "buttonDel";
|
|
|
|
|
buttonDel.Size = new Size(111, 38);
|
|
|
|
|
buttonDel.TabIndex = 2;
|
|
|
|
|
buttonDel.Text = "Удалить";
|
|
|
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonDel.Click += buttonDel_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonRef
|
|
|
|
|
//
|
|
|
|
|
buttonRef.Location = new Point(656, 231);
|
|
|
|
|
buttonRef.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
buttonRef.Name = "buttonRef";
|
|
|
|
|
buttonRef.Size = new Size(111, 38);
|
|
|
|
|
buttonRef.TabIndex = 3;
|
|
|
|
|
buttonRef.Text = "Обновить";
|
|
|
|
|
buttonRef.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRef.Click += buttonRef_Click;
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
|
|
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { Number, Component, Count });
|
|
|
|
|
dataGridView.Location = new Point(0, 26);
|
|
|
|
|
dataGridView.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
dataGridView.Name = "dataGridView";
|
|
|
|
|
dataGridView.ReadOnly = true;
|
|
|
|
|
dataGridView.RowHeadersWidth = 51;
|
|
|
|
|
dataGridView.RowTemplate.Height = 24;
|
|
|
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
|
|
|
dataGridView.ShowEditingIcon = false;
|
|
|
|
|
dataGridView.Size = new Size(627, 443);
|
|
|
|
|
dataGridView.TabIndex = 4;
|
|
|
|
|
//
|
|
|
|
|
// textBoxName
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
textBoxName.Location = new Point(107, 18);
|
|
|
|
|
textBoxName.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
textBoxName.Name = "textBoxName";
|
|
|
|
|
textBoxName.Size = new Size(281, 27);
|
|
|
|
|
textBoxName.TabIndex = 3;
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
// textBoxPrice
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
textBoxPrice.Location = new Point(107, 52);
|
|
|
|
|
textBoxPrice.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
textBoxPrice.Name = "textBoxPrice";
|
|
|
|
|
textBoxPrice.ReadOnly = true;
|
|
|
|
|
textBoxPrice.Size = new Size(97, 27);
|
|
|
|
|
textBoxPrice.TabIndex = 4;
|
|
|
|
|
textBoxPrice.TabStop = false;
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
|
|
|
|
// groupBox1
|
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
groupBox1.Controls.Add(buttonRef);
|
|
|
|
|
groupBox1.Controls.Add(buttonDel);
|
|
|
|
|
groupBox1.Controls.Add(dataGridView);
|
|
|
|
|
groupBox1.Controls.Add(buttonUpd);
|
|
|
|
|
groupBox1.Controls.Add(buttonAdd);
|
|
|
|
|
groupBox1.Location = new Point(16, 95);
|
|
|
|
|
groupBox1.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
groupBox1.Name = "groupBox1";
|
|
|
|
|
groupBox1.Padding = new Padding(3, 4, 3, 4);
|
|
|
|
|
groupBox1.Size = new Size(787, 489);
|
|
|
|
|
groupBox1.TabIndex = 5;
|
|
|
|
|
groupBox1.TabStop = false;
|
|
|
|
|
groupBox1.Text = "Компоненты";
|
|
|
|
|
//
|
|
|
|
|
// buttonSave
|
|
|
|
|
//
|
|
|
|
|
buttonSave.Location = new Point(454, 605);
|
|
|
|
|
buttonSave.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
buttonSave.Name = "buttonSave";
|
|
|
|
|
buttonSave.Size = new Size(130, 38);
|
|
|
|
|
buttonSave.TabIndex = 0;
|
|
|
|
|
buttonSave.Text = "Сохранить";
|
|
|
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSave.Click += buttonSave_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
|
|
|
|
buttonCancel.Location = new Point(609, 605);
|
|
|
|
|
buttonCancel.Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
buttonCancel.Name = "buttonCancel";
|
|
|
|
|
buttonCancel.Size = new Size(130, 38);
|
|
|
|
|
buttonCancel.TabIndex = 0;
|
|
|
|
|
buttonCancel.Text = "Отмена";
|
|
|
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCancel.Click += buttonCancel_Click;
|
2024-02-05 19:09:54 +04:00
|
|
|
|
//
|
2024-03-02 12:10:12 +04:00
|
|
|
|
// Number
|
|
|
|
|
//
|
|
|
|
|
Number.HeaderText = "Номер";
|
|
|
|
|
Number.MinimumWidth = 6;
|
|
|
|
|
Number.Name = "Number";
|
|
|
|
|
Number.ReadOnly = true;
|
|
|
|
|
Number.Visible = false;
|
|
|
|
|
Number.Width = 60;
|
|
|
|
|
//
|
|
|
|
|
// Component
|
|
|
|
|
//
|
|
|
|
|
Component.HeaderText = "Компонент";
|
|
|
|
|
Component.MinimumWidth = 6;
|
|
|
|
|
Component.Name = "Component";
|
|
|
|
|
Component.ReadOnly = true;
|
|
|
|
|
Component.Width = 125;
|
|
|
|
|
//
|
|
|
|
|
// Count
|
|
|
|
|
//
|
|
|
|
|
Count.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
|
|
|
Count.HeaderText = "Количество";
|
|
|
|
|
Count.MinimumWidth = 6;
|
|
|
|
|
Count.Name = "Count";
|
|
|
|
|
Count.ReadOnly = true;
|
|
|
|
|
//
|
2024-02-05 19:09:54 +04:00
|
|
|
|
// FormCanned
|
|
|
|
|
//
|
2024-02-06 23:13:36 +04:00
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(813, 663);
|
|
|
|
|
Controls.Add(groupBox1);
|
|
|
|
|
Controls.Add(textBoxPrice);
|
|
|
|
|
Controls.Add(textBoxName);
|
|
|
|
|
Controls.Add(label2);
|
|
|
|
|
Controls.Add(buttonCancel);
|
|
|
|
|
Controls.Add(buttonSave);
|
|
|
|
|
Controls.Add(label1);
|
|
|
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
|
|
|
Name = "FormCanned";
|
|
|
|
|
Text = "Консерва";
|
|
|
|
|
Load += FormCanned_Load;
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
|
|
|
groupBox1.ResumeLayout(false);
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
2024-02-05 19:09:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2024-02-06 23:13:36 +04:00
|
|
|
|
private Label label1;
|
|
|
|
|
private Label label2;
|
|
|
|
|
private Button buttonRef;
|
|
|
|
|
private Button buttonDel;
|
|
|
|
|
private Button buttonUpd;
|
|
|
|
|
private Button buttonAdd;
|
|
|
|
|
private DataGridView dataGridView;
|
|
|
|
|
private TextBox textBoxName;
|
|
|
|
|
private TextBox textBoxPrice;
|
|
|
|
|
private GroupBox groupBox1;
|
2024-03-02 12:10:12 +04:00
|
|
|
|
private Button buttonSave;
|
|
|
|
|
private Button buttonCancel;
|
2024-02-06 23:13:36 +04:00
|
|
|
|
private DataGridViewTextBoxColumn Number;
|
|
|
|
|
private DataGridViewTextBoxColumn Component;
|
|
|
|
|
private DataGridViewTextBoxColumn Count;
|
2024-02-05 19:09:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|