136 lines
5.4 KiB
C#
136 lines
5.4 KiB
C#
namespace ProjectLainer
|
|
{
|
|
partial class LainerForm : Form
|
|
{
|
|
/// <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()
|
|
{
|
|
pictureBoxLainer = new PictureBox();
|
|
buttonCreate = new Button();
|
|
buttonRight = new Button();
|
|
buttonLeft = new Button();
|
|
buttonDown = new Button();
|
|
buttonUp = new Button();
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxLainer).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// pictureBoxLainer
|
|
//
|
|
pictureBoxLainer.Dock = DockStyle.Fill;
|
|
pictureBoxLainer.Location = new Point(0, 0);
|
|
pictureBoxLainer.Name = "pictureBoxLainer";
|
|
pictureBoxLainer.Size = new Size(729, 397);
|
|
pictureBoxLainer.SizeMode = PictureBoxSizeMode.AutoSize;
|
|
pictureBoxLainer.TabIndex = 0;
|
|
pictureBoxLainer.TabStop = false;
|
|
//
|
|
// buttonCreate
|
|
//
|
|
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
buttonCreate.Location = new Point(12, 356);
|
|
buttonCreate.Name = "buttonCreate";
|
|
buttonCreate.Size = new Size(94, 29);
|
|
buttonCreate.TabIndex = 1;
|
|
buttonCreate.Text = "создать";
|
|
buttonCreate.UseVisualStyleBackColor = true;
|
|
buttonCreate.Click += buttonCreate_Click;
|
|
//
|
|
// buttonRight
|
|
//
|
|
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonRight.BackgroundImage = Lainer1.Properties.Resources._3042406;
|
|
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonRight.Location = new Point(659, 315);
|
|
buttonRight.Name = "buttonRight";
|
|
buttonRight.Size = new Size(30, 30);
|
|
buttonRight.TabIndex = 2;
|
|
buttonRight.UseVisualStyleBackColor = true;
|
|
buttonRight.Click += buttonMove_Click;
|
|
//
|
|
// buttonLeft
|
|
//
|
|
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonLeft.BackgroundImage = Lainer1.Properties.Resources._2;
|
|
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonLeft.Location = new Point(587, 315);
|
|
buttonLeft.Name = "buttonLeft";
|
|
buttonLeft.Size = new Size(30, 30);
|
|
buttonLeft.TabIndex = 3;
|
|
buttonLeft.UseVisualStyleBackColor = true;
|
|
buttonLeft.Click += buttonMove_Click;
|
|
//
|
|
// buttonDown
|
|
//
|
|
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonDown.BackgroundImage = Lainer1.Properties.Resources._1;
|
|
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonDown.Location = new Point(623, 344);
|
|
buttonDown.Name = "buttonDown";
|
|
buttonDown.Size = new Size(30, 30);
|
|
buttonDown.TabIndex = 4;
|
|
buttonDown.UseVisualStyleBackColor = true;
|
|
buttonDown.Click += buttonMove_Click;
|
|
//
|
|
// buttonUp
|
|
//
|
|
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonUp.BackgroundImage = Lainer1.Properties.Resources._3;
|
|
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonUp.Location = new Point(623, 287);
|
|
buttonUp.Name = "buttonUp";
|
|
buttonUp.Size = new Size(30, 30);
|
|
buttonUp.TabIndex = 5;
|
|
buttonUp.UseVisualStyleBackColor = true;
|
|
buttonUp.Click += buttonMove_Click;
|
|
//
|
|
// LainerForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(729, 397);
|
|
Controls.Add(buttonUp);
|
|
Controls.Add(buttonDown);
|
|
Controls.Add(buttonLeft);
|
|
Controls.Add(buttonRight);
|
|
Controls.Add(buttonCreate);
|
|
Controls.Add(pictureBoxLainer);
|
|
Name = "LainerForm";
|
|
Text = "LainerField";
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxLainer).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBoxLainer;
|
|
private Button buttonCreate;
|
|
private Button buttonRight;
|
|
private Button buttonLeft;
|
|
private Button buttonDown;
|
|
private Button buttonUp;
|
|
}
|
|
} |