2024-11-20 00:53:28 +04:00
|
|
|
|
namespace ProjectGarage.Forms
|
|
|
|
|
{
|
|
|
|
|
partial class FormRoute
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
labelRouteStart = new Label();
|
|
|
|
|
labelRouteFinal = new Label();
|
|
|
|
|
numericUpDownRouteLen = new NumericUpDown();
|
|
|
|
|
labelRouteLen = new Label();
|
|
|
|
|
buttonRouteSave = new Button();
|
|
|
|
|
buttonRouteFinal = new Button();
|
|
|
|
|
textBoxRouteStart = new TextBox();
|
|
|
|
|
textBoxRouteFinal = new TextBox();
|
2024-12-03 23:06:20 +04:00
|
|
|
|
textBoxRouteName = new TextBox();
|
|
|
|
|
labelRouteName = new Label();
|
2024-11-20 00:53:28 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownRouteLen).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// labelRouteStart
|
|
|
|
|
//
|
|
|
|
|
labelRouteStart.AutoSize = true;
|
2024-12-03 23:06:20 +04:00
|
|
|
|
labelRouteStart.Location = new Point(22, 62);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
labelRouteStart.Name = "labelRouteStart";
|
|
|
|
|
labelRouteStart.Size = new Size(135, 20);
|
|
|
|
|
labelRouteStart.TabIndex = 0;
|
|
|
|
|
labelRouteStart.Text = "Начало маршрута";
|
|
|
|
|
//
|
|
|
|
|
// labelRouteFinal
|
|
|
|
|
//
|
|
|
|
|
labelRouteFinal.AutoSize = true;
|
2024-12-03 23:06:20 +04:00
|
|
|
|
labelRouteFinal.Location = new Point(22, 104);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
labelRouteFinal.Name = "labelRouteFinal";
|
|
|
|
|
labelRouteFinal.Size = new Size(127, 20);
|
|
|
|
|
labelRouteFinal.TabIndex = 1;
|
|
|
|
|
labelRouteFinal.Text = "Конец маршрута";
|
|
|
|
|
//
|
|
|
|
|
// numericUpDownRouteLen
|
|
|
|
|
//
|
2024-12-03 23:06:20 +04:00
|
|
|
|
numericUpDownRouteLen.Location = new Point(170, 145);
|
|
|
|
|
numericUpDownRouteLen.Maximum = new decimal(new int[] { 10000, 0, 0, 0 });
|
2024-11-20 00:53:28 +04:00
|
|
|
|
numericUpDownRouteLen.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
|
|
|
|
|
numericUpDownRouteLen.Name = "numericUpDownRouteLen";
|
|
|
|
|
numericUpDownRouteLen.Size = new Size(150, 27);
|
|
|
|
|
numericUpDownRouteLen.TabIndex = 2;
|
|
|
|
|
numericUpDownRouteLen.Value = new decimal(new int[] { 1, 0, 0, 0 });
|
|
|
|
|
//
|
|
|
|
|
// labelRouteLen
|
|
|
|
|
//
|
|
|
|
|
labelRouteLen.AutoSize = true;
|
2024-12-03 23:06:20 +04:00
|
|
|
|
labelRouteLen.Location = new Point(22, 145);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
labelRouteLen.Name = "labelRouteLen";
|
|
|
|
|
labelRouteLen.Size = new Size(127, 20);
|
|
|
|
|
labelRouteLen.TabIndex = 3;
|
|
|
|
|
labelRouteLen.Text = "Длина маршрута";
|
|
|
|
|
//
|
|
|
|
|
// buttonRouteSave
|
|
|
|
|
//
|
2024-12-03 23:06:20 +04:00
|
|
|
|
buttonRouteSave.Location = new Point(22, 191);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
buttonRouteSave.Name = "buttonRouteSave";
|
|
|
|
|
buttonRouteSave.Size = new Size(135, 29);
|
|
|
|
|
buttonRouteSave.TabIndex = 4;
|
|
|
|
|
buttonRouteSave.Text = "Сохранить";
|
|
|
|
|
buttonRouteSave.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRouteSave.Click += ButtonRouteSave_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonRouteFinal
|
|
|
|
|
//
|
2024-12-03 23:06:20 +04:00
|
|
|
|
buttonRouteFinal.Location = new Point(170, 191);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
buttonRouteFinal.Name = "buttonRouteFinal";
|
|
|
|
|
buttonRouteFinal.Size = new Size(150, 29);
|
|
|
|
|
buttonRouteFinal.TabIndex = 5;
|
|
|
|
|
buttonRouteFinal.Text = "Отмена";
|
|
|
|
|
buttonRouteFinal.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRouteFinal.Click += ButtonRouteFinal_Click;
|
|
|
|
|
//
|
|
|
|
|
// textBoxRouteStart
|
|
|
|
|
//
|
2024-12-03 23:06:20 +04:00
|
|
|
|
textBoxRouteStart.Location = new Point(170, 62);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
textBoxRouteStart.Name = "textBoxRouteStart";
|
|
|
|
|
textBoxRouteStart.Size = new Size(150, 27);
|
|
|
|
|
textBoxRouteStart.TabIndex = 6;
|
|
|
|
|
//
|
|
|
|
|
// textBoxRouteFinal
|
|
|
|
|
//
|
2024-12-03 23:06:20 +04:00
|
|
|
|
textBoxRouteFinal.Location = new Point(170, 104);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
textBoxRouteFinal.Name = "textBoxRouteFinal";
|
|
|
|
|
textBoxRouteFinal.Size = new Size(150, 27);
|
|
|
|
|
textBoxRouteFinal.TabIndex = 7;
|
|
|
|
|
//
|
2024-12-03 23:06:20 +04:00
|
|
|
|
// textBoxRouteName
|
|
|
|
|
//
|
|
|
|
|
textBoxRouteName.Location = new Point(179, 12);
|
|
|
|
|
textBoxRouteName.Name = "textBoxRouteName";
|
|
|
|
|
textBoxRouteName.Size = new Size(141, 27);
|
|
|
|
|
textBoxRouteName.TabIndex = 9;
|
|
|
|
|
//
|
|
|
|
|
// labelRouteName
|
|
|
|
|
//
|
|
|
|
|
labelRouteName.AutoSize = true;
|
|
|
|
|
labelRouteName.Location = new Point(22, 19);
|
|
|
|
|
labelRouteName.Name = "labelRouteName";
|
|
|
|
|
labelRouteName.Size = new Size(151, 20);
|
|
|
|
|
labelRouteName.TabIndex = 8;
|
|
|
|
|
labelRouteName.Text = "Название маршрута";
|
|
|
|
|
//
|
2024-11-20 00:53:28 +04:00
|
|
|
|
// FormRoute
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-12-03 23:06:20 +04:00
|
|
|
|
ClientSize = new Size(332, 240);
|
|
|
|
|
Controls.Add(textBoxRouteName);
|
|
|
|
|
Controls.Add(labelRouteName);
|
2024-11-20 00:53:28 +04:00
|
|
|
|
Controls.Add(textBoxRouteFinal);
|
|
|
|
|
Controls.Add(textBoxRouteStart);
|
|
|
|
|
Controls.Add(buttonRouteFinal);
|
|
|
|
|
Controls.Add(buttonRouteSave);
|
|
|
|
|
Controls.Add(labelRouteLen);
|
|
|
|
|
Controls.Add(numericUpDownRouteLen);
|
|
|
|
|
Controls.Add(labelRouteFinal);
|
|
|
|
|
Controls.Add(labelRouteStart);
|
|
|
|
|
Name = "FormRoute";
|
|
|
|
|
Text = "FormRoute";
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownRouteLen).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Label labelRouteStart;
|
|
|
|
|
private Label labelRouteFinal;
|
|
|
|
|
private NumericUpDown numericUpDownRouteLen;
|
|
|
|
|
private Label labelRouteLen;
|
|
|
|
|
private Button buttonRouteSave;
|
|
|
|
|
private Button buttonRouteFinal;
|
|
|
|
|
private TextBox textBoxRouteStart;
|
|
|
|
|
private TextBox textBoxRouteFinal;
|
2024-12-03 23:06:20 +04:00
|
|
|
|
private TextBox textBoxRouteName;
|
|
|
|
|
private Label labelRouteName;
|
2024-11-20 00:53:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|