380 lines
16 KiB
C#
380 lines
16 KiB
C#
namespace ProjectAirFighter
|
||
{
|
||
partial class FormWarPlaneConfig
|
||
{
|
||
/// <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()
|
||
{
|
||
groupBoxConfig = new GroupBox();
|
||
groupBoxColor = new GroupBox();
|
||
panelPurple = new Panel();
|
||
panelYellow = new Panel();
|
||
panelBlack = new Panel();
|
||
panelGrey = new Panel();
|
||
panelBlue = new Panel();
|
||
panelWhite = new Panel();
|
||
panelGreen = new Panel();
|
||
panelRed = new Panel();
|
||
checkBoxAdditionalWing = new CheckBox();
|
||
checkBoxRocket = new CheckBox();
|
||
numericUpDownWeight = new NumericUpDown();
|
||
labelWheight = new Label();
|
||
numericUpDownSpeed = new NumericUpDown();
|
||
labelSpeed = new Label();
|
||
labelModifiedObject = new Label();
|
||
labelSimpleObject = new Label();
|
||
pictureBoxObject = new PictureBox();
|
||
buttonAdd = new Button();
|
||
buttonCancel = new Button();
|
||
PanelObject = new Panel();
|
||
labelAdditionalColor = new Label();
|
||
labelBodyColor = new Label();
|
||
groupBoxConfig.SuspendLayout();
|
||
groupBoxColor.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownWeight).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownSpeed).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxObject).BeginInit();
|
||
PanelObject.SuspendLayout();
|
||
SuspendLayout();
|
||
//
|
||
// groupBoxConfig
|
||
//
|
||
groupBoxConfig.Controls.Add(groupBoxColor);
|
||
groupBoxConfig.Controls.Add(checkBoxAdditionalWing);
|
||
groupBoxConfig.Controls.Add(checkBoxRocket);
|
||
groupBoxConfig.Controls.Add(numericUpDownWeight);
|
||
groupBoxConfig.Controls.Add(labelWheight);
|
||
groupBoxConfig.Controls.Add(numericUpDownSpeed);
|
||
groupBoxConfig.Controls.Add(labelSpeed);
|
||
groupBoxConfig.Controls.Add(labelModifiedObject);
|
||
groupBoxConfig.Controls.Add(labelSimpleObject);
|
||
groupBoxConfig.Dock = DockStyle.Left;
|
||
groupBoxConfig.Location = new Point(0, 0);
|
||
groupBoxConfig.Margin = new Padding(3, 2, 3, 2);
|
||
groupBoxConfig.Name = "groupBoxConfig";
|
||
groupBoxConfig.Padding = new Padding(3, 2, 3, 2);
|
||
groupBoxConfig.Size = new Size(498, 264);
|
||
groupBoxConfig.TabIndex = 0;
|
||
groupBoxConfig.TabStop = false;
|
||
groupBoxConfig.Text = "Параметры";
|
||
//
|
||
// groupBoxColor
|
||
//
|
||
groupBoxColor.Controls.Add(panelPurple);
|
||
groupBoxColor.Controls.Add(panelYellow);
|
||
groupBoxColor.Controls.Add(panelBlack);
|
||
groupBoxColor.Controls.Add(panelGrey);
|
||
groupBoxColor.Controls.Add(panelBlue);
|
||
groupBoxColor.Controls.Add(panelWhite);
|
||
groupBoxColor.Controls.Add(panelGreen);
|
||
groupBoxColor.Controls.Add(panelRed);
|
||
groupBoxColor.Location = new Point(192, 9);
|
||
groupBoxColor.Margin = new Padding(3, 2, 3, 2);
|
||
groupBoxColor.Name = "groupBoxColor";
|
||
groupBoxColor.Padding = new Padding(3, 2, 3, 2);
|
||
groupBoxColor.Size = new Size(293, 123);
|
||
groupBoxColor.TabIndex = 8;
|
||
groupBoxColor.TabStop = false;
|
||
groupBoxColor.Text = "Цвета";
|
||
//
|
||
// panelPurple
|
||
//
|
||
panelPurple.BackColor = Color.Purple;
|
||
panelPurple.Location = new Point(237, 74);
|
||
panelPurple.Margin = new Padding(3, 2, 3, 2);
|
||
panelPurple.Name = "panelPurple";
|
||
panelPurple.Size = new Size(51, 39);
|
||
panelPurple.TabIndex = 7;
|
||
//
|
||
// panelYellow
|
||
//
|
||
panelYellow.BackColor = Color.Yellow;
|
||
panelYellow.Location = new Point(237, 20);
|
||
panelYellow.Margin = new Padding(3, 2, 3, 2);
|
||
panelYellow.Name = "panelYellow";
|
||
panelYellow.Size = new Size(51, 39);
|
||
panelYellow.TabIndex = 3;
|
||
//
|
||
// panelBlack
|
||
//
|
||
panelBlack.BackColor = Color.Black;
|
||
panelBlack.Location = new Point(154, 74);
|
||
panelBlack.Margin = new Padding(3, 2, 3, 2);
|
||
panelBlack.Name = "panelBlack";
|
||
panelBlack.Size = new Size(51, 39);
|
||
panelBlack.TabIndex = 6;
|
||
//
|
||
// panelGrey
|
||
//
|
||
panelGrey.BackColor = Color.Gray;
|
||
panelGrey.Location = new Point(78, 74);
|
||
panelGrey.Margin = new Padding(3, 2, 3, 2);
|
||
panelGrey.Name = "panelGrey";
|
||
panelGrey.Size = new Size(51, 39);
|
||
panelGrey.TabIndex = 5;
|
||
//
|
||
// panelBlue
|
||
//
|
||
panelBlue.BackColor = Color.Blue;
|
||
panelBlue.Location = new Point(154, 20);
|
||
panelBlue.Margin = new Padding(3, 2, 3, 2);
|
||
panelBlue.Name = "panelBlue";
|
||
panelBlue.Size = new Size(51, 39);
|
||
panelBlue.TabIndex = 2;
|
||
//
|
||
// panelWhite
|
||
//
|
||
panelWhite.BackColor = Color.White;
|
||
panelWhite.Location = new Point(5, 74);
|
||
panelWhite.Margin = new Padding(3, 2, 3, 2);
|
||
panelWhite.Name = "panelWhite";
|
||
panelWhite.Size = new Size(51, 39);
|
||
panelWhite.TabIndex = 4;
|
||
//
|
||
// panelGreen
|
||
//
|
||
panelGreen.BackColor = Color.Green;
|
||
panelGreen.Location = new Point(78, 20);
|
||
panelGreen.Margin = new Padding(3, 2, 3, 2);
|
||
panelGreen.Name = "panelGreen";
|
||
panelGreen.Size = new Size(51, 39);
|
||
panelGreen.TabIndex = 1;
|
||
//
|
||
// panelRed
|
||
//
|
||
panelRed.BackColor = Color.Red;
|
||
panelRed.Location = new Point(5, 20);
|
||
panelRed.Margin = new Padding(3, 2, 3, 2);
|
||
panelRed.Name = "panelRed";
|
||
panelRed.Size = new Size(51, 39);
|
||
panelRed.TabIndex = 0;
|
||
//
|
||
// checkBoxAdditionalWing
|
||
//
|
||
checkBoxAdditionalWing.AutoSize = true;
|
||
checkBoxAdditionalWing.Location = new Point(6, 234);
|
||
checkBoxAdditionalWing.Margin = new Padding(3, 2, 3, 2);
|
||
checkBoxAdditionalWing.Name = "checkBoxAdditionalWing";
|
||
checkBoxAdditionalWing.Size = new Size(270, 19);
|
||
checkBoxAdditionalWing.TabIndex = 7;
|
||
checkBoxAdditionalWing.Text = "Признак наличия дополнительных крыльев";
|
||
checkBoxAdditionalWing.UseVisualStyleBackColor = true;
|
||
//
|
||
// checkBoxRocket
|
||
//
|
||
checkBoxRocket.AutoSize = true;
|
||
checkBoxRocket.Location = new Point(6, 195);
|
||
checkBoxRocket.Margin = new Padding(3, 2, 3, 2);
|
||
checkBoxRocket.Name = "checkBoxRocket";
|
||
checkBoxRocket.Size = new Size(156, 19);
|
||
checkBoxRocket.TabIndex = 6;
|
||
checkBoxRocket.Text = "Признак наличия ракет";
|
||
checkBoxRocket.UseVisualStyleBackColor = true;
|
||
//
|
||
// numericUpDownWeight
|
||
//
|
||
numericUpDownWeight.Location = new Point(84, 47);
|
||
numericUpDownWeight.Margin = new Padding(3, 2, 3, 2);
|
||
numericUpDownWeight.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
|
||
numericUpDownWeight.Minimum = new decimal(new int[] { 100, 0, 0, 0 });
|
||
numericUpDownWeight.Name = "numericUpDownWeight";
|
||
numericUpDownWeight.Size = new Size(74, 23);
|
||
numericUpDownWeight.TabIndex = 5;
|
||
numericUpDownWeight.Value = new decimal(new int[] { 100, 0, 0, 0 });
|
||
//
|
||
// labelWheight
|
||
//
|
||
labelWheight.AutoSize = true;
|
||
labelWheight.Location = new Point(15, 53);
|
||
labelWheight.Name = "labelWheight";
|
||
labelWheight.Size = new Size(26, 15);
|
||
labelWheight.TabIndex = 4;
|
||
labelWheight.Text = "Вес";
|
||
//
|
||
// numericUpDownSpeed
|
||
//
|
||
numericUpDownSpeed.Location = new Point(84, 20);
|
||
numericUpDownSpeed.Margin = new Padding(3, 2, 3, 2);
|
||
numericUpDownSpeed.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
|
||
numericUpDownSpeed.Minimum = new decimal(new int[] { 100, 0, 0, 0 });
|
||
numericUpDownSpeed.Name = "numericUpDownSpeed";
|
||
numericUpDownSpeed.Size = new Size(74, 23);
|
||
numericUpDownSpeed.TabIndex = 3;
|
||
numericUpDownSpeed.Value = new decimal(new int[] { 100, 0, 0, 0 });
|
||
//
|
||
// labelSpeed
|
||
//
|
||
labelSpeed.AutoSize = true;
|
||
labelSpeed.Location = new Point(15, 18);
|
||
labelSpeed.Name = "labelSpeed";
|
||
labelSpeed.Size = new Size(59, 15);
|
||
labelSpeed.TabIndex = 2;
|
||
labelSpeed.Text = "Скорость";
|
||
//
|
||
// labelModifiedObject
|
||
//
|
||
labelModifiedObject.BorderStyle = BorderStyle.FixedSingle;
|
||
labelModifiedObject.Location = new Point(399, 233);
|
||
labelModifiedObject.Name = "labelModifiedObject";
|
||
labelModifiedObject.Size = new Size(93, 18);
|
||
labelModifiedObject.TabIndex = 1;
|
||
labelModifiedObject.Text = "Продвинутый";
|
||
labelModifiedObject.TextAlign = ContentAlignment.MiddleCenter;
|
||
labelModifiedObject.MouseDown += LabelObject_MouseDown;
|
||
//
|
||
// labelSimpleObject
|
||
//
|
||
labelSimpleObject.BorderStyle = BorderStyle.FixedSingle;
|
||
labelSimpleObject.Location = new Point(304, 233);
|
||
labelSimpleObject.Name = "labelSimpleObject";
|
||
labelSimpleObject.Size = new Size(84, 18);
|
||
labelSimpleObject.TabIndex = 0;
|
||
labelSimpleObject.Text = "Простой";
|
||
labelSimpleObject.TextAlign = ContentAlignment.MiddleCenter;
|
||
labelSimpleObject.MouseDown += LabelObject_MouseDown;
|
||
//
|
||
// pictureBoxObject
|
||
//
|
||
pictureBoxObject.Location = new Point(12, 38);
|
||
pictureBoxObject.Margin = new Padding(3, 2, 3, 2);
|
||
pictureBoxObject.Name = "pictureBoxObject";
|
||
pictureBoxObject.Size = new Size(176, 149);
|
||
pictureBoxObject.TabIndex = 1;
|
||
pictureBoxObject.TabStop = false;
|
||
pictureBoxObject.DragDrop += PanelObject_DragDrop;
|
||
pictureBoxObject.DragEnter += PanelObject_DragEnter;
|
||
//
|
||
// buttonAdd
|
||
//
|
||
buttonAdd.Location = new Point(517, 236);
|
||
buttonAdd.Margin = new Padding(3, 2, 3, 2);
|
||
buttonAdd.Name = "buttonAdd";
|
||
buttonAdd.Size = new Size(82, 22);
|
||
buttonAdd.TabIndex = 2;
|
||
buttonAdd.Text = "Добавить";
|
||
buttonAdd.UseVisualStyleBackColor = true;
|
||
buttonAdd.Click += buttonAdd_Click;
|
||
//
|
||
// buttonCancel
|
||
//
|
||
buttonCancel.Location = new Point(623, 236);
|
||
buttonCancel.Margin = new Padding(3, 2, 3, 2);
|
||
buttonCancel.Name = "buttonCancel";
|
||
buttonCancel.Size = new Size(82, 22);
|
||
buttonCancel.TabIndex = 3;
|
||
buttonCancel.Text = "Отменить";
|
||
buttonCancel.UseVisualStyleBackColor = true;
|
||
//
|
||
// PanelObject
|
||
//
|
||
PanelObject.AllowDrop = true;
|
||
PanelObject.Controls.Add(labelAdditionalColor);
|
||
PanelObject.Controls.Add(labelBodyColor);
|
||
PanelObject.Controls.Add(pictureBoxObject);
|
||
PanelObject.Location = new Point(517, 9);
|
||
PanelObject.Margin = new Padding(3, 2, 3, 2);
|
||
PanelObject.Name = "PanelObject";
|
||
PanelObject.Size = new Size(197, 205);
|
||
PanelObject.TabIndex = 4;
|
||
PanelObject.DragDrop += PanelObject_DragDrop;
|
||
PanelObject.DragEnter += PanelObject_DragEnter;
|
||
//
|
||
// labelAdditionalColor
|
||
//
|
||
labelAdditionalColor.AllowDrop = true;
|
||
labelAdditionalColor.BorderStyle = BorderStyle.FixedSingle;
|
||
labelAdditionalColor.Location = new Point(100, 6);
|
||
labelAdditionalColor.Name = "labelAdditionalColor";
|
||
labelAdditionalColor.Size = new Size(88, 18);
|
||
labelAdditionalColor.TabIndex = 3;
|
||
labelAdditionalColor.Text = "Доп. цвет";
|
||
labelAdditionalColor.TextAlign = ContentAlignment.MiddleCenter;
|
||
labelAdditionalColor.DragDrop += labelAdditionalColor_DragDrop;
|
||
labelAdditionalColor.DragEnter += labelAdditionalColor_DragEnter;
|
||
//
|
||
// labelBodyColor
|
||
//
|
||
labelBodyColor.AllowDrop = true;
|
||
labelBodyColor.BorderStyle = BorderStyle.FixedSingle;
|
||
labelBodyColor.Location = new Point(12, 6);
|
||
labelBodyColor.Name = "labelBodyColor";
|
||
labelBodyColor.Size = new Size(77, 18);
|
||
labelBodyColor.TabIndex = 2;
|
||
labelBodyColor.Text = "Цвет";
|
||
labelBodyColor.TextAlign = ContentAlignment.MiddleCenter;
|
||
labelBodyColor.DragDrop += labelBodyColor_DragDrop;
|
||
labelBodyColor.DragEnter += labelBodyColor_DragEnter;
|
||
//
|
||
// FormWarPlaneConfig
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(717, 264);
|
||
Controls.Add(PanelObject);
|
||
Controls.Add(buttonCancel);
|
||
Controls.Add(buttonAdd);
|
||
Controls.Add(groupBoxConfig);
|
||
Margin = new Padding(3, 2, 3, 2);
|
||
Name = "FormWarPlaneConfig";
|
||
Text = "Создание объекта";
|
||
groupBoxConfig.ResumeLayout(false);
|
||
groupBoxConfig.PerformLayout();
|
||
groupBoxColor.ResumeLayout(false);
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownWeight).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)numericUpDownSpeed).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxObject).EndInit();
|
||
PanelObject.ResumeLayout(false);
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private GroupBox groupBoxConfig;
|
||
private Label labelSimpleObject;
|
||
private Label labelModifiedObject;
|
||
private Label labelSpeed;
|
||
private NumericUpDown numericUpDownSpeed;
|
||
private Label labelWheight;
|
||
private NumericUpDown numericUpDownWeight;
|
||
private CheckBox checkBoxRocket;
|
||
private CheckBox checkBoxAdditionalWing;
|
||
private GroupBox groupBoxColor;
|
||
private Panel panelRed;
|
||
private Panel panelYellow;
|
||
private Panel panelBlue;
|
||
private Panel panelGreen;
|
||
private Panel panelPurple;
|
||
private Panel panelBlack;
|
||
private Panel panelGrey;
|
||
private Panel panelWhite;
|
||
private PictureBox pictureBoxObject;
|
||
private Button buttonAdd;
|
||
private Button buttonCancel;
|
||
private Panel PanelObject;
|
||
private Label labelAdditionalColor;
|
||
private Label labelBodyColor;
|
||
}
|
||
} |