namespace ProjectCruiser; partial class OceanForm1 { /// Required designer variable. private System.ComponentModel.IContainer components = null; /// Clean up any resources being used. /// true if managed resources should be disposed; otherwise, false. 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(); comboBoxStrategy = new ComboBox(); btnCreateAdvanced = new Button(); btnActivateStrategy = new Button(); ((System.ComponentModel.ISupportInitialize)pictureBoxCr).BeginInit(); SuspendLayout(); // // btnLeftArrow // btnLeftArrow.Location = new Point(926, 445); 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, 445); 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, 445); 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, 307); 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(433, 46); btnCreateBase.TabIndex = 4; btnCreateBase.Text = "Create base object"; btnCreateBase.UseVisualStyleBackColor = true; btnCreateBase.Click += btnCreateBase_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; // // 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; // // OceanForm1 // AutoScaleDimensions = new SizeF(13F, 32F); AutoScaleMode = AutoScaleMode.Font; BackColor = Color.Turquoise; ClientSize = new Size(1375, 778); Controls.Add(btnActivateStrategy); Controls.Add(btnCreateAdvanced); Controls.Add(comboBoxStrategy); 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; private ComboBox comboBoxStrategy; private Button btnCreateAdvanced; private Button btnActivateStrategy; }