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

152 lines
5.4 KiB
C#
Raw Permalink 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();
2024-06-12 19:21:59 +04:00
comboBoxStrategy = new ComboBox();
btnCreateAdvanced = new Button();
btnActivateStrategy = new Button();
2024-06-12 14:29:35 +04:00
((System.ComponentModel.ISupportInitialize)pictureBoxCr).BeginInit();
SuspendLayout();
//
// btnLeftArrow
//
2024-06-12 19:21:59 +04:00
btnLeftArrow.Location = new Point(926, 445);
2024-06-12 14:29:35 +04:00
btnLeftArrow.Name = "btnLeftArrow";
btnLeftArrow.Size = new Size(141, 132);
btnLeftArrow.TabIndex = 0;
btnLeftArrow.UseVisualStyleBackColor = true;
btnLeftArrow.Click += BtnMove_Click;
//
// btnDownArrow
//
2024-06-12 19:21:59 +04:00
btnDownArrow.Location = new Point(1073, 445);
2024-06-12 14:29:35 +04:00
btnDownArrow.Name = "btnDownArrow";
btnDownArrow.Size = new Size(141, 132);
btnDownArrow.TabIndex = 1;
btnDownArrow.UseVisualStyleBackColor = true;
btnDownArrow.Click += BtnMove_Click;
//
// btnRightArrow
//
2024-06-12 19:21:59 +04:00
btnRightArrow.Location = new Point(1220, 445);
2024-06-12 14:29:35 +04:00
btnRightArrow.Name = "btnRightArrow";
btnRightArrow.Size = new Size(141, 132);
btnRightArrow.TabIndex = 2;
btnRightArrow.UseVisualStyleBackColor = true;
btnRightArrow.Click += BtnMove_Click;
//
// btnUpArrow
//
2024-06-12 19:21:59 +04:00
btnUpArrow.Location = new Point(1073, 307);
2024-06-12 14:29:35 +04:00
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";
2024-06-12 19:21:59 +04:00
btnCreateBase.Size = new Size(433, 46);
2024-06-12 14:29:35 +04:00
btnCreateBase.TabIndex = 4;
2024-06-12 19:21:59 +04:00
btnCreateBase.Text = "Create base object";
2024-06-12 14:29:35 +04:00
btnCreateBase.UseVisualStyleBackColor = true;
2024-06-12 19:21:59 +04:00
btnCreateBase.Click += btnCreateBase_Click;
2024-06-12 14:29:35 +04:00
//
// 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;
//
2024-06-12 19:21:59 +04:00
// comboBoxStrategy
//
comboBoxStrategy.FormattingEnabled = true;
comboBoxStrategy.Items.AddRange(new object[] { "centre", "border" });
comboBoxStrategy.Location = new Point(928, 120);
comboBoxStrategy.Name = "comboBoxStrategy";
comboBoxStrategy.Size = new Size(435, 40);
comboBoxStrategy.TabIndex = 6;
//
// btnCreateAdvanced
//
btnCreateAdvanced.Location = new Point(928, 58);
btnCreateAdvanced.Name = "btnCreateAdvanced";
btnCreateAdvanced.Size = new Size(433, 46);
btnCreateAdvanced.TabIndex = 7;
btnCreateAdvanced.Text = "Create advanced object";
btnCreateAdvanced.UseVisualStyleBackColor = true;
btnCreateAdvanced.Click += btnCreateAdvanced_Click;
//
// btnActivateStrategy
//
btnActivateStrategy.Location = new Point(928, 166);
btnActivateStrategy.Name = "btnActivateStrategy";
btnActivateStrategy.Size = new Size(435, 46);
btnActivateStrategy.TabIndex = 8;
btnActivateStrategy.Text = "Activate path";
btnActivateStrategy.UseVisualStyleBackColor = true;
btnActivateStrategy.Click += ButtonStrategyStep_Click;
//
2024-06-12 14:29:35 +04:00
// OceanForm1
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.Turquoise;
ClientSize = new Size(1375, 778);
2024-06-12 19:21:59 +04:00
Controls.Add(btnActivateStrategy);
Controls.Add(btnCreateAdvanced);
Controls.Add(comboBoxStrategy);
2024-06-12 14:29:35 +04:00
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;
2024-06-12 19:21:59 +04:00
private ComboBox comboBoxStrategy;
private Button btnCreateAdvanced;
private Button btnActivateStrategy;
2024-06-12 14:29:35 +04:00
}