PIbd-14_Pruidze_I.K_Simple_.../ProjectCruiser/OceanForm1.Designer.cs

114 lines
3.8 KiB
C#
Raw Normal View History

2024-06-12 14:29:35 +04:00
namespace ProjectCruiser;
partial class OceanForm1
{
/// Required designer variable.
private System.ComponentModel.IContainer components = null;
/// Clean up any resources being used.
/// <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
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
private void InitializeComponent()
{
btnLeftArrow = new Button();
btnDownArrow = new Button();
btnRightArrow = new Button();
btnUpArrow = new Button();
btnCreateBase = new Button();
pictureBoxCr = new PictureBox();
((System.ComponentModel.ISupportInitialize)pictureBoxCr).BeginInit();
SuspendLayout();
//
// btnLeftArrow
//
btnLeftArrow.Location = new Point(926, 634);
btnLeftArrow.Name = "btnLeftArrow";
btnLeftArrow.Size = new Size(141, 132);
btnLeftArrow.TabIndex = 0;
btnLeftArrow.UseVisualStyleBackColor = true;
btnLeftArrow.Click += BtnMove_Click;
//
// btnDownArrow
//
btnDownArrow.Location = new Point(1073, 634);
btnDownArrow.Name = "btnDownArrow";
btnDownArrow.Size = new Size(141, 132);
btnDownArrow.TabIndex = 1;
btnDownArrow.UseVisualStyleBackColor = true;
btnDownArrow.Click += BtnMove_Click;
//
// btnRightArrow
//
btnRightArrow.Location = new Point(1220, 634);
btnRightArrow.Name = "btnRightArrow";
btnRightArrow.Size = new Size(141, 132);
btnRightArrow.TabIndex = 2;
btnRightArrow.UseVisualStyleBackColor = true;
btnRightArrow.Click += BtnMove_Click;
//
// btnUpArrow
//
btnUpArrow.Location = new Point(1073, 496);
btnUpArrow.Name = "btnUpArrow";
btnUpArrow.Size = new Size(141, 132);
btnUpArrow.TabIndex = 3;
btnUpArrow.UseVisualStyleBackColor = true;
btnUpArrow.Click += BtnMove_Click;
//
// btnCreateBase
//
btnCreateBase.Location = new Point(928, 12);
btnCreateBase.Name = "btnCreateBase";
btnCreateBase.Size = new Size(435, 46);
btnCreateBase.TabIndex = 4;
btnCreateBase.Text = "Create";
btnCreateBase.UseVisualStyleBackColor = true;
btnCreateBase.Click += ButtonCreateBase_Click;
//
// pictureBoxCr
//
pictureBoxCr.Dock = DockStyle.Fill;
pictureBoxCr.Location = new Point(0, 0);
pictureBoxCr.Name = "pictureBoxCr";
pictureBoxCr.Size = new Size(1375, 778);
pictureBoxCr.TabIndex = 5;
pictureBoxCr.TabStop = false;
//
// OceanForm1
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.Turquoise;
ClientSize = new Size(1375, 778);
Controls.Add(btnCreateBase);
Controls.Add(btnUpArrow);
Controls.Add(btnRightArrow);
Controls.Add(btnDownArrow);
Controls.Add(btnLeftArrow);
Controls.Add(pictureBoxCr);
Name = "OceanForm1";
Text = "OceanForm1";
((System.ComponentModel.ISupportInitialize)pictureBoxCr).EndInit();
ResumeLayout(false);
}
#endregion
private Button btnLeftArrow;
private Button btnDownArrow;
private Button btnRightArrow;
private Button btnUpArrow;
private Button btnCreateBase;
private PictureBox pictureBoxCr;
}