145 lines
5.9 KiB
C#
145 lines
5.9 KiB
C#
namespace Airbus
|
|
{
|
|
partial class FormAirbus
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAirbus));
|
|
pictureAirbus = new PictureBox();
|
|
buttonUp = new Button();
|
|
buttonLeft = new Button();
|
|
buttonDown = new Button();
|
|
buttonRight = new Button();
|
|
buttonCreate = new Button();
|
|
((System.ComponentModel.ISupportInitialize)pictureAirbus).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// pictureAirbus
|
|
//
|
|
pictureAirbus.Dock = DockStyle.Fill;
|
|
pictureAirbus.Location = new Point(0, 0);
|
|
pictureAirbus.Name = "pictureAirbus";
|
|
pictureAirbus.Size = new Size(800, 450);
|
|
pictureAirbus.SizeMode = PictureBoxSizeMode.AutoSize;
|
|
pictureAirbus.TabIndex = 0;
|
|
pictureAirbus.TabStop = false;
|
|
//
|
|
// buttonUp
|
|
//
|
|
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonUp.BackgroundImage = (Image)resources.GetObject("buttonUp.BackgroundImage");
|
|
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonUp.FlatAppearance.BorderColor = Color.Black;
|
|
buttonUp.FlatAppearance.BorderSize = 7;
|
|
buttonUp.Location = new Point(679, 313);
|
|
buttonUp.Name = "buttonUp";
|
|
buttonUp.Size = new Size(48, 44);
|
|
buttonUp.TabIndex = 1;
|
|
buttonUp.UseVisualStyleBackColor = true;
|
|
buttonUp.Click += buttonMove_Click;
|
|
//
|
|
// buttonLeft
|
|
//
|
|
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonLeft.BackgroundImage = (Image)resources.GetObject("buttonLeft.BackgroundImage");
|
|
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonLeft.FlatAppearance.BorderColor = Color.Black;
|
|
buttonLeft.FlatAppearance.BorderSize = 7;
|
|
buttonLeft.Location = new Point(630, 358);
|
|
buttonLeft.Name = "buttonLeft";
|
|
buttonLeft.Size = new Size(48, 44);
|
|
buttonLeft.TabIndex = 2;
|
|
buttonLeft.UseVisualStyleBackColor = true;
|
|
buttonLeft.Click += buttonMove_Click;
|
|
//
|
|
// buttonDown
|
|
//
|
|
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonDown.BackgroundImage = (Image)resources.GetObject("buttonDown.BackgroundImage");
|
|
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonDown.FlatAppearance.BorderColor = Color.Black;
|
|
buttonDown.FlatAppearance.BorderSize = 7;
|
|
buttonDown.Location = new Point(679, 358);
|
|
buttonDown.Name = "buttonDown";
|
|
buttonDown.Size = new Size(48, 44);
|
|
buttonDown.TabIndex = 3;
|
|
buttonDown.UseVisualStyleBackColor = true;
|
|
buttonDown.Click += buttonMove_Click;
|
|
//
|
|
// buttonRight
|
|
//
|
|
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonRight.BackgroundImage = (Image)resources.GetObject("buttonRight.BackgroundImage");
|
|
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|
buttonRight.FlatAppearance.BorderColor = Color.Black;
|
|
buttonRight.FlatAppearance.BorderSize = 7;
|
|
buttonRight.Location = new Point(728, 358);
|
|
buttonRight.Name = "buttonRight";
|
|
buttonRight.Size = new Size(48, 44);
|
|
buttonRight.TabIndex = 4;
|
|
buttonRight.UseVisualStyleBackColor = true;
|
|
buttonRight.Click += buttonMove_Click;
|
|
//
|
|
// buttonCreate
|
|
//
|
|
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
buttonCreate.Location = new Point(12, 387);
|
|
buttonCreate.Name = "buttonCreate";
|
|
buttonCreate.Size = new Size(81, 51);
|
|
buttonCreate.TabIndex = 5;
|
|
buttonCreate.Text = "Создать";
|
|
buttonCreate.UseVisualStyleBackColor = true;
|
|
buttonCreate.Click += buttonCreate_Click;
|
|
//
|
|
// FormAirbus
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(buttonCreate);
|
|
Controls.Add(buttonRight);
|
|
Controls.Add(buttonDown);
|
|
Controls.Add(buttonLeft);
|
|
Controls.Add(buttonUp);
|
|
Controls.Add(pictureAirbus);
|
|
Name = "FormAirbus";
|
|
Text = "FormAirbus";
|
|
((System.ComponentModel.ISupportInitialize)pictureAirbus).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureAirbus;
|
|
private Button buttonUp;
|
|
private Button buttonLeft;
|
|
private Button buttonDown;
|
|
private Button buttonRight;
|
|
private Button buttonCreate;
|
|
}
|
|
} |