391 lines
18 KiB
C#
391 lines
18 KiB
C#
|
namespace ProjectAirFighter
|
|||
|
{
|
|||
|
partial class FormAirplaneConfig
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.configGroupBox = new System.Windows.Forms.GroupBox();
|
|||
|
this.colorGroupBox = new System.Windows.Forms.GroupBox();
|
|||
|
this.yellowPanel = new System.Windows.Forms.Panel();
|
|||
|
this.bluePanel = new System.Windows.Forms.Panel();
|
|||
|
this.greenPanel = new System.Windows.Forms.Panel();
|
|||
|
this.purplePanel = new System.Windows.Forms.Panel();
|
|||
|
this.blackPanel = new System.Windows.Forms.Panel();
|
|||
|
this.greyPanel = new System.Windows.Forms.Panel();
|
|||
|
this.whitePanel = new System.Windows.Forms.Panel();
|
|||
|
this.redPanel = new System.Windows.Forms.Panel();
|
|||
|
this.airfighterLabel = new System.Windows.Forms.Label();
|
|||
|
this.airplaneLabel = new System.Windows.Forms.Label();
|
|||
|
this.checkwing = new System.Windows.Forms.CheckBox();
|
|||
|
this.checkracket = new System.Windows.Forms.CheckBox();
|
|||
|
this.numericWeight = new System.Windows.Forms.NumericUpDown();
|
|||
|
this.numericSpeed = new System.Windows.Forms.NumericUpDown();
|
|||
|
this.weightLabel = new System.Windows.Forms.Label();
|
|||
|
this.speedLabel = new System.Windows.Forms.Label();
|
|||
|
this.allowPanel = new System.Windows.Forms.Panel();
|
|||
|
this.addColorLabel = new System.Windows.Forms.Label();
|
|||
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
|||
|
this.colorLabel = new System.Windows.Forms.Label();
|
|||
|
this.addButton = new System.Windows.Forms.Button();
|
|||
|
this.cancelButton = new System.Windows.Forms.Button();
|
|||
|
this.configGroupBox.SuspendLayout();
|
|||
|
this.colorGroupBox.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.numericWeight)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.numericSpeed)).BeginInit();
|
|||
|
this.allowPanel.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// configGroupBox
|
|||
|
//
|
|||
|
this.configGroupBox.Controls.Add(this.colorGroupBox);
|
|||
|
this.configGroupBox.Controls.Add(this.airfighterLabel);
|
|||
|
this.configGroupBox.Controls.Add(this.airplaneLabel);
|
|||
|
this.configGroupBox.Controls.Add(this.checkwing);
|
|||
|
this.configGroupBox.Controls.Add(this.checkracket);
|
|||
|
this.configGroupBox.Controls.Add(this.numericWeight);
|
|||
|
this.configGroupBox.Controls.Add(this.numericSpeed);
|
|||
|
this.configGroupBox.Controls.Add(this.weightLabel);
|
|||
|
this.configGroupBox.Controls.Add(this.speedLabel);
|
|||
|
this.configGroupBox.Location = new System.Drawing.Point(11, 12);
|
|||
|
this.configGroupBox.Name = "configGroupBox";
|
|||
|
this.configGroupBox.Size = new System.Drawing.Size(446, 279);
|
|||
|
this.configGroupBox.TabIndex = 0;
|
|||
|
this.configGroupBox.TabStop = false;
|
|||
|
this.configGroupBox.Text = "Параметры";
|
|||
|
//
|
|||
|
// colorGroupBox
|
|||
|
//
|
|||
|
this.colorGroupBox.Controls.Add(this.yellowPanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.bluePanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.greenPanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.purplePanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.blackPanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.greyPanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.whitePanel);
|
|||
|
this.colorGroupBox.Controls.Add(this.redPanel);
|
|||
|
this.colorGroupBox.Location = new System.Drawing.Point(171, 23);
|
|||
|
this.colorGroupBox.Name = "colorGroupBox";
|
|||
|
this.colorGroupBox.Size = new System.Drawing.Size(234, 143);
|
|||
|
this.colorGroupBox.TabIndex = 7;
|
|||
|
this.colorGroupBox.TabStop = false;
|
|||
|
this.colorGroupBox.Text = "Цвета";
|
|||
|
//
|
|||
|
// yellowPanel
|
|||
|
//
|
|||
|
this.yellowPanel.AllowDrop = true;
|
|||
|
this.yellowPanel.BackColor = System.Drawing.Color.Yellow;
|
|||
|
this.yellowPanel.Location = new System.Drawing.Point(174, 27);
|
|||
|
this.yellowPanel.Name = "yellowPanel";
|
|||
|
this.yellowPanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.yellowPanel.TabIndex = 3;
|
|||
|
//
|
|||
|
// bluePanel
|
|||
|
//
|
|||
|
this.bluePanel.AllowDrop = true;
|
|||
|
this.bluePanel.BackColor = System.Drawing.Color.Blue;
|
|||
|
this.bluePanel.Location = new System.Drawing.Point(118, 27);
|
|||
|
this.bluePanel.Name = "bluePanel";
|
|||
|
this.bluePanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.bluePanel.TabIndex = 2;
|
|||
|
//
|
|||
|
// greenPanel
|
|||
|
//
|
|||
|
this.greenPanel.AllowDrop = true;
|
|||
|
this.greenPanel.BackColor = System.Drawing.Color.Green;
|
|||
|
this.greenPanel.Location = new System.Drawing.Point(62, 27);
|
|||
|
this.greenPanel.Name = "greenPanel";
|
|||
|
this.greenPanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.greenPanel.TabIndex = 1;
|
|||
|
//
|
|||
|
// purplePanel
|
|||
|
//
|
|||
|
this.purplePanel.AllowDrop = true;
|
|||
|
this.purplePanel.BackColor = System.Drawing.Color.Purple;
|
|||
|
this.purplePanel.Location = new System.Drawing.Point(174, 83);
|
|||
|
this.purplePanel.Name = "purplePanel";
|
|||
|
this.purplePanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.purplePanel.TabIndex = 3;
|
|||
|
//
|
|||
|
// blackPanel
|
|||
|
//
|
|||
|
this.blackPanel.AllowDrop = true;
|
|||
|
this.blackPanel.BackColor = System.Drawing.Color.Black;
|
|||
|
this.blackPanel.Location = new System.Drawing.Point(118, 83);
|
|||
|
this.blackPanel.Name = "blackPanel";
|
|||
|
this.blackPanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.blackPanel.TabIndex = 2;
|
|||
|
//
|
|||
|
// greyPanel
|
|||
|
//
|
|||
|
this.greyPanel.AllowDrop = true;
|
|||
|
this.greyPanel.BackColor = System.Drawing.Color.Silver;
|
|||
|
this.greyPanel.Location = new System.Drawing.Point(62, 83);
|
|||
|
this.greyPanel.Name = "greyPanel";
|
|||
|
this.greyPanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.greyPanel.TabIndex = 1;
|
|||
|
//
|
|||
|
// whitePanel
|
|||
|
//
|
|||
|
this.whitePanel.AllowDrop = true;
|
|||
|
this.whitePanel.BackColor = System.Drawing.Color.White;
|
|||
|
this.whitePanel.Location = new System.Drawing.Point(6, 83);
|
|||
|
this.whitePanel.Name = "whitePanel";
|
|||
|
this.whitePanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.whitePanel.TabIndex = 1;
|
|||
|
//
|
|||
|
// redPanel
|
|||
|
//
|
|||
|
this.redPanel.AllowDrop = true;
|
|||
|
this.redPanel.BackColor = System.Drawing.Color.Red;
|
|||
|
this.redPanel.Location = new System.Drawing.Point(6, 27);
|
|||
|
this.redPanel.Name = "redPanel";
|
|||
|
this.redPanel.Size = new System.Drawing.Size(50, 51);
|
|||
|
this.redPanel.TabIndex = 0;
|
|||
|
//
|
|||
|
// airfighterLabel
|
|||
|
//
|
|||
|
this.airfighterLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.airfighterLabel.Location = new System.Drawing.Point(297, 169);
|
|||
|
this.airfighterLabel.Name = "airfighterLabel";
|
|||
|
this.airfighterLabel.Size = new System.Drawing.Size(120, 50);
|
|||
|
this.airfighterLabel.TabIndex = 9;
|
|||
|
this.airfighterLabel.Text = "Продвинутый";
|
|||
|
this.airfighterLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
//
|
|||
|
// airplaneLabel
|
|||
|
//
|
|||
|
this.airplaneLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.airplaneLabel.Location = new System.Drawing.Point(171, 169);
|
|||
|
this.airplaneLabel.Name = "airplaneLabel";
|
|||
|
this.airplaneLabel.Size = new System.Drawing.Size(120, 50);
|
|||
|
this.airplaneLabel.TabIndex = 8;
|
|||
|
this.airplaneLabel.Text = "Простой";
|
|||
|
this.airplaneLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
//
|
|||
|
// checkwing
|
|||
|
//
|
|||
|
this.checkwing.AutoSize = true;
|
|||
|
this.checkwing.Location = new System.Drawing.Point(6, 163);
|
|||
|
this.checkwing.Name = "checkwing";
|
|||
|
this.checkwing.Size = new System.Drawing.Size(183, 24);
|
|||
|
this.checkwing.TabIndex = 5;
|
|||
|
this.checkwing.Text = "наличие доп крыльев";
|
|||
|
this.checkwing.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// checkracket
|
|||
|
//
|
|||
|
this.checkracket.AutoSize = true;
|
|||
|
this.checkracket.Location = new System.Drawing.Point(6, 132);
|
|||
|
this.checkracket.Name = "checkracket";
|
|||
|
this.checkracket.Size = new System.Drawing.Size(132, 24);
|
|||
|
this.checkracket.TabIndex = 4;
|
|||
|
this.checkracket.Text = "наличие ракет";
|
|||
|
this.checkracket.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// numericWeight
|
|||
|
//
|
|||
|
this.numericWeight.Location = new System.Drawing.Point(6, 99);
|
|||
|
this.numericWeight.Maximum = new decimal(new int[] {
|
|||
|
1000,
|
|||
|
0,
|
|||
|
0,
|
|||
|
0});
|
|||
|
this.numericWeight.Minimum = new decimal(new int[] {
|
|||
|
100,
|
|||
|
0,
|
|||
|
0,
|
|||
|
0});
|
|||
|
this.numericWeight.Name = "numericWeight";
|
|||
|
this.numericWeight.Size = new System.Drawing.Size(150, 27);
|
|||
|
this.numericWeight.TabIndex = 3;
|
|||
|
this.numericWeight.Value = new decimal(new int[] {
|
|||
|
100,
|
|||
|
0,
|
|||
|
0,
|
|||
|
0});
|
|||
|
//
|
|||
|
// numericSpeed
|
|||
|
//
|
|||
|
this.numericSpeed.Location = new System.Drawing.Point(6, 45);
|
|||
|
this.numericSpeed.Maximum = new decimal(new int[] {
|
|||
|
1000,
|
|||
|
0,
|
|||
|
0,
|
|||
|
0});
|
|||
|
this.numericSpeed.Minimum = new decimal(new int[] {
|
|||
|
100,
|
|||
|
0,
|
|||
|
0,
|
|||
|
0});
|
|||
|
this.numericSpeed.Name = "numericSpeed";
|
|||
|
this.numericSpeed.Size = new System.Drawing.Size(150, 27);
|
|||
|
this.numericSpeed.TabIndex = 2;
|
|||
|
this.numericSpeed.Value = new decimal(new int[] {
|
|||
|
100,
|
|||
|
0,
|
|||
|
0,
|
|||
|
0});
|
|||
|
//
|
|||
|
// weightLabel
|
|||
|
//
|
|||
|
this.weightLabel.AutoSize = true;
|
|||
|
this.weightLabel.Location = new System.Drawing.Point(6, 76);
|
|||
|
this.weightLabel.Name = "weightLabel";
|
|||
|
this.weightLabel.Size = new System.Drawing.Size(33, 20);
|
|||
|
this.weightLabel.TabIndex = 1;
|
|||
|
this.weightLabel.Text = "Вес";
|
|||
|
//
|
|||
|
// speedLabel
|
|||
|
//
|
|||
|
this.speedLabel.AutoSize = true;
|
|||
|
this.speedLabel.Location = new System.Drawing.Point(6, 23);
|
|||
|
this.speedLabel.Name = "speedLabel";
|
|||
|
this.speedLabel.Size = new System.Drawing.Size(73, 20);
|
|||
|
this.speedLabel.TabIndex = 0;
|
|||
|
this.speedLabel.Text = "Скорость";
|
|||
|
//
|
|||
|
// allowPanel
|
|||
|
//
|
|||
|
this.allowPanel.AllowDrop = true;
|
|||
|
this.allowPanel.Controls.Add(this.addColorLabel);
|
|||
|
this.allowPanel.Controls.Add(this.pictureBox);
|
|||
|
this.allowPanel.Controls.Add(this.colorLabel);
|
|||
|
this.allowPanel.Location = new System.Drawing.Point(463, 12);
|
|||
|
this.allowPanel.Name = "allowPanel";
|
|||
|
this.allowPanel.Size = new System.Drawing.Size(819, 642);
|
|||
|
this.allowPanel.TabIndex = 1;
|
|||
|
this.allowPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.allowPanel_DragDrop);
|
|||
|
this.allowPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.allowPanel_DragEnter);
|
|||
|
//
|
|||
|
// addColorLabel
|
|||
|
//
|
|||
|
this.addColorLabel.AllowDrop = true;
|
|||
|
this.addColorLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.addColorLabel.Location = new System.Drawing.Point(470, 17);
|
|||
|
this.addColorLabel.Name = "addColorLabel";
|
|||
|
this.addColorLabel.Size = new System.Drawing.Size(104, 33);
|
|||
|
this.addColorLabel.TabIndex = 2;
|
|||
|
this.addColorLabel.Text = "Доп. цвет";
|
|||
|
this.addColorLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
this.addColorLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.addColorLabel_DragDrop);
|
|||
|
this.addColorLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.colorLabel_DragEnter);
|
|||
|
//
|
|||
|
// pictureBox
|
|||
|
//
|
|||
|
this.pictureBox.Location = new System.Drawing.Point(17, 51);
|
|||
|
this.pictureBox.Name = "pictureBox";
|
|||
|
this.pictureBox.Size = new System.Drawing.Size(787, 575);
|
|||
|
this.pictureBox.TabIndex = 0;
|
|||
|
this.pictureBox.TabStop = false;
|
|||
|
//
|
|||
|
// colorLabel
|
|||
|
//
|
|||
|
this.colorLabel.AllowDrop = true;
|
|||
|
this.colorLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.colorLabel.Location = new System.Drawing.Point(172, 10);
|
|||
|
this.colorLabel.Name = "colorLabel";
|
|||
|
this.colorLabel.Size = new System.Drawing.Size(104, 33);
|
|||
|
this.colorLabel.TabIndex = 1;
|
|||
|
this.colorLabel.Text = "Цвет";
|
|||
|
this.colorLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
this.colorLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.colorLabel_DragDrop);
|
|||
|
this.colorLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.colorLabel_DragEnter);
|
|||
|
//
|
|||
|
// addButton
|
|||
|
//
|
|||
|
this.addButton.Location = new System.Drawing.Point(710, 660);
|
|||
|
this.addButton.Name = "addButton";
|
|||
|
this.addButton.Size = new System.Drawing.Size(94, 29);
|
|||
|
this.addButton.TabIndex = 2;
|
|||
|
this.addButton.Text = "Добавить";
|
|||
|
this.addButton.UseVisualStyleBackColor = true;
|
|||
|
this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
|||
|
//
|
|||
|
// cancelButton
|
|||
|
//
|
|||
|
this.cancelButton.Location = new System.Drawing.Point(1042, 660);
|
|||
|
this.cancelButton.Name = "cancelButton";
|
|||
|
this.cancelButton.Size = new System.Drawing.Size(94, 29);
|
|||
|
this.cancelButton.TabIndex = 3;
|
|||
|
this.cancelButton.Text = "Отменить";
|
|||
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// FormAirplaneConfig
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(1294, 701);
|
|||
|
this.Controls.Add(this.cancelButton);
|
|||
|
this.Controls.Add(this.addButton);
|
|||
|
this.Controls.Add(this.allowPanel);
|
|||
|
this.Controls.Add(this.configGroupBox);
|
|||
|
this.Name = "FormAirplaneConfig";
|
|||
|
this.Text = "FormMonorailConfig";
|
|||
|
this.configGroupBox.ResumeLayout(false);
|
|||
|
this.configGroupBox.PerformLayout();
|
|||
|
this.colorGroupBox.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.numericWeight)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.numericSpeed)).EndInit();
|
|||
|
this.allowPanel.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private GroupBox configGroupBox;
|
|||
|
private CheckBox checkracket;
|
|||
|
private NumericUpDown numericWeight;
|
|||
|
private NumericUpDown numericSpeed;
|
|||
|
private Label weightLabel;
|
|||
|
private Label speedLabel;
|
|||
|
private CheckBox checkwing;
|
|||
|
private GroupBox colorGroupBox;
|
|||
|
private Panel panel5;
|
|||
|
private Panel panel4;
|
|||
|
private Panel panel3;
|
|||
|
private Panel panel2;
|
|||
|
private Panel redPanel;
|
|||
|
private Panel purplePanel;
|
|||
|
private Panel blackPanel;
|
|||
|
private Panel greyPanel;
|
|||
|
private Panel whitePanel;
|
|||
|
private Label airfighterLabel;
|
|||
|
private Label airplaneLabel;
|
|||
|
private Panel yellowPanel;
|
|||
|
private Panel bluePanel;
|
|||
|
private Panel greenPanel;
|
|||
|
private Panel allowPanel;
|
|||
|
private PictureBox pictureBox;
|
|||
|
private Label addColorLabel;
|
|||
|
private Label colorLabel;
|
|||
|
private Button addButton;
|
|||
|
private Button cancelButton;
|
|||
|
}
|
|||
|
}
|