PIBD-13_Fomichev_V.S._Simple_/AntiAircraftGun/FormAntiAircraftGun.Designer.cs

134 lines
5.3 KiB
C#
Raw Normal View History

2024-02-21 16:18:32 +04:00
namespace AntiAircraftGun
{
2024-02-21 19:44:26 +04:00
partial class FormAntiAircraftGun
2024-02-21 16:18:32 +04:00
{
/// <summary>
2024-02-21 17:00:14 +04:00
/// Required designer variable.
2024-02-21 16:18:32 +04:00
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
2024-02-21 17:00:14 +04:00
/// Clean up any resources being used.
2024-02-21 16:18:32 +04:00
/// </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>
2024-02-21 17:00:14 +04:00
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
2024-02-21 16:18:32 +04:00
/// </summary>
private void InitializeComponent()
{
2024-02-21 19:36:11 +04:00
pictureBoxAntiAircraftGun = new PictureBox();
buttonCreate = new Button();
buttonLeft = new Button();
buttonDown = new Button();
buttonRight = new Button();
buttonUp = new Button();
((System.ComponentModel.ISupportInitialize)pictureBoxAntiAircraftGun).BeginInit();
2024-02-21 17:00:14 +04:00
SuspendLayout();
//
2024-02-21 19:36:11 +04:00
// pictureBoxAntiAircraftGun
//
pictureBoxAntiAircraftGun.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
pictureBoxAntiAircraftGun.Location = new Point(0, 0);
pictureBoxAntiAircraftGun.Name = "pictureBoxAntiAircraftGun";
pictureBoxAntiAircraftGun.Size = new Size(800, 450);
pictureBoxAntiAircraftGun.TabIndex = 0;
pictureBoxAntiAircraftGun.TabStop = false;
//
// buttonCreate
//
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreate.Location = new Point(12, 406);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(95, 32);
buttonCreate.TabIndex = 1;
buttonCreate.Text = "Создать";
buttonCreate.UseVisualStyleBackColor = true;
buttonCreate.Click += ButtonCreate_Click;
2024-02-21 19:36:11 +04:00
//
// buttonLeft
//
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonLeft.BackgroundImage = Properties.Resources.left;
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
buttonLeft.Location = new Point(636, 403);
buttonLeft.Name = "buttonLeft";
buttonLeft.Size = new Size(35, 35);
buttonLeft.TabIndex = 2;
buttonLeft.UseVisualStyleBackColor = true;
buttonLeft.Click += ButtonMove_Click;
2024-02-21 19:36:11 +04:00
//
// buttonDown
//
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonDown.BackgroundImage = Properties.Resources.down;
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
buttonDown.Location = new Point(677, 403);
buttonDown.Name = "buttonDown";
buttonDown.Size = new Size(35, 35);
buttonDown.TabIndex = 3;
buttonDown.UseVisualStyleBackColor = true;
buttonDown.Click += ButtonMove_Click;
2024-02-21 19:36:11 +04:00
//
// buttonRight
//
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonRight.BackgroundImage = Properties.Resources.right;
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
buttonRight.Location = new Point(718, 403);
buttonRight.Name = "buttonRight";
buttonRight.Size = new Size(35, 35);
buttonRight.TabIndex = 4;
buttonRight.UseVisualStyleBackColor = true;
buttonRight.Click += ButtonMove_Click;
2024-02-21 19:36:11 +04:00
//
// buttonUp
//
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonUp.BackgroundImage = Properties.Resources.up;
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
buttonUp.Location = new Point(677, 362);
buttonUp.Name = "buttonUp";
buttonUp.Size = new Size(35, 35);
buttonUp.TabIndex = 5;
buttonUp.UseVisualStyleBackColor = true;
buttonUp.Click += ButtonMove_Click;
2024-02-21 19:36:11 +04:00
//
// FormAntiAircraftGun
2024-02-21 17:00:14 +04:00
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
2024-02-21 19:36:11 +04:00
Controls.Add(buttonUp);
Controls.Add(buttonRight);
Controls.Add(buttonDown);
Controls.Add(buttonLeft);
Controls.Add(buttonCreate);
Controls.Add(pictureBoxAntiAircraftGun);
Name = "FormAntiAircraftGun";
2024-02-21 17:00:14 +04:00
Text = "Зенитная установка";
2024-02-21 19:36:11 +04:00
((System.ComponentModel.ISupportInitialize)pictureBoxAntiAircraftGun).EndInit();
2024-02-21 17:00:14 +04:00
ResumeLayout(false);
2024-02-21 16:18:32 +04:00
}
#endregion
2024-02-21 19:36:11 +04:00
private PictureBox pictureBoxAntiAircraftGun;
private Button buttonCreate;
private Button buttonLeft;
private Button buttonDown;
private Button buttonRight;
private Button buttonUp;
2024-02-21 16:18:32 +04:00
}
}