+++
This commit is contained in:
68
DroneSimulator/FormMain.Designer.cs
generated
68
DroneSimulator/FormMain.Designer.cs
generated
@ -155,7 +155,9 @@
|
||||
radioButton_Real = new RadioButton();
|
||||
tabPage_Area = new TabPage();
|
||||
groupBox4 = new GroupBox();
|
||||
numericUpDown_Area_Wind_Resist = new NumericUpDown();
|
||||
numericUpDown_Area_Wind_RotResist = new NumericUpDown();
|
||||
label65 = new Label();
|
||||
numericUpDown_Area_Wind_PosResist = new NumericUpDown();
|
||||
label64 = new Label();
|
||||
label63 = new Label();
|
||||
numericUpDown_Area_Wind_Density = new NumericUpDown();
|
||||
@ -234,7 +236,8 @@
|
||||
groupBox2.SuspendLayout();
|
||||
tabPage_Area.SuspendLayout();
|
||||
groupBox4.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Resist).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_RotResist).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_PosResist).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Density).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Speed_To).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Direction).BeginInit();
|
||||
@ -1629,7 +1632,9 @@
|
||||
//
|
||||
// groupBox4
|
||||
//
|
||||
groupBox4.Controls.Add(numericUpDown_Area_Wind_Resist);
|
||||
groupBox4.Controls.Add(numericUpDown_Area_Wind_RotResist);
|
||||
groupBox4.Controls.Add(label65);
|
||||
groupBox4.Controls.Add(numericUpDown_Area_Wind_PosResist);
|
||||
groupBox4.Controls.Add(label64);
|
||||
groupBox4.Controls.Add(label63);
|
||||
groupBox4.Controls.Add(numericUpDown_Area_Wind_Density);
|
||||
@ -1646,31 +1651,51 @@
|
||||
groupBox4.Dock = DockStyle.Top;
|
||||
groupBox4.Location = new Point(0, 53);
|
||||
groupBox4.Name = "groupBox4";
|
||||
groupBox4.Size = new Size(210, 150);
|
||||
groupBox4.Size = new Size(210, 177);
|
||||
groupBox4.TabIndex = 1;
|
||||
groupBox4.TabStop = false;
|
||||
groupBox4.Text = "Air and Wind";
|
||||
//
|
||||
// numericUpDown_Area_Wind_Resist
|
||||
// numericUpDown_Area_Wind_RotResist
|
||||
//
|
||||
numericUpDown_Area_Wind_Resist.DecimalPlaces = 3;
|
||||
numericUpDown_Area_Wind_Resist.Increment = new decimal(new int[] { 1, 0, 0, 131072 });
|
||||
numericUpDown_Area_Wind_Resist.Location = new Point(63, 116);
|
||||
numericUpDown_Area_Wind_Resist.Maximum = new decimal(new int[] { 1, 0, 0, 0 });
|
||||
numericUpDown_Area_Wind_Resist.Name = "numericUpDown_Area_Wind_Resist";
|
||||
numericUpDown_Area_Wind_Resist.Size = new Size(60, 23);
|
||||
numericUpDown_Area_Wind_Resist.TabIndex = 13;
|
||||
numericUpDown_Area_Wind_Resist.Value = new decimal(new int[] { 1, 0, 0, 131072 });
|
||||
numericUpDown_Area_Wind_Resist.ValueChanged += numericUpDown_Area_Wind_Update;
|
||||
numericUpDown_Area_Wind_RotResist.DecimalPlaces = 3;
|
||||
numericUpDown_Area_Wind_RotResist.Increment = new decimal(new int[] { 1, 0, 0, 65536 });
|
||||
numericUpDown_Area_Wind_RotResist.Location = new Point(89, 145);
|
||||
numericUpDown_Area_Wind_RotResist.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
|
||||
numericUpDown_Area_Wind_RotResist.Name = "numericUpDown_Area_Wind_RotResist";
|
||||
numericUpDown_Area_Wind_RotResist.Size = new Size(60, 23);
|
||||
numericUpDown_Area_Wind_RotResist.TabIndex = 15;
|
||||
numericUpDown_Area_Wind_RotResist.Value = new decimal(new int[] { 1, 0, 0, 0 });
|
||||
numericUpDown_Area_Wind_RotResist.ValueChanged += numericUpDown_Area_Wind_Update;
|
||||
//
|
||||
// label65
|
||||
//
|
||||
label65.AutoSize = true;
|
||||
label65.Location = new Point(6, 147);
|
||||
label65.Name = "label65";
|
||||
label65.Size = new Size(77, 15);
|
||||
label65.TabIndex = 14;
|
||||
label65.Text = "Rotate Resist:";
|
||||
//
|
||||
// numericUpDown_Area_Wind_PosResist
|
||||
//
|
||||
numericUpDown_Area_Wind_PosResist.DecimalPlaces = 3;
|
||||
numericUpDown_Area_Wind_PosResist.Location = new Point(89, 116);
|
||||
numericUpDown_Area_Wind_PosResist.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
|
||||
numericUpDown_Area_Wind_PosResist.Name = "numericUpDown_Area_Wind_PosResist";
|
||||
numericUpDown_Area_Wind_PosResist.Size = new Size(60, 23);
|
||||
numericUpDown_Area_Wind_PosResist.TabIndex = 13;
|
||||
numericUpDown_Area_Wind_PosResist.Value = new decimal(new int[] { 100, 0, 0, 0 });
|
||||
numericUpDown_Area_Wind_PosResist.ValueChanged += numericUpDown_Area_Wind_Update;
|
||||
//
|
||||
// label64
|
||||
//
|
||||
label64.AutoSize = true;
|
||||
label64.Location = new Point(13, 118);
|
||||
label64.Location = new Point(6, 118);
|
||||
label64.Name = "label64";
|
||||
label64.Size = new Size(40, 15);
|
||||
label64.Size = new Size(73, 15);
|
||||
label64.TabIndex = 12;
|
||||
label64.Text = "Resist:";
|
||||
label64.Text = "Move Resist:";
|
||||
//
|
||||
// label63
|
||||
//
|
||||
@ -1777,7 +1802,7 @@
|
||||
// checkBox_Area_Wind_Enable
|
||||
//
|
||||
checkBox_Area_Wind_Enable.AutoSize = true;
|
||||
checkBox_Area_Wind_Enable.Location = new Point(165, 125);
|
||||
checkBox_Area_Wind_Enable.Location = new Point(165, 149);
|
||||
checkBox_Area_Wind_Enable.Name = "checkBox_Area_Wind_Enable";
|
||||
checkBox_Area_Wind_Enable.Size = new Size(39, 19);
|
||||
checkBox_Area_Wind_Enable.TabIndex = 0;
|
||||
@ -1987,7 +2012,8 @@
|
||||
tabPage_Area.ResumeLayout(false);
|
||||
groupBox4.ResumeLayout(false);
|
||||
groupBox4.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Resist).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_RotResist).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_PosResist).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Density).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Speed_To).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)numericUpDown_Area_Wind_Direction).EndInit();
|
||||
@ -2151,7 +2177,9 @@
|
||||
private Label label63;
|
||||
private NumericUpDown numericUpDown_Area_Wind_Density;
|
||||
private Label label62;
|
||||
private NumericUpDown numericUpDown_Area_Wind_Resist;
|
||||
private NumericUpDown numericUpDown_Area_Wind_PosResist;
|
||||
private Label label64;
|
||||
private NumericUpDown numericUpDown_Area_Wind_RotResist;
|
||||
private Label label65;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user