137 lines
5.3 KiB
C#
137 lines
5.3 KiB
C#
namespace ProjectCatamaran
|
|
{
|
|
partial class FormCatamaran
|
|
{
|
|
/// <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()
|
|
{
|
|
pictureBoxCatamaran = new PictureBox();
|
|
buttonCreate = new Button();
|
|
buttonRight = new Button();
|
|
buttonDown = new Button();
|
|
buttonLeft = new Button();
|
|
buttonUp = new Button();
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCatamaran).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// pictureBoxCatamaran
|
|
//
|
|
pictureBoxCatamaran.Dock = DockStyle.Fill;
|
|
pictureBoxCatamaran.Location = new Point(0, 0);
|
|
pictureBoxCatamaran.Name = "pictureBoxCatamaran";
|
|
pictureBoxCatamaran.Size = new Size(884, 480);
|
|
pictureBoxCatamaran.SizeMode = PictureBoxSizeMode.AutoSize;
|
|
pictureBoxCatamaran.TabIndex = 0;
|
|
pictureBoxCatamaran.TabStop = false;
|
|
//
|
|
// buttonCreate
|
|
//
|
|
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
buttonCreate.Location = new Point(0, 438);
|
|
buttonCreate.Name = "buttonCreate";
|
|
buttonCreate.Size = new Size(75, 23);
|
|
buttonCreate.TabIndex = 1;
|
|
buttonCreate.Text = "Создать";
|
|
buttonCreate.UseVisualStyleBackColor = true;
|
|
buttonCreate.Click += buttonCreate_Click;
|
|
//
|
|
// buttonRight
|
|
//
|
|
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonRight.BackgroundImage = Properties.Resources.arrowRight2;
|
|
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonRight.Location = new Point(854, 431);
|
|
buttonRight.Name = "buttonRight";
|
|
buttonRight.Size = new Size(30, 30);
|
|
buttonRight.TabIndex = 2;
|
|
buttonRight.UseVisualStyleBackColor = true;
|
|
buttonRight.Click += buttonMove_Click;
|
|
//
|
|
// buttonDown
|
|
//
|
|
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonDown.BackgroundImage = Properties.Resources.arrowDown2;
|
|
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonDown.Location = new Point(818, 431);
|
|
buttonDown.Name = "buttonDown";
|
|
buttonDown.Size = new Size(30, 30);
|
|
buttonDown.TabIndex = 3;
|
|
buttonDown.UseVisualStyleBackColor = true;
|
|
buttonDown.Click += buttonMove_Click;
|
|
//
|
|
// buttonLeft
|
|
//
|
|
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonLeft.BackgroundImage = Properties.Resources.arrowLeft;
|
|
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonLeft.Location = new Point(782, 431);
|
|
buttonLeft.Name = "buttonLeft";
|
|
buttonLeft.Size = new Size(30, 30);
|
|
buttonLeft.TabIndex = 4;
|
|
buttonLeft.UseVisualStyleBackColor = true;
|
|
buttonLeft.Click += buttonMove_Click;
|
|
//
|
|
// buttonUp
|
|
//
|
|
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonUp.BackgroundImage = Properties.Resources.arrowUp2;
|
|
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonUp.Location = new Point(818, 395);
|
|
buttonUp.Name = "buttonUp";
|
|
buttonUp.Size = new Size(30, 30);
|
|
buttonUp.TabIndex = 5;
|
|
buttonUp.UseVisualStyleBackColor = true;
|
|
buttonUp.Click += buttonMove_Click;
|
|
//
|
|
// Catamaran
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(884, 461);
|
|
Controls.Add(buttonUp);
|
|
Controls.Add(buttonLeft);
|
|
Controls.Add(buttonDown);
|
|
Controls.Add(buttonRight);
|
|
Controls.Add(buttonCreate);
|
|
Controls.Add(pictureBoxCatamaran);
|
|
Name = "Catamaran";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Катамаран";
|
|
((System.ComponentModel.ISupportInitialize)pictureBoxCatamaran).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBoxCatamaran;
|
|
private Button buttonCreate;
|
|
private Button buttonRight;
|
|
private Button buttonDown;
|
|
private Button buttonLeft;
|
|
private Button buttonUp;
|
|
}
|
|
} |