146 lines
5.2 KiB
C#
146 lines
5.2 KiB
C#
|
namespace GasStation.Forms
|
|||
|
{
|
|||
|
partial class FormProduct
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
label1 = new Label();
|
|||
|
label2 = new Label();
|
|||
|
label3 = new Label();
|
|||
|
numericUpDownCost = new NumericUpDown();
|
|||
|
comboBoxProduct = new ComboBox();
|
|||
|
checkedListBoxGasman = new CheckedListBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownCost).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(43, 29);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(70, 15);
|
|||
|
label1.TabIndex = 0;
|
|||
|
label1.Text = "Заправщик";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
label2.AutoSize = true;
|
|||
|
label2.Location = new Point(43, 132);
|
|||
|
label2.Name = "label2";
|
|||
|
label2.Size = new Size(39, 15);
|
|||
|
label2.TabIndex = 1;
|
|||
|
label2.Text = "Товар";
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
label3.AutoSize = true;
|
|||
|
label3.Location = new Point(47, 202);
|
|||
|
label3.Name = "label3";
|
|||
|
label3.Size = new Size(67, 15);
|
|||
|
label3.TabIndex = 2;
|
|||
|
label3.Text = "Стоимость";
|
|||
|
//
|
|||
|
// numericUpDownCost
|
|||
|
//
|
|||
|
numericUpDownCost.Location = new Point(193, 202);
|
|||
|
numericUpDownCost.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
|
|||
|
numericUpDownCost.Name = "numericUpDownCost";
|
|||
|
numericUpDownCost.Size = new Size(156, 23);
|
|||
|
numericUpDownCost.TabIndex = 3;
|
|||
|
numericUpDownCost.Value = new decimal(new int[] { 1, 0, 0, 0 });
|
|||
|
//
|
|||
|
// comboBoxProduct
|
|||
|
//
|
|||
|
comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList;
|
|||
|
comboBoxProduct.FormattingEnabled = true;
|
|||
|
comboBoxProduct.Location = new Point(194, 132);
|
|||
|
comboBoxProduct.Name = "comboBoxProduct";
|
|||
|
comboBoxProduct.Size = new Size(155, 23);
|
|||
|
comboBoxProduct.TabIndex = 4;
|
|||
|
//
|
|||
|
// checkedListBoxGasman
|
|||
|
//
|
|||
|
checkedListBoxGasman.FormattingEnabled = true;
|
|||
|
checkedListBoxGasman.Location = new Point(194, 29);
|
|||
|
checkedListBoxGasman.Name = "checkedListBoxGasman";
|
|||
|
checkedListBoxGasman.Size = new Size(155, 76);
|
|||
|
checkedListBoxGasman.TabIndex = 5;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(47, 269);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(75, 23);
|
|||
|
buttonSave.TabIndex = 6;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += ButtonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(269, 269);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(80, 23);
|
|||
|
buttonCancel.TabIndex = 7;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += ButtonCancel_Click;
|
|||
|
//
|
|||
|
// FormProduct
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(401, 314);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(checkedListBoxGasman);
|
|||
|
Controls.Add(comboBoxProduct);
|
|||
|
Controls.Add(numericUpDownCost);
|
|||
|
Controls.Add(label3);
|
|||
|
Controls.Add(label2);
|
|||
|
Controls.Add(label1);
|
|||
|
Name = "FormProduct";
|
|||
|
Text = "Товар";
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownCost).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label label1;
|
|||
|
private Label label2;
|
|||
|
private Label label3;
|
|||
|
private NumericUpDown numericUpDownCost;
|
|||
|
private ComboBox comboBoxProduct;
|
|||
|
private CheckedListBox checkedListBoxGasman;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|