2024-02-12 00:08:06 +04:00
|
|
|
|
namespace ProjectMonorail
|
|
|
|
|
{
|
|
|
|
|
partial class FormMonorail
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
buttonMove_Right = new Button();
|
|
|
|
|
buttonMove_Down = new Button();
|
|
|
|
|
buttonMove_Left = new Button();
|
|
|
|
|
buttonMove_Up = new Button();
|
|
|
|
|
pictureBoxMonorail = new PictureBox();
|
2024-03-10 13:50:57 +04:00
|
|
|
|
comboBoxStrategy = new ComboBox();
|
|
|
|
|
buttonStrategyStep = new Button();
|
2024-02-12 00:08:06 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxMonorail).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// buttonMove_Right
|
|
|
|
|
//
|
|
|
|
|
buttonMove_Right.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
|
|
|
buttonMove_Right.BackgroundImage = Properties.Resources.ArrowRight;
|
|
|
|
|
buttonMove_Right.BackgroundImageLayout = ImageLayout.Stretch;
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Right.Location = new Point(766, 427);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Right.Name = "buttonMove_Right";
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Right.Size = new Size(35, 35);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Right.TabIndex = 0;
|
|
|
|
|
buttonMove_Right.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonMove_Right.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonMove_Down
|
|
|
|
|
//
|
|
|
|
|
buttonMove_Down.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
|
|
|
buttonMove_Down.BackgroundImage = Properties.Resources.ArrowDown;
|
|
|
|
|
buttonMove_Down.BackgroundImageLayout = ImageLayout.Stretch;
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Down.Location = new Point(725, 427);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Down.Name = "buttonMove_Down";
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Down.Size = new Size(35, 35);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Down.TabIndex = 1;
|
|
|
|
|
buttonMove_Down.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonMove_Down.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonMove_Left
|
|
|
|
|
//
|
|
|
|
|
buttonMove_Left.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
|
|
|
buttonMove_Left.BackgroundImage = Properties.Resources.ArrowLeft;
|
|
|
|
|
buttonMove_Left.BackgroundImageLayout = ImageLayout.Stretch;
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Left.Location = new Point(684, 427);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Left.Name = "buttonMove_Left";
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Left.Size = new Size(35, 35);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Left.TabIndex = 2;
|
|
|
|
|
buttonMove_Left.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonMove_Left.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonMove_Up
|
|
|
|
|
//
|
|
|
|
|
buttonMove_Up.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
|
|
|
buttonMove_Up.BackgroundImage = Properties.Resources.ArrowUp;
|
|
|
|
|
buttonMove_Up.BackgroundImageLayout = ImageLayout.Stretch;
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Up.Location = new Point(725, 386);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Up.Name = "buttonMove_Up";
|
2024-03-09 20:03:38 +04:00
|
|
|
|
buttonMove_Up.Size = new Size(35, 35);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
buttonMove_Up.TabIndex = 3;
|
|
|
|
|
buttonMove_Up.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonMove_Up.Click += ButtonMove_Click;
|
|
|
|
|
//
|
|
|
|
|
// pictureBoxMonorail
|
|
|
|
|
//
|
|
|
|
|
pictureBoxMonorail.Dock = DockStyle.Fill;
|
|
|
|
|
pictureBoxMonorail.ImageLocation = "";
|
|
|
|
|
pictureBoxMonorail.Location = new Point(0, 0);
|
|
|
|
|
pictureBoxMonorail.Name = "pictureBoxMonorail";
|
2024-03-09 20:03:38 +04:00
|
|
|
|
pictureBoxMonorail.Size = new Size(813, 474);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
pictureBoxMonorail.TabIndex = 4;
|
|
|
|
|
pictureBoxMonorail.TabStop = false;
|
|
|
|
|
//
|
2024-03-10 13:50:57 +04:00
|
|
|
|
// comboBoxStrategy
|
|
|
|
|
//
|
|
|
|
|
comboBoxStrategy.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
|
|
|
comboBoxStrategy.FormattingEnabled = true;
|
|
|
|
|
comboBoxStrategy.Items.AddRange(new object[] { "К центру", "К краю" });
|
|
|
|
|
comboBoxStrategy.Location = new Point(680, 12);
|
|
|
|
|
comboBoxStrategy.Name = "comboBoxStrategy";
|
|
|
|
|
comboBoxStrategy.Size = new Size(121, 23);
|
|
|
|
|
comboBoxStrategy.TabIndex = 7;
|
|
|
|
|
//
|
|
|
|
|
// buttonStrategyStep
|
|
|
|
|
//
|
|
|
|
|
buttonStrategyStep.Location = new Point(704, 41);
|
|
|
|
|
buttonStrategyStep.Name = "buttonStrategyStep";
|
|
|
|
|
buttonStrategyStep.Size = new Size(75, 23);
|
|
|
|
|
buttonStrategyStep.TabIndex = 8;
|
|
|
|
|
buttonStrategyStep.Text = "Шаг";
|
|
|
|
|
buttonStrategyStep.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonStrategyStep.Click += buttonStrategyStep_Click;
|
|
|
|
|
//
|
2024-02-12 00:08:06 +04:00
|
|
|
|
// FormMonorail
|
|
|
|
|
//
|
2024-03-09 20:03:38 +04:00
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-03-09 20:03:38 +04:00
|
|
|
|
ClientSize = new Size(813, 474);
|
2024-03-10 13:50:57 +04:00
|
|
|
|
Controls.Add(buttonStrategyStep);
|
|
|
|
|
Controls.Add(comboBoxStrategy);
|
2024-02-12 00:08:06 +04:00
|
|
|
|
Controls.Add(buttonMove_Up);
|
|
|
|
|
Controls.Add(buttonMove_Left);
|
|
|
|
|
Controls.Add(buttonMove_Down);
|
|
|
|
|
Controls.Add(buttonMove_Right);
|
|
|
|
|
Controls.Add(pictureBoxMonorail);
|
|
|
|
|
Name = "FormMonorail";
|
2024-02-12 14:48:13 +04:00
|
|
|
|
Text = "Монорельс";
|
2024-02-12 00:08:06 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxMonorail).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Button buttonMove_Right;
|
|
|
|
|
private Button buttonMove_Down;
|
|
|
|
|
private Button buttonMove_Left;
|
|
|
|
|
private Button buttonMove_Up;
|
|
|
|
|
private PictureBox pictureBoxMonorail;
|
2024-03-10 13:50:57 +04:00
|
|
|
|
private ComboBox comboBoxStrategy;
|
|
|
|
|
private Button buttonStrategyStep;
|
2024-02-12 00:08:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|