PIbd-22_Kurbanova_A.A.Warml.../WarmlyLocomotive/WarmlylocomotiveForm.Designer.cs
2023-11-11 21:26:13 +04:00

190 lines
8.0 KiB
C#

namespace WarmlyLocomotive
{
partial class WarmlyLocomotiveForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WarmlyLocomotiveForm));
pictureBoxWarmlyLocomotive = new PictureBox();
buttonCreate = new Button();
buttonLeft = new Button();
buttonUp = new Button();
buttonDown = new Button();
buttonRight = new Button();
comboBoxWarmlyLocomotive = new ComboBox();
buttonStep = new Button();
buttonCreate_Pro = new Button();
buttonSelectCar = new Button();
((System.ComponentModel.ISupportInitialize)pictureBoxWarmlyLocomotive).BeginInit();
SuspendLayout();
//
// pictureBoxWarmlyLocomotive
//
pictureBoxWarmlyLocomotive.Dock = DockStyle.Fill;
pictureBoxWarmlyLocomotive.Location = new Point(0, 0);
pictureBoxWarmlyLocomotive.Name = "pictureBoxWarmlyLocomotive";
pictureBoxWarmlyLocomotive.Size = new Size(884, 481);
pictureBoxWarmlyLocomotive.SizeMode = PictureBoxSizeMode.AutoSize;
pictureBoxWarmlyLocomotive.TabIndex = 0;
pictureBoxWarmlyLocomotive.TabStop = false;
//
// buttonCreate
//
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreate.Location = new Point(216, 399);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(119, 23);
buttonCreate.TabIndex = 1;
buttonCreate.Text = "Создать тепловоз";
buttonCreate.UseVisualStyleBackColor = true;
buttonCreate.Click += buttonCreate_Click;
//
// buttonLeft
//
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonLeft.BackgroundImage = (Image)resources.GetObject("buttonLeft.BackgroundImage");
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
buttonLeft.Location = new Point(751, 420);
buttonLeft.Name = "buttonLeft";
buttonLeft.Size = new Size(30, 30);
buttonLeft.TabIndex = 2;
buttonLeft.UseVisualStyleBackColor = true;
buttonLeft.Click += buttonMove_Click;
//
// buttonUp
//
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonUp.BackgroundImage = (Image)resources.GetObject("buttonUp.BackgroundImage");
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
buttonUp.Location = new Point(777, 392);
buttonUp.Name = "buttonUp";
buttonUp.Size = new Size(30, 30);
buttonUp.TabIndex = 3;
buttonUp.UseVisualStyleBackColor = true;
buttonUp.Click += buttonMove_Click;
//
// buttonDown
//
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonDown.BackgroundImage = (Image)resources.GetObject("buttonDown.BackgroundImage");
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
buttonDown.Location = new Point(777, 420);
buttonDown.Name = "buttonDown";
buttonDown.Size = new Size(30, 30);
buttonDown.TabIndex = 4;
buttonDown.UseVisualStyleBackColor = true;
buttonDown.Click += buttonMove_Click;
//
// buttonRight
//
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonRight.BackgroundImage = (Image)resources.GetObject("buttonRight.BackgroundImage");
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
buttonRight.Location = new Point(808, 420);
buttonRight.Name = "buttonRight";
buttonRight.Size = new Size(30, 30);
buttonRight.TabIndex = 5;
buttonRight.UseVisualStyleBackColor = true;
buttonRight.Click += buttonMove_Click;
//
// comboBoxWarmlyLocomotive
//
comboBoxWarmlyLocomotive.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxWarmlyLocomotive.FormattingEnabled = true;
comboBoxWarmlyLocomotive.Items.AddRange(new object[] { "Центр", "Угол" });
comboBoxWarmlyLocomotive.Location = new Point(717, 21);
comboBoxWarmlyLocomotive.Name = "comboBoxWarmlyLocomotive";
comboBoxWarmlyLocomotive.Size = new Size(121, 23);
comboBoxWarmlyLocomotive.TabIndex = 7;
//
// buttonStep
//
buttonStep.Location = new Point(732, 60);
buttonStep.Name = "buttonStep";
buttonStep.Size = new Size(75, 23);
buttonStep.TabIndex = 9;
buttonStep.Text = "Шаг";
buttonStep.UseVisualStyleBackColor = true;
buttonStep.Click += buttonStep_Click;
//
// buttonCreate_Pro
//
buttonCreate_Pro.Location = new Point(54, 395);
buttonCreate_Pro.Name = "buttonCreate_Pro";
buttonCreate_Pro.Size = new Size(136, 41);
buttonCreate_Pro.TabIndex = 10;
buttonCreate_Pro.Text = "Создать продвинутый тепловоз";
buttonCreate_Pro.UseVisualStyleBackColor = true;
buttonCreate_Pro.Click += buttonCreate_Pro_Click;
//
// buttonSelectCar
//
buttonSelectCar.Location = new Point(705, 99);
buttonSelectCar.Name = "buttonSelectCar";
buttonSelectCar.Size = new Size(133, 23);
buttonSelectCar.TabIndex = 11;
buttonSelectCar.Text = "Выбор тепловоза";
buttonSelectCar.UseVisualStyleBackColor = true;
buttonSelectCar.Click += buttonSelectWarmlyLocomotive_Click;
//
// WarmlyLocomotiveForm
//
ClientSize = new Size(884, 481);
Controls.Add(buttonSelectCar);
Controls.Add(buttonCreate_Pro);
Controls.Add(buttonStep);
Controls.Add(comboBoxWarmlyLocomotive);
Controls.Add(buttonRight);
Controls.Add(buttonDown);
Controls.Add(buttonUp);
Controls.Add(buttonLeft);
Controls.Add(buttonCreate);
Controls.Add(pictureBoxWarmlyLocomotive);
Name = "WarmlyLocomotiveForm";
StartPosition = FormStartPosition.CenterScreen;
Text = "WarmlyLocomotiveForm";
((System.ComponentModel.ISupportInitialize)pictureBoxWarmlyLocomotive).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox pictureBoxWarmlyLocomotive;
private Button buttonCreate;
private Button buttonLeft;
private Button buttonUp;
private Button buttonDown;
private Button buttonRight;
private ComboBox comboBoxWarmlyLocomotive;
private Button buttonStep;
private Button buttonCreate_Pro;
private Button buttonSelectCar;
}
}