144 lines
5.5 KiB
C#
144 lines
5.5 KiB
C#
namespace ProjectGarage.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()
|
|
{
|
|
checkedListBoxFuel = new CheckedListBox();
|
|
labelFuelType = new Label();
|
|
labelFuelName = new Label();
|
|
textBoxFuelName = new TextBox();
|
|
numericUpDownFuelPrice = new NumericUpDown();
|
|
labelFuelPrice = new Label();
|
|
buttonFuelSave = new Button();
|
|
buttonFuelCancel = new Button();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownFuelPrice).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// checkedListBoxFuel
|
|
//
|
|
checkedListBoxFuel.FormattingEnabled = true;
|
|
checkedListBoxFuel.Location = new Point(121, 12);
|
|
checkedListBoxFuel.Name = "checkedListBoxFuel";
|
|
checkedListBoxFuel.Size = new Size(150, 114);
|
|
checkedListBoxFuel.TabIndex = 0;
|
|
//
|
|
// labelFuelType
|
|
//
|
|
labelFuelType.AutoSize = true;
|
|
labelFuelType.Location = new Point(12, 12);
|
|
labelFuelType.Name = "labelFuelType";
|
|
labelFuelType.Size = new Size(96, 20);
|
|
labelFuelType.TabIndex = 1;
|
|
labelFuelType.Text = "Тип топлива";
|
|
//
|
|
// labelFuelName
|
|
//
|
|
labelFuelName.AutoSize = true;
|
|
labelFuelName.Location = new Point(21, 138);
|
|
labelFuelName.Name = "labelFuelName";
|
|
labelFuelName.Size = new Size(77, 20);
|
|
labelFuelName.TabIndex = 2;
|
|
labelFuelName.Text = "Название";
|
|
//
|
|
// textBoxFuelName
|
|
//
|
|
textBoxFuelName.Location = new Point(121, 138);
|
|
textBoxFuelName.Name = "textBoxFuelName";
|
|
textBoxFuelName.Size = new Size(150, 27);
|
|
textBoxFuelName.TabIndex = 3;
|
|
//
|
|
// numericUpDownFuelPrice
|
|
//
|
|
numericUpDownFuelPrice.Location = new Point(121, 180);
|
|
numericUpDownFuelPrice.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
|
|
numericUpDownFuelPrice.Name = "numericUpDownFuelPrice";
|
|
numericUpDownFuelPrice.Size = new Size(150, 27);
|
|
numericUpDownFuelPrice.TabIndex = 4;
|
|
numericUpDownFuelPrice.Value = new decimal(new int[] { 1, 0, 0, 0 });
|
|
//
|
|
// labelFuelPrice
|
|
//
|
|
labelFuelPrice.AutoSize = true;
|
|
labelFuelPrice.Location = new Point(8, 182);
|
|
labelFuelPrice.Name = "labelFuelPrice";
|
|
labelFuelPrice.Size = new Size(100, 20);
|
|
labelFuelPrice.TabIndex = 5;
|
|
labelFuelPrice.Text = "Цена за литр";
|
|
//
|
|
// buttonFuelSave
|
|
//
|
|
buttonFuelSave.Location = new Point(8, 219);
|
|
buttonFuelSave.Name = "buttonFuelSave";
|
|
buttonFuelSave.Size = new Size(121, 29);
|
|
buttonFuelSave.TabIndex = 6;
|
|
buttonFuelSave.Text = "Сохранить";
|
|
buttonFuelSave.UseVisualStyleBackColor = true;
|
|
buttonFuelSave.Click += ButtonFuelSave_Click;
|
|
//
|
|
// buttonFuelCancel
|
|
//
|
|
buttonFuelCancel.Location = new Point(152, 219);
|
|
buttonFuelCancel.Name = "buttonFuelCancel";
|
|
buttonFuelCancel.Size = new Size(119, 29);
|
|
buttonFuelCancel.TabIndex = 7;
|
|
buttonFuelCancel.Text = "Отмена";
|
|
buttonFuelCancel.UseVisualStyleBackColor = true;
|
|
buttonFuelCancel.Click += ButtonFuelCancel_Click;
|
|
//
|
|
// FormFuel
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(292, 260);
|
|
Controls.Add(buttonFuelCancel);
|
|
Controls.Add(buttonFuelSave);
|
|
Controls.Add(labelFuelPrice);
|
|
Controls.Add(numericUpDownFuelPrice);
|
|
Controls.Add(textBoxFuelName);
|
|
Controls.Add(labelFuelName);
|
|
Controls.Add(labelFuelType);
|
|
Controls.Add(checkedListBoxFuel);
|
|
Name = "FormFuel";
|
|
Text = "FormFuel";
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownFuelPrice).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CheckedListBox checkedListBoxFuel;
|
|
private Label labelFuelType;
|
|
private Label labelFuelName;
|
|
private TextBox textBoxFuelName;
|
|
private NumericUpDown numericUpDownFuelPrice;
|
|
private Label labelFuelPrice;
|
|
private Button buttonFuelSave;
|
|
private Button buttonFuelCancel;
|
|
}
|
|
} |