namespace AirFighter { partial class AirFighterForm { /// /// 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() { this.pictureBoxAirFighter = new System.Windows.Forms.PictureBox(); this.statusStripAircraft = new System.Windows.Forms.StatusStrip(); this.toolStripStatusSpeed = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusWeight = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusBodyColor = new System.Windows.Forms.ToolStripStatusLabel(); this.buttonCreate = new System.Windows.Forms.Button(); this.buttonUp = new System.Windows.Forms.Button(); this.buttonLeft = new System.Windows.Forms.Button(); this.buttonRight = new System.Windows.Forms.Button(); this.buttonDown = new System.Windows.Forms.Button(); this.buttonCreateModification = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirFighter)).BeginInit(); this.statusStripAircraft.SuspendLayout(); this.SuspendLayout(); // // pictureBoxAirFighter // this.pictureBoxAirFighter.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBoxAirFighter.Location = new System.Drawing.Point(0, 0); this.pictureBoxAirFighter.Name = "pictureBoxAirFighter"; this.pictureBoxAirFighter.Size = new System.Drawing.Size(800, 428); this.pictureBoxAirFighter.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.pictureBoxAirFighter.TabIndex = 0; this.pictureBoxAirFighter.TabStop = false; this.pictureBoxAirFighter.Resize += new System.EventHandler(this.pictureBoxAirFighter_Resize); // // statusStripAircraft // this.statusStripAircraft.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusSpeed, this.toolStripStatusWeight, this.toolStripStatusBodyColor}); this.statusStripAircraft.Location = new System.Drawing.Point(0, 428); this.statusStripAircraft.Name = "statusStripAircraft"; this.statusStripAircraft.Size = new System.Drawing.Size(800, 22); this.statusStripAircraft.TabIndex = 1; // // toolStripStatusSpeed // this.toolStripStatusSpeed.Name = "toolStripStatusSpeed"; this.toolStripStatusSpeed.Size = new System.Drawing.Size(42, 17); this.toolStripStatusSpeed.Text = "Speed:"; // // toolStripStatusWeight // this.toolStripStatusWeight.Name = "toolStripStatusWeight"; this.toolStripStatusWeight.Size = new System.Drawing.Size(48, 17); this.toolStripStatusWeight.Text = "Weight:"; // // toolStripStatusBodyColor // this.toolStripStatusBodyColor.Name = "toolStripStatusBodyColor"; this.toolStripStatusBodyColor.Size = new System.Drawing.Size(66, 17); this.toolStripStatusBodyColor.Text = "BodyColor:"; // // buttonCreate // this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonCreate.Location = new System.Drawing.Point(12, 389); this.buttonCreate.Name = "buttonCreate"; this.buttonCreate.Size = new System.Drawing.Size(75, 23); this.buttonCreate.TabIndex = 2; this.buttonCreate.Text = "Create"; this.buttonCreate.UseVisualStyleBackColor = true; this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click); // // buttonUp // this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonUp.BackgroundImage = global::AirFighter.Properties.Resources.ArrowUp; this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonUp.Location = new System.Drawing.Point(702, 346); this.buttonUp.Name = "buttonUp"; this.buttonUp.Size = new System.Drawing.Size(30, 30); this.buttonUp.TabIndex = 3; 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::AirFighter.Properties.Resources.ArrowLeft; this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonLeft.Location = new System.Drawing.Point(666, 382); this.buttonLeft.Name = "buttonLeft"; this.buttonLeft.Size = new System.Drawing.Size(30, 30); this.buttonLeft.TabIndex = 4; this.buttonLeft.UseVisualStyleBackColor = true; this.buttonLeft.Click += new System.EventHandler(this.buttonMove_Click); // // buttonRight // this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonRight.BackgroundImage = global::AirFighter.Properties.Resources.ArrowRight; this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonRight.Location = new System.Drawing.Point(738, 382); this.buttonRight.Name = "buttonRight"; this.buttonRight.Size = new System.Drawing.Size(30, 30); this.buttonRight.TabIndex = 5; this.buttonRight.UseVisualStyleBackColor = true; this.buttonRight.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::AirFighter.Properties.Resources.ArrowDown; this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.buttonDown.Location = new System.Drawing.Point(702, 382); this.buttonDown.Name = "buttonDown"; this.buttonDown.Size = new System.Drawing.Size(30, 30); this.buttonDown.TabIndex = 6; this.buttonDown.UseVisualStyleBackColor = true; this.buttonDown.Click += new System.EventHandler(this.buttonMove_Click); // // buttonCreateModification // this.buttonCreateModification.Location = new System.Drawing.Point(103, 389); this.buttonCreateModification.Name = "buttonCreateModification"; this.buttonCreateModification.Size = new System.Drawing.Size(110, 23); this.buttonCreateModification.TabIndex = 7; this.buttonCreateModification.Text = "Modification"; this.buttonCreateModification.UseVisualStyleBackColor = true; this.buttonCreateModification.Click += new System.EventHandler(this.buttonCreateModification_Click); // // AirFighterForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.buttonCreateModification); this.Controls.Add(this.buttonDown); this.Controls.Add(this.buttonRight); this.Controls.Add(this.buttonLeft); this.Controls.Add(this.buttonUp); this.Controls.Add(this.buttonCreate); this.Controls.Add(this.pictureBoxAirFighter); this.Controls.Add(this.statusStripAircraft); this.Name = "AirFighterForm"; this.Text = "AirFighter"; ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirFighter)).EndInit(); this.statusStripAircraft.ResumeLayout(false); this.statusStripAircraft.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private PictureBox pictureBoxAirFighter; private StatusStrip statusStripAircraft; private ToolStripStatusLabel toolStripStatusSpeed; private ToolStripStatusLabel toolStripStatusWeight; private ToolStripStatusLabel toolStripStatusBodyColor; private Button buttonCreate; private Button buttonUp; private Button buttonLeft; private Button buttonRight; private Button buttonDown; private Button buttonCreateModification; } }