namespace ProjectFuel.Forms_ { partial class FormRoute { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { label1 = new Label(); label2 = new Label(); label3 = new Label(); buttonRouteSave = new Button(); buttonCancel = new Button(); textBoxStartPoint = new TextBox(); textBoxEndPoint = new TextBox(); numericUpDownLength = new NumericUpDown(); ((System.ComponentModel.ISupportInitialize)numericUpDownLength).BeginInit(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(38, 56); label1.Name = "label1"; label1.Size = new Size(201, 32); label1.TabIndex = 0; label1.Text = "Начальная точка"; // // label2 // label2.AutoSize = true; label2.Location = new Point(42, 130); label2.Name = "label2"; label2.Size = new Size(190, 32); label2.TabIndex = 1; label2.Text = "Конечная точка"; // // label3 // label3.AutoSize = true; label3.Location = new Point(47, 207); label3.Name = "label3"; label3.Size = new Size(201, 32); label3.TabIndex = 2; label3.Text = "Длина маршрута"; // // buttonRouteSave // buttonRouteSave.Location = new Point(66, 337); buttonRouteSave.Name = "buttonRouteSave"; buttonRouteSave.Size = new Size(150, 46); buttonRouteSave.TabIndex = 3; buttonRouteSave.Text = "Сохранить"; buttonRouteSave.UseVisualStyleBackColor = true; buttonRouteSave.Click += ButtonRouteSave_Click; // // buttonCancel // buttonCancel.Location = new Point(367, 342); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(150, 46); buttonCancel.TabIndex = 4; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // textBoxStartPoint // textBoxStartPoint.Location = new Point(307, 60); textBoxStartPoint.Name = "textBoxStartPoint"; textBoxStartPoint.Size = new Size(200, 39); textBoxStartPoint.TabIndex = 5; // // textBoxEndPoint // textBoxEndPoint.Location = new Point(311, 130); textBoxEndPoint.Name = "textBoxEndPoint"; textBoxEndPoint.Size = new Size(200, 39); textBoxEndPoint.TabIndex = 6; // // numericUpDownLength // numericUpDownLength.DecimalPlaces = 2; numericUpDownLength.Location = new Point(308, 207); numericUpDownLength.Name = "numericUpDownLength"; numericUpDownLength.Size = new Size(240, 39); numericUpDownLength.TabIndex = 7; // // FormRoute // AutoScaleDimensions = new SizeF(13F, 32F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(numericUpDownLength); Controls.Add(textBoxEndPoint); Controls.Add(textBoxStartPoint); Controls.Add(buttonCancel); Controls.Add(buttonRouteSave); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Name = "FormRoute"; StartPosition = FormStartPosition.CenterParent; Text = "Маршрут"; ((System.ComponentModel.ISupportInitialize)numericUpDownLength).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private Button buttonRouteSave; private Button buttonCancel; private TextBox textBoxStartPoint; private TextBox textBoxEndPoint; private NumericUpDown numericUpDownLength; } }