PIbd-13_Ladyagin_P.D._Simple/AirplaneWithRadar/ProjectAirplaneWithRadar/FormAirplaneWithRadar.Designer.cs

146 lines
6.0 KiB
C#
Raw Normal View History

2024-02-10 18:11:15 +04:00
namespace ProjectAirplaneWithRadar
{
partial class FormAirplaneWithRadar
{
/// <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()
{
pictureBoxAirplaneWithRadar = new PictureBox();
buttonLeft = new Button();
buttonRight = new Button();
buttonDown = new Button();
buttonUp = new Button();
2024-03-23 15:58:03 +04:00
comboBoxStrategy = new ComboBox();
buttonStrategyStep = new Button();
2024-02-10 18:11:15 +04:00
((System.ComponentModel.ISupportInitialize)pictureBoxAirplaneWithRadar).BeginInit();
SuspendLayout();
//
// pictureBoxAirplaneWithRadar
//
pictureBoxAirplaneWithRadar.Dock = DockStyle.Fill;
pictureBoxAirplaneWithRadar.Location = new Point(0, 0);
pictureBoxAirplaneWithRadar.Name = "pictureBoxAirplaneWithRadar";
2024-03-23 15:58:03 +04:00
pictureBoxAirplaneWithRadar.Size = new Size(987, 477);
2024-02-10 18:11:15 +04:00
pictureBoxAirplaneWithRadar.TabIndex = 0;
pictureBoxAirplaneWithRadar.TabStop = false;
//
// buttonLeft
//
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonLeft.BackgroundImage = Properties.Resources.Стрелка_влево;
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
2024-03-23 15:58:03 +04:00
buttonLeft.Location = new Point(858, 430);
2024-02-10 18:11:15 +04:00
buttonLeft.Name = "buttonLeft";
2024-03-23 15:58:03 +04:00
buttonLeft.Size = new Size(35, 35);
2024-02-10 18:11:15 +04:00
buttonLeft.TabIndex = 2;
buttonLeft.UseVisualStyleBackColor = true;
buttonLeft.Click += ButtonMove_Click;
//
// buttonRight
//
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonRight.BackgroundImage = Properties.Resources.Стрелка_вправо;
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
2024-03-23 15:58:03 +04:00
buttonRight.Location = new Point(940, 430);
2024-02-10 18:11:15 +04:00
buttonRight.Name = "buttonRight";
2024-03-23 15:58:03 +04:00
buttonRight.Size = new Size(35, 35);
2024-02-10 18:11:15 +04:00
buttonRight.TabIndex = 3;
buttonRight.UseVisualStyleBackColor = true;
buttonRight.Click += ButtonMove_Click;
//
// buttonDown
//
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonDown.BackgroundImage = Properties.Resources.Стрелка_вниз;
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
2024-03-23 15:58:03 +04:00
buttonDown.Location = new Point(899, 430);
2024-02-10 18:11:15 +04:00
buttonDown.Name = "buttonDown";
2024-03-23 15:58:03 +04:00
buttonDown.Size = new Size(35, 35);
2024-02-10 18:11:15 +04:00
buttonDown.TabIndex = 4;
buttonDown.UseVisualStyleBackColor = true;
buttonDown.Click += ButtonMove_Click;
//
// buttonUp
//
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonUp.BackgroundImage = Properties.Resources.Стрелка_вверх;
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
2024-03-23 15:58:03 +04:00
buttonUp.Location = new Point(899, 389);
2024-02-10 18:11:15 +04:00
buttonUp.Name = "buttonUp";
2024-03-23 15:58:03 +04:00
buttonUp.Size = new Size(35, 35);
2024-02-10 18:11:15 +04:00
buttonUp.TabIndex = 5;
buttonUp.UseVisualStyleBackColor = true;
buttonUp.Click += ButtonMove_Click;
//
2024-03-23 15:58:03 +04:00
// comboBoxStrategy
//
comboBoxStrategy.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxStrategy.FormattingEnabled = true;
comboBoxStrategy.Items.AddRange(new object[] { "К центру", "К краю" });
comboBoxStrategy.Location = new Point(854, 12);
comboBoxStrategy.Name = "comboBoxStrategy";
comboBoxStrategy.Size = new Size(121, 23);
comboBoxStrategy.TabIndex = 7;
//
// buttonStrategyStep
//
buttonStrategyStep.Location = new Point(900, 41);
buttonStrategyStep.Name = "buttonStrategyStep";
buttonStrategyStep.Size = new Size(75, 23);
buttonStrategyStep.TabIndex = 8;
buttonStrategyStep.Text = "Шаг";
buttonStrategyStep.UseVisualStyleBackColor = true;
buttonStrategyStep.Click += buttonStrategyStep_Click;
//
2024-02-10 18:11:15 +04:00
// FormAirplaneWithRadar
//
2024-03-23 15:58:03 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
2024-02-10 18:11:15 +04:00
AutoScaleMode = AutoScaleMode.Font;
2024-03-23 15:58:03 +04:00
ClientSize = new Size(987, 477);
Controls.Add(buttonStrategyStep);
Controls.Add(comboBoxStrategy);
2024-02-10 18:11:15 +04:00
Controls.Add(buttonUp);
Controls.Add(buttonDown);
Controls.Add(buttonRight);
Controls.Add(buttonLeft);
Controls.Add(pictureBoxAirplaneWithRadar);
Name = "FormAirplaneWithRadar";
Text = "Самолет с радаром";
((System.ComponentModel.ISupportInitialize)pictureBoxAirplaneWithRadar).EndInit();
ResumeLayout(false);
}
#endregion
private PictureBox pictureBoxAirplaneWithRadar;
private Button buttonLeft;
private Button buttonRight;
private Button buttonDown;
private Button buttonUp;
2024-03-23 15:58:03 +04:00
private ComboBox comboBoxStrategy;
private Button buttonStrategyStep;
2024-02-10 18:11:15 +04:00
}
}