119 lines
3.8 KiB
C#
119 lines
3.8 KiB
C#
namespace TransportGuide
|
|
{
|
|
partial class FormStopRoute
|
|
{
|
|
/// <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()
|
|
{
|
|
this.comboBoxStop = new System.Windows.Forms.ComboBox();
|
|
this.textBoxNomer = new System.Windows.Forms.TextBox();
|
|
this.labelStop = new System.Windows.Forms.Label();
|
|
this.labelNomer = new System.Windows.Forms.Label();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// comboBoxStop
|
|
//
|
|
this.comboBoxStop.FormattingEnabled = true;
|
|
this.comboBoxStop.Location = new System.Drawing.Point(148, 10);
|
|
this.comboBoxStop.Name = "comboBoxStop";
|
|
this.comboBoxStop.Size = new System.Drawing.Size(182, 33);
|
|
this.comboBoxStop.TabIndex = 0;
|
|
//
|
|
// textBoxNomer
|
|
//
|
|
this.textBoxNomer.Location = new System.Drawing.Point(150, 53);
|
|
this.textBoxNomer.Name = "textBoxNomer";
|
|
this.textBoxNomer.Size = new System.Drawing.Size(150, 31);
|
|
this.textBoxNomer.TabIndex = 1;
|
|
//
|
|
// labelStop
|
|
//
|
|
this.labelStop.AutoSize = true;
|
|
this.labelStop.Location = new System.Drawing.Point(16, 18);
|
|
this.labelStop.Name = "labelStop";
|
|
this.labelStop.Size = new System.Drawing.Size(103, 25);
|
|
this.labelStop.TabIndex = 2;
|
|
this.labelStop.Text = "Stop";
|
|
//
|
|
// labelNomer
|
|
//
|
|
this.labelNomer.AutoSize = true;
|
|
this.labelNomer.Location = new System.Drawing.Point(16, 57);
|
|
this.labelNomer.Name = "labelNomer";
|
|
this.labelNomer.Size = new System.Drawing.Size(112, 25);
|
|
this.labelNomer.TabIndex = 3;
|
|
this.labelNomer.Text = "Nomer ";
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(75, 99);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(112, 34);
|
|
this.buttonSave.TabIndex = 4;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(206, 99);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(112, 34);
|
|
this.buttonCancel.TabIndex = 5;
|
|
this.buttonCancel.Text = "Отменить";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// FormJewelStop
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(426, 142);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.labelNomer);
|
|
this.Controls.Add(this.labelStop);
|
|
this.Controls.Add(this.textBoxNomer);
|
|
this.Controls.Add(this.comboBoxStop);
|
|
this.Name = "FormStopRoute";
|
|
this.Text = "Stop Route";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxStop;
|
|
private TextBox textBoxNomer;
|
|
private Label labelStop;
|
|
private Label labelNomer;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |