179 lines
9.6 KiB
C#
179 lines
9.6 KiB
C#
namespace AirBomber
|
||
{
|
||
partial class FormAirBomber
|
||
{
|
||
/// <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()
|
||
{
|
||
this.buttonCreateAirPlane = new System.Windows.Forms.Button();
|
||
this.ButtonRight = new System.Windows.Forms.Button();
|
||
this.ButtonUp = new System.Windows.Forms.Button();
|
||
this.ButtonLeft = new System.Windows.Forms.Button();
|
||
this.ButtonDown = new System.Windows.Forms.Button();
|
||
this.pictureBoxAirBomber = new System.Windows.Forms.PictureBox();
|
||
this.buttonCreateAirBomber = new System.Windows.Forms.Button();
|
||
this.comboBoxStrategy = new System.Windows.Forms.ComboBox();
|
||
this.buttonStrategyStep = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirBomber)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// buttonCreateAirPlane
|
||
//
|
||
this.buttonCreateAirPlane.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||
this.buttonCreateAirPlane.Location = new System.Drawing.Point(12, 575);
|
||
this.buttonCreateAirPlane.Name = "buttonCreateAirPlane";
|
||
this.buttonCreateAirPlane.Size = new System.Drawing.Size(233, 33);
|
||
this.buttonCreateAirPlane.TabIndex = 0;
|
||
this.buttonCreateAirPlane.Text = "Создать Военный самолет";
|
||
this.buttonCreateAirPlane.UseVisualStyleBackColor = true;
|
||
this.buttonCreateAirPlane.Click += new System.EventHandler(this.ButtonCreateAirPlane_Click);
|
||
//
|
||
// ButtonRight
|
||
//
|
||
this.ButtonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.ButtonRight.BackgroundImage = global::AirBomber.Properties.Resources.arrowRight;
|
||
this.ButtonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.ButtonRight.Location = new System.Drawing.Point(905, 560);
|
||
this.ButtonRight.Name = "ButtonRight";
|
||
this.ButtonRight.Size = new System.Drawing.Size(50, 48);
|
||
this.ButtonRight.TabIndex = 1;
|
||
this.ButtonRight.UseVisualStyleBackColor = true;
|
||
this.ButtonRight.Click += new System.EventHandler(this.ButtonMove_Click);
|
||
//
|
||
// ButtonUp
|
||
//
|
||
this.ButtonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.ButtonUp.BackgroundImage = global::AirBomber.Properties.Resources.arrowUp;
|
||
this.ButtonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.ButtonUp.Location = new System.Drawing.Point(849, 506);
|
||
this.ButtonUp.Name = "ButtonUp";
|
||
this.ButtonUp.Size = new System.Drawing.Size(50, 48);
|
||
this.ButtonUp.TabIndex = 2;
|
||
this.ButtonUp.UseVisualStyleBackColor = true;
|
||
this.ButtonUp.Click += new System.EventHandler(this.ButtonMove_Click);
|
||
//
|
||
// ButtonLeft
|
||
//
|
||
this.ButtonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.ButtonLeft.BackgroundImage = global::AirBomber.Properties.Resources.arrowLeft;
|
||
this.ButtonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.ButtonLeft.Location = new System.Drawing.Point(793, 560);
|
||
this.ButtonLeft.Name = "ButtonLeft";
|
||
this.ButtonLeft.Size = new System.Drawing.Size(50, 48);
|
||
this.ButtonLeft.TabIndex = 3;
|
||
this.ButtonLeft.UseVisualStyleBackColor = true;
|
||
this.ButtonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
|
||
//
|
||
// ButtonDown
|
||
//
|
||
this.ButtonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.ButtonDown.BackgroundImage = global::AirBomber.Properties.Resources.arrowDown;
|
||
this.ButtonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.ButtonDown.Location = new System.Drawing.Point(849, 560);
|
||
this.ButtonDown.Name = "ButtonDown";
|
||
this.ButtonDown.Size = new System.Drawing.Size(50, 48);
|
||
this.ButtonDown.TabIndex = 4;
|
||
this.ButtonDown.UseVisualStyleBackColor = true;
|
||
this.ButtonDown.Click += new System.EventHandler(this.ButtonMove_Click);
|
||
//
|
||
// pictureBoxAirBomber
|
||
//
|
||
this.pictureBoxAirBomber.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.pictureBoxAirBomber.Location = new System.Drawing.Point(0, 0);
|
||
this.pictureBoxAirBomber.Name = "pictureBoxAirBomber";
|
||
this.pictureBoxAirBomber.Size = new System.Drawing.Size(967, 621);
|
||
this.pictureBoxAirBomber.TabIndex = 5;
|
||
this.pictureBoxAirBomber.TabStop = false;
|
||
//
|
||
// buttonCreateAirBomber
|
||
//
|
||
this.buttonCreateAirBomber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||
this.buttonCreateAirBomber.Location = new System.Drawing.Point(283, 576);
|
||
this.buttonCreateAirBomber.Name = "buttonCreateAirBomber";
|
||
this.buttonCreateAirBomber.Size = new System.Drawing.Size(220, 33);
|
||
this.buttonCreateAirBomber.TabIndex = 6;
|
||
this.buttonCreateAirBomber.Text = "Создать Бомбардировщик";
|
||
this.buttonCreateAirBomber.UseVisualStyleBackColor = true;
|
||
this.buttonCreateAirBomber.Click += new System.EventHandler(this.ButtonCreateAirBomber_Click);
|
||
//
|
||
// comboBoxStrategy
|
||
//
|
||
this.comboBoxStrategy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.comboBoxStrategy.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||
this.comboBoxStrategy.FormattingEnabled = true;
|
||
this.comboBoxStrategy.Items.AddRange(new object[] {
|
||
"К центру ",
|
||
"К краю"});
|
||
this.comboBoxStrategy.Location = new System.Drawing.Point(804, 12);
|
||
this.comboBoxStrategy.Name = "comboBoxStrategy";
|
||
this.comboBoxStrategy.Size = new System.Drawing.Size(151, 28);
|
||
this.comboBoxStrategy.TabIndex = 7;
|
||
//
|
||
// buttonStrategyStep
|
||
//
|
||
this.buttonStrategyStep.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonStrategyStep.Location = new System.Drawing.Point(804, 74);
|
||
this.buttonStrategyStep.Name = "buttonStrategyStep";
|
||
this.buttonStrategyStep.Size = new System.Drawing.Size(94, 29);
|
||
this.buttonStrategyStep.TabIndex = 8;
|
||
this.buttonStrategyStep.Text = "Шаг";
|
||
this.buttonStrategyStep.UseVisualStyleBackColor = true;
|
||
this.buttonStrategyStep.Click += new System.EventHandler(this.buttonStrategyStep_Click);
|
||
//
|
||
// FormAirBomber
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(967, 621);
|
||
this.Controls.Add(this.buttonStrategyStep);
|
||
this.Controls.Add(this.comboBoxStrategy);
|
||
this.Controls.Add(this.buttonCreateAirBomber);
|
||
this.Controls.Add(this.ButtonDown);
|
||
this.Controls.Add(this.ButtonLeft);
|
||
this.Controls.Add(this.ButtonUp);
|
||
this.Controls.Add(this.ButtonRight);
|
||
this.Controls.Add(this.buttonCreateAirPlane);
|
||
this.Controls.Add(this.pictureBoxAirBomber);
|
||
this.Name = "FormAirBomber";
|
||
this.Text = "AirBomber";
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirBomber)).EndInit();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button buttonCreateAirPlane;
|
||
private Button ButtonRight;
|
||
private Button ButtonUp;
|
||
private Button ButtonLeft;
|
||
private Button ButtonDown;
|
||
private PictureBox pictureBoxAirBomber;
|
||
private Button buttonCreateAirBomber;
|
||
private ComboBox comboBoxStrategy;
|
||
private Button buttonStrategyStep;
|
||
}
|
||
} |