147 lines
5.3 KiB
C#
147 lines
5.3 KiB
C#
namespace GasStation.Forms
|
|
{
|
|
partial class FormSelling
|
|
{
|
|
/// <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();
|
|
numericUpDownCount = new NumericUpDown();
|
|
label3 = new Label();
|
|
comboBoxGasman = new ComboBox();
|
|
comboBoxProduct = new ComboBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(47, 35);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(70, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Заправщик";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(47, 98);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(39, 15);
|
|
label2.TabIndex = 1;
|
|
label2.Text = "Товар";
|
|
//
|
|
// numericUpDownCount
|
|
//
|
|
numericUpDownCount.Location = new Point(149, 164);
|
|
numericUpDownCount.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
|
|
numericUpDownCount.Name = "numericUpDownCount";
|
|
numericUpDownCount.Size = new Size(120, 23);
|
|
numericUpDownCount.TabIndex = 2;
|
|
numericUpDownCount.Value = new decimal(new int[] { 1, 0, 0, 0 });
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(47, 172);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(46, 15);
|
|
label3.TabIndex = 3;
|
|
label3.Text = "Кол-во";
|
|
//
|
|
// comboBoxGasman
|
|
//
|
|
comboBoxGasman.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxGasman.FormattingEnabled = true;
|
|
comboBoxGasman.Location = new Point(147, 27);
|
|
comboBoxGasman.Name = "comboBoxGasman";
|
|
comboBoxGasman.Size = new Size(121, 23);
|
|
comboBoxGasman.TabIndex = 4;
|
|
//
|
|
// comboBoxProduct
|
|
//
|
|
comboBoxProduct.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxProduct.FormattingEnabled = true;
|
|
comboBoxProduct.Location = new Point(148, 90);
|
|
comboBoxProduct.Name = "comboBoxProduct";
|
|
comboBoxProduct.Size = new Size(121, 23);
|
|
comboBoxProduct.TabIndex = 5;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(47, 238);
|
|
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(194, 238);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormSelling
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(336, 297);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(comboBoxProduct);
|
|
Controls.Add(comboBoxGasman);
|
|
Controls.Add(label3);
|
|
Controls.Add(numericUpDownCount);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Name = "FormSelling";
|
|
Text = "Продажа";
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private NumericUpDown numericUpDownCount;
|
|
private Label label3;
|
|
private ComboBox comboBoxGasman;
|
|
private ComboBox comboBoxProduct;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |