PIBD-14_Lavrova_K.I._Simple/solution/lab1/FormFighter.Designer.cs

153 lines
6.3 KiB
C#
Raw Normal View History

namespace lab1
{
partial class FormFighter
{
/// <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()
{
pictureBoxFighter = new PictureBox();
buttonCreate = new Button();
buttonLeft = new Button();
buttonDown = new Button();
buttonUp = new Button();
buttonRight = new Button();
buttonCreateTrackedVehicle = new Button();
((System.ComponentModel.ISupportInitialize)pictureBoxFighter).BeginInit();
SuspendLayout();
//
// pictureBoxFighter
//
pictureBoxFighter.Dock = DockStyle.Fill;
pictureBoxFighter.Location = new Point(0, 0);
pictureBoxFighter.Name = "pictureBoxFighter";
pictureBoxFighter.Size = new Size(1015, 584);
pictureBoxFighter.TabIndex = 0;
pictureBoxFighter.TabStop = false;
//
// buttonCreate
//
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreate.Location = new Point(12, 538);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(226, 34);
buttonCreate.TabIndex = 1;
buttonCreate.Text = "создать истребитель";
buttonCreate.UseVisualStyleBackColor = true;
buttonCreate.Click += ButtonCreate_Click;
//
// buttonLeft
//
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonLeft.BackColor = SystemColors.Control;
buttonLeft.BackgroundImage = Properties.Resources.arrowLeft;
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
buttonLeft.Location = new Point(796, 505);
buttonLeft.Name = "buttonLeft";
buttonLeft.Size = new Size(52, 52);
buttonLeft.TabIndex = 2;
buttonLeft.UseVisualStyleBackColor = false;
buttonLeft.Click += ButtonMove_Click;
//
// buttonDown
//
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonDown.BackColor = SystemColors.Control;
buttonDown.BackgroundImage = Properties.Resources.arrowDown;
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
buttonDown.Location = new Point(854, 505);
buttonDown.Name = "buttonDown";
buttonDown.Size = new Size(52, 52);
buttonDown.TabIndex = 3;
buttonDown.UseVisualStyleBackColor = false;
buttonDown.Click += ButtonMove_Click;
//
// buttonUp
//
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonUp.BackColor = SystemColors.Control;
buttonUp.BackgroundImage = Properties.Resources.arrowUp;
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
buttonUp.Location = new Point(854, 447);
buttonUp.Name = "buttonUp";
buttonUp.Size = new Size(52, 52);
buttonUp.TabIndex = 4;
buttonUp.UseVisualStyleBackColor = false;
buttonUp.Click += ButtonMove_Click;
//
// buttonRight
//
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonRight.BackColor = SystemColors.Control;
buttonRight.BackgroundImage = Properties.Resources.arrowRight;
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
buttonRight.Location = new Point(912, 505);
buttonRight.Name = "buttonRight";
buttonRight.Size = new Size(52, 52);
buttonRight.TabIndex = 5;
buttonRight.UseVisualStyleBackColor = false;
buttonRight.Click += ButtonMove_Click;
//
// buttonCreateTrackedVehicle
//
buttonCreateTrackedVehicle.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreateTrackedVehicle.Location = new Point(234, 538);
buttonCreateTrackedVehicle.Name = "buttonCreateTrackedVehicle";
buttonCreateTrackedVehicle.Size = new Size(264, 34);
buttonCreateTrackedVehicle.TabIndex = 6;
buttonCreateTrackedVehicle.Text = "создать гусеничную машину";
buttonCreateTrackedVehicle.UseVisualStyleBackColor = true;
buttonCreateTrackedVehicle.Click += ButtonCreateTrackedVehicle_Click;
//
// FormFighter
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1015, 584);
Controls.Add(buttonCreateTrackedVehicle);
Controls.Add(buttonRight);
Controls.Add(buttonUp);
Controls.Add(buttonDown);
Controls.Add(buttonLeft);
Controls.Add(buttonCreate);
Controls.Add(pictureBoxFighter);
Name = "FormFighter";
Text = "Истребитель";
Load += FormFighter_Load;
((System.ComponentModel.ISupportInitialize)pictureBoxFighter).EndInit();
ResumeLayout(false);
}
#endregion
private PictureBox pictureBoxFighter;
private Button buttonCreate;
private Button buttonLeft;
private Button buttonDown;
private Button buttonUp;
private Button buttonRight;
private Button buttonCreateTrackedVehicle;
}
}