PIbd-23-Radaev-A.V.-20/Catamaran/FormCatamaran.Designer.cs

126 lines
4.4 KiB
C#
Raw Normal View History

2023-10-31 12:23:01 +04:00
namespace Catamaran
{
partial class FormCatamaran
{
private System.ComponentModel.IContainer components = null;
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()
{
pictureBox=new PictureBox();
buttonCreate=new Button();
buttonUp=new Button();
buttonRight=new Button();
buttonDown=new Button();
buttonLeft=new Button();
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
SuspendLayout();
//
// pictureBox
//
pictureBox.Dock=DockStyle.Fill;
pictureBox.Location=new Point(0, 0);
pictureBox.Name="pictureBox";
pictureBox.Size=new Size(800, 450);
pictureBox.TabIndex=5;
pictureBox.TabStop=false;
pictureBox.Click+=ButtonMove_Click;
//
// buttonCreate
//
buttonCreate.Anchor=AnchorStyles.Bottom|AnchorStyles.Left;
buttonCreate.Location=new Point(24, 383);
buttonCreate.Name="buttonCreate";
buttonCreate.Size=new Size(117, 44);
buttonCreate.TabIndex=6;
buttonCreate.Text="Создать";
buttonCreate.UseVisualStyleBackColor=true;
buttonCreate.Click+=buttonCreate_Click;
//
// buttonUp
//
buttonUp.Anchor=AnchorStyles.Bottom|AnchorStyles.Right;
buttonUp.Location=new Point(685, 358);
buttonUp.Name="buttonUp";
buttonUp.Size=new Size(30, 30);
buttonUp.TabIndex=10;
buttonUp.Text="⬆️";
buttonUp.UseVisualStyleBackColor=true;
buttonUp.Click+=ButtonMove_Click;
//
// buttonRight
//
buttonRight.Anchor=AnchorStyles.Bottom|AnchorStyles.Right;
buttonRight.Location=new Point(721, 394);
buttonRight.Name="buttonRight";
buttonRight.Size=new Size(30, 30);
buttonRight.TabIndex=9;
buttonRight.Text="➞";
buttonRight.UseVisualStyleBackColor=true;
buttonRight.Click+=ButtonMove_Click;
//
// buttonDown
//
buttonDown.Anchor=AnchorStyles.Bottom|AnchorStyles.Right;
buttonDown.Location=new Point(685, 394);
buttonDown.Name="buttonDown";
buttonDown.Size=new Size(30, 30);
buttonDown.TabIndex=8;
buttonDown.Text="⬇️";
buttonDown.UseVisualStyleBackColor=true;
buttonDown.Click+=ButtonMove_Click;
//
// buttonLeft
//
buttonLeft.Anchor=AnchorStyles.Bottom|AnchorStyles.Right;
buttonLeft.Location=new Point(649, 394);
buttonLeft.Name="buttonLeft";
buttonLeft.Size=new Size(30, 30);
buttonLeft.TabIndex=7;
buttonLeft.Text="⬅️";
buttonLeft.UseVisualStyleBackColor=true;
buttonLeft.Click+=ButtonMove_Click;
//
// FormCatamaran
//
AutoScaleDimensions=new SizeF(7F, 15F);
AutoScaleMode=AutoScaleMode.Font;
ClientSize=new Size(800, 450);
Controls.Add(buttonUp);
Controls.Add(buttonRight);
Controls.Add(buttonDown);
Controls.Add(buttonLeft);
Controls.Add(buttonCreate);
Controls.Add(pictureBox);
Name="FormCatamaran";
Text="FormCatamaran";
Load+=FormCatamaran_Load;
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
ResumeLayout(false);
}
#endregion
private Button button1;
private Button UpBut;
private PictureBox pictureBox;
private Button buttonCreate;
private Button buttonUp;
private Button buttonRight;
private Button buttonDown;
private Button buttonLeft;
}
}