147 lines
6.1 KiB
C#
147 lines
6.1 KiB
C#
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();
|
||
comboBoxStrategy = new ComboBox();
|
||
buttonStrategyStep = new Button();
|
||
((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;
|
||
buttonMove_Right.Location = new Point(766, 427);
|
||
buttonMove_Right.Name = "buttonMove_Right";
|
||
buttonMove_Right.Size = new Size(35, 35);
|
||
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;
|
||
buttonMove_Down.Location = new Point(725, 427);
|
||
buttonMove_Down.Name = "buttonMove_Down";
|
||
buttonMove_Down.Size = new Size(35, 35);
|
||
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;
|
||
buttonMove_Left.Location = new Point(684, 427);
|
||
buttonMove_Left.Name = "buttonMove_Left";
|
||
buttonMove_Left.Size = new Size(35, 35);
|
||
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;
|
||
buttonMove_Up.Location = new Point(725, 386);
|
||
buttonMove_Up.Name = "buttonMove_Up";
|
||
buttonMove_Up.Size = new Size(35, 35);
|
||
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";
|
||
pictureBoxMonorail.Size = new Size(813, 474);
|
||
pictureBoxMonorail.TabIndex = 4;
|
||
pictureBoxMonorail.TabStop = false;
|
||
//
|
||
// 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;
|
||
//
|
||
// FormMonorail
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(813, 474);
|
||
Controls.Add(buttonStrategyStep);
|
||
Controls.Add(comboBoxStrategy);
|
||
Controls.Add(buttonMove_Up);
|
||
Controls.Add(buttonMove_Left);
|
||
Controls.Add(buttonMove_Down);
|
||
Controls.Add(buttonMove_Right);
|
||
Controls.Add(pictureBoxMonorail);
|
||
Name = "FormMonorail";
|
||
Text = "Монорельс";
|
||
((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;
|
||
private ComboBox comboBoxStrategy;
|
||
private Button buttonStrategyStep;
|
||
}
|
||
} |