148 lines
5.4 KiB
C#
148 lines
5.4 KiB
C#
namespace ProjectFuel.Forms_
|
|
{
|
|
partial class FormFuel
|
|
{
|
|
/// <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();
|
|
buttonFuelSave = new Button();
|
|
buttonCancel = new Button();
|
|
comboBoxFuelType = new ComboBox();
|
|
numericUpDownPrice = new NumericUpDown();
|
|
numericUpDownAmount = new NumericUpDown();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPrice).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownAmount).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(41, 58);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(152, 32);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Вид топлива";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(47, 126);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(159, 32);
|
|
label2.TabIndex = 1;
|
|
label2.Text = "Цена за литр";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(52, 198);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(144, 32);
|
|
label3.TabIndex = 2;
|
|
label3.Text = "Количество";
|
|
//
|
|
// buttonFuelSave
|
|
//
|
|
buttonFuelSave.Location = new Point(71, 338);
|
|
buttonFuelSave.Name = "buttonFuelSave";
|
|
buttonFuelSave.Size = new Size(150, 46);
|
|
buttonFuelSave.TabIndex = 3;
|
|
buttonFuelSave.Text = "Сохранить";
|
|
buttonFuelSave.UseVisualStyleBackColor = true;
|
|
buttonFuelSave.Click += ButtonFuelSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(306, 338);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(150, 46);
|
|
buttonCancel.TabIndex = 4;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// comboBoxFuelType
|
|
//
|
|
comboBoxFuelType.FormattingEnabled = true;
|
|
comboBoxFuelType.Location = new Point(272, 65);
|
|
comboBoxFuelType.Name = "comboBoxFuelType";
|
|
comboBoxFuelType.Size = new Size(242, 40);
|
|
comboBoxFuelType.TabIndex = 5;
|
|
//
|
|
// numericUpDownPrice
|
|
//
|
|
numericUpDownPrice.DecimalPlaces = 2;
|
|
numericUpDownPrice.InterceptArrowKeys = false;
|
|
numericUpDownPrice.Location = new Point(271, 129);
|
|
numericUpDownPrice.Name = "numericUpDownPrice";
|
|
numericUpDownPrice.Size = new Size(240, 39);
|
|
numericUpDownPrice.TabIndex = 6;
|
|
//
|
|
// numericUpDownAmount
|
|
//
|
|
numericUpDownAmount.DecimalPlaces = 2;
|
|
numericUpDownAmount.Location = new Point(268, 203);
|
|
numericUpDownAmount.Name = "numericUpDownAmount";
|
|
numericUpDownAmount.Size = new Size(240, 39);
|
|
numericUpDownAmount.TabIndex = 7;
|
|
//
|
|
// FormFuel
|
|
//
|
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(numericUpDownAmount);
|
|
Controls.Add(numericUpDownPrice);
|
|
Controls.Add(comboBoxFuelType);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonFuelSave);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Name = "FormFuel";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "FormFuel";
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPrice).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownAmount).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private Button buttonFuelSave;
|
|
private Button buttonCancel;
|
|
private ComboBox comboBoxFuelType;
|
|
private NumericUpDown numericUpDownPrice;
|
|
private NumericUpDown numericUpDownAmount;
|
|
}
|
|
} |