135 lines
5.6 KiB
C#
135 lines
5.6 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();
|
|
buttonCreateMonorail = 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;
|
|
//
|
|
// buttonCreateMonorail
|
|
//
|
|
buttonCreateMonorail.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
buttonCreateMonorail.Location = new Point(12, 439);
|
|
buttonCreateMonorail.Name = "buttonCreateMonorail";
|
|
buttonCreateMonorail.Size = new Size(75, 23);
|
|
buttonCreateMonorail.TabIndex = 5;
|
|
buttonCreateMonorail.Text = "Создать";
|
|
buttonCreateMonorail.UseVisualStyleBackColor = true;
|
|
buttonCreateMonorail.Click += ButtonCreateMonorail_Click;
|
|
//
|
|
// FormMonorail
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(813, 474);
|
|
Controls.Add(buttonCreateMonorail);
|
|
Controls.Add(buttonMove_Up);
|
|
Controls.Add(buttonMove_Left);
|
|
Controls.Add(buttonMove_Down);
|
|
Controls.Add(buttonMove_Right);
|
|
Controls.Add(pictureBoxMonorail);
|
|
Name = "FormMonorail";
|
|
Text = "P";
|
|
((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 Button buttonCreateMonorail;
|
|
}
|
|
} |