예제 #1
0
            public void Test1()
            {
                var form = new Form3();

                var wavestore = new WaveformStorage();

                SignalCreator.TestSignal(wavestore.Waveforms);
                Waveform waveform      = wavestore.Waveforms[0];
                var      complexSignal = waveform.FftBruteFroce();
                var      sepectrum     = waveform.GetPowerSpectrum();
                var      chart         = form.chart1;


                /*---------*/
                chart = form.chart1;
                chart.Series.Clear();
                chart.Titles.Clear();
                chart.Titles.Add("Power spectrum");
                var series = chart.Series.Add("");

                series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
                for (int i = 0; i < complexSignal.Length; i++)
                {
                    series.Points.Add(sepectrum[i]);
                }

                var bins = waveform.GetFftBins();

                var width = chart.Width;

                Debug.Write("Width:" + width);

                for (int i = 0; i < bins.Length; i++)
                {
                    var cl = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
                    cl.FromPosition = i + 1.5;
                    cl.ToPosition   = i + 2.5;
                    cl.Text         = bins[i].ToString("0.00");

                    chart.ChartAreas[0].AxisX.CustomLabels.Add(cl);
                }
                form.ShowDialog();
            }
예제 #2
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.NCheckGraph = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.NCheckGraph)).BeginInit();
     this.SuspendLayout();
     //
     // NCheckGraph
     //
     customLabel1.Text = "Monday";
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.Name = "ChartArea1";
     this.NCheckGraph.ChartAreas.Add(chartArea1);
     this.NCheckGraph.Location = new System.Drawing.Point(12, 12);
     this.NCheckGraph.Name     = "NCheckGraph";
     this.NCheckGraph.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SeaGreen;
     series1.ChartArea         = "ChartArea1";
     series1.Name = "Series1";
     this.NCheckGraph.Series.Add(series1);
     this.NCheckGraph.Size     = new System.Drawing.Size(652, 311);
     this.NCheckGraph.TabIndex = 0;
     this.NCheckGraph.Text     = "Number of Checkins by Day of Week";
     //
     // View_Checkins
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(790, 436);
     this.Controls.Add(this.NCheckGraph);
     this.Name = "View_Checkins";
     this.Text = "View_Checkins";
     ((System.ComponentModel.ISupportInitialize)(this.NCheckGraph)).EndInit();
     this.ResumeLayout(false);
 }
예제 #3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(10001D, 132892D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(20001D, 285769D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(30001D, 446196D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint5   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(40001D, 611525D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint6   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(50001D, 780499D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint7   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(80001D, 1303034D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint8   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(90001D, 1481205D);
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     customLabel1.Text = "N";
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.Interval            = 10000D;
     chartArea1.AxisX.LineColor           = System.Drawing.Color.Transparent;
     chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.Gainsboro;
     chartArea1.AxisX.Maximum             = 100000D;
     chartArea1.AxisX.Minimum             = 0D;
     chartArea1.AxisX.Title                      = "N чисел у масиві";
     chartArea1.AxisX2.Enabled                   = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX2.Interval                  = 10000D;
     chartArea1.AxisX2.LineColor                 = System.Drawing.Color.Transparent;
     chartArea1.AxisX2.MajorGrid.LineColor       = System.Drawing.Color.Gainsboro;
     chartArea1.AxisX2.Maximum                   = 100001D;
     chartArea1.AxisX2.Minimum                   = 0D;
     chartArea1.AxisX2.ScaleBreakStyle.Enabled   = true;
     chartArea1.AxisX2.ScaleBreakStyle.LineColor = System.Drawing.Color.Transparent;
     chartArea1.AxisY.LineColor                  = System.Drawing.Color.Transparent;
     chartArea1.AxisY.MajorGrid.LineColor        = System.Drawing.Color.Gainsboro;
     chartArea1.AxisY.Title                      = "Мілісекунд";
     chartArea1.AxisY2.Interval                  = 200000D;
     chartArea1.AxisY2.LineColor                 = System.Drawing.Color.Transparent;
     chartArea1.AxisY2.MajorGrid.LineColor       = System.Drawing.Color.Gainsboro;
     chartArea1.AxisY2.Maximum                   = 2000000D;
     chartArea1.AxisY2.Minimum                   = 0D;
     chartArea1.AxisY2.ScaleBreakStyle.LineColor = System.Drawing.Color.Transparent;
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(12, 12);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.Legend       = "Legend1";
     series1.Name         = "Series1";
     series2.ChartArea    = "ChartArea1";
     series2.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series2.Legend       = "Legend1";
     series2.Name         = "Теоретично";
     series2.Points.Add(dataPoint1);
     series2.Points.Add(dataPoint2);
     series2.Points.Add(dataPoint3);
     series2.Points.Add(dataPoint4);
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.Points.Add(dataPoint8);
     series2.XAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     series2.YAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(800, 600);
     this.chart1.TabIndex = 0;
     this.chart1.Click   += new System.EventHandler(this.chart1_Click);
     //
     // Form2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(832, 623);
     this.Controls.Add(this.chart1);
     this.Name         = "Form2";
     this.Text         = "Графік";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form2_FormClosing);
     this.Load        += new System.EventHandler(this.Form2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #4
0
            public void Test1()
            {
                var form  = new Form1();
                var form2 = new Form2();

                var wavestore = new WaveformStorage();

                SignalCreator.TestSignal(wavestore.Waveforms);
                Waveform waveform      = wavestore.Waveforms[0];
                var      complexSignal = waveform.FftBruteFroce();
                var      sepectrum     = waveform.GetPowerSpectrum();

                /*---------*/
                var chart = form.chart1;

                chart.Series.Clear();
                chart.Titles.Clear();
                chart.Titles.Add("Signals");
                var series = chart.Series.Add("");

                series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
                for (int i = 0; i < waveform.YArray.Length; i++)
                {
                    series.Points.Add(waveform.YArray[i]);
                }

                /*---------*/
                chart = form.chart2;
                chart.Series.Clear();
                chart.Titles.Clear();
                chart.Titles.Add("FFT-Imaginary");
                series           = chart.Series.Add("");
                series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
                for (int i = 0; i < complexSignal.Length; i++)
                {
                    series.Points.Add(complexSignal[i].Imaginary);
                }

                /*---------*/
                chart = form.chart3;
                chart.Series.Clear();
                chart.Titles.Clear();
                chart.Titles.Add("FFT-Real");
                series           = chart.Series.Add("");
                series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
                for (int i = 0; i < complexSignal.Length; i++)
                {
                    series.Points.Add(complexSignal[i].Real);
                }

                /*---------*/
                chart = form.chart4;
                chart.Series.Clear();
                chart.Titles.Clear();
                chart.Titles.Add("Power spectrum");
                series           = chart.Series.Add("");
                series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
                for (int i = 0; i < complexSignal.Length; i++)
                {
                    series.Points.Add(sepectrum[i]);
                }

                var bins = waveform.GetFftBins();

                for (int i = 0; i < bins.Length; i++)
                {
                    var cl = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
                    cl.FromPosition = i + 1.5;
                    cl.ToPosition   = i + 0.5;
                    cl.Text         = bins[i].ToString("0.00");

                    chart.ChartAreas[0].AxisX.CustomLabels.Add(cl);
                }
                form2.Show();
                form.ShowDialog();
            }
예제 #5
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Data.DataColumn startNumber;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea4 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series10 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series11 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series12 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea5 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series13 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series14 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series15 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series16 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series17 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series18 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.dataGrid = new System.Windows.Forms.DataGridView();
            this.Time = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Serial = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.XModMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.YModMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ZModMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.MaxFlexX = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.MaxFlexY = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.MaxFlexZ = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.maxValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.minXValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.midValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.maxYValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.minYValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.midYValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.maxXValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.minZValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.midZValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.XPeakToPeakSelectionX10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.YPeakToPeakSelectionX10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ZPeakToPeakSelectionX10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.XRMS = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.YRMS = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ZRMS = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SelectedStart = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SelectedEnd = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.label1 = new System.Windows.Forms.Label();
            this.closeButton = new System.Windows.Forms.Button();
            this.startButton = new System.Windows.Forms.Button();
            this.timerTextBox = new System.Windows.Forms.MaskedTextBox();
            this.stopButton = new System.Windows.Forms.Button();
            this.label14 = new System.Windows.Forms.Label();
            this.clearButton = new System.Windows.Forms.Button();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.chartX = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chartY = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chartZ = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label2 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.DataSetValues = new System.Data.DataSet();
            this.AllValues = new System.Data.DataTable();
            this.XValue = new System.Data.DataColumn();
            this.YValue = new System.Data.DataColumn();
            this.ZValue = new System.Data.DataColumn();
            this.Numb = new System.Data.DataColumn();
            this.TimeValue = new System.Data.DataColumn();
            this.dataColumn1 = new System.Data.DataColumn();
            this.comPort = new System.IO.Ports.SerialPort(this.components);
            this.timer = new System.Windows.Forms.Timer(this.components);
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.файлToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.сохранитьКакXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.загрузитьИзXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.экспортВCSVToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.allSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.какПользоватьсяToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.оПрограммеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
            this.saveAsXMLDialog = new System.Windows.Forms.SaveFileDialog();
            this.saveAsCSVDialog = new System.Windows.Forms.SaveFileDialog();
            this.openXMLDialog = new System.Windows.Forms.OpenFileDialog();
            this.colorDialog1 = new System.Windows.Forms.ColorDialog();
            startNumber = new System.Data.DataColumn();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartY)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartZ)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DataSetValues)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.AllValues)).BeginInit();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // startNumber
            // 
            startNumber.ColumnName = "startNumber";
            startNumber.DataType = typeof(short);
            // 
            // splitContainer1
            // 
            resources.ApplyResources(this.splitContainer1, "splitContainer1");
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
            this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
            // 
            // splitContainer1.Panel2
            // 
            resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
            this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel2);
            // 
            // splitContainer2
            // 
            resources.ApplyResources(this.splitContainer2, "splitContainer2");
            this.splitContainer2.Name = "splitContainer2";
            // 
            // splitContainer2.Panel1
            // 
            resources.ApplyResources(this.splitContainer2.Panel1, "splitContainer2.Panel1");
            this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel1);
            // 
            // splitContainer2.Panel2
            // 
            resources.ApplyResources(this.splitContainer2.Panel2, "splitContainer2.Panel2");
            this.splitContainer2.Panel2.Controls.Add(this.closeButton);
            this.splitContainer2.Panel2.Controls.Add(this.startButton);
            this.splitContainer2.Panel2.Controls.Add(this.timerTextBox);
            this.splitContainer2.Panel2.Controls.Add(this.stopButton);
            this.splitContainer2.Panel2.Controls.Add(this.label14);
            this.splitContainer2.Panel2.Controls.Add(this.clearButton);
            // 
            // tableLayoutPanel1
            // 
            resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
            this.tableLayoutPanel1.Controls.Add(this.dataGrid, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            // 
            // dataGrid
            // 
            resources.ApplyResources(this.dataGrid, "dataGrid");
            this.dataGrid.AllowUserToAddRows = false;
            this.dataGrid.AllowUserToDeleteRows = false;
            this.dataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Time,
            this.Serial,
            this.Number,
            this.XModMax,
            this.YModMax,
            this.ZModMax,
            this.MaxFlexX,
            this.MaxFlexY,
            this.MaxFlexZ,
            this.maxValue,
            this.minXValue,
            this.midValue,
            this.maxYValue,
            this.minYValue,
            this.midYValue,
            this.maxXValue,
            this.minZValue,
            this.midZValue,
            this.XPeakToPeakSelectionX10,
            this.YPeakToPeakSelectionX10,
            this.ZPeakToPeakSelectionX10,
            this.XRMS,
            this.YRMS,
            this.ZRMS,
            this.SelectedStart,
            this.SelectedEnd});
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.GradientActiveCaption;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGrid.DefaultCellStyle = dataGridViewCellStyle2;
            this.dataGrid.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
            this.dataGrid.MultiSelect = false;
            this.dataGrid.Name = "dataGrid";
            this.dataGrid.RowHeadersVisible = false;
            this.dataGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dataGrid.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGrid_CellMouseClick);
            // 
            // Time
            // 
            this.Time.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.Time.FillWeight = 150F;
            resources.ApplyResources(this.Time, "Time");
            this.Time.Name = "Time";
            // 
            // Serial
            // 
            resources.ApplyResources(this.Serial, "Serial");
            this.Serial.Name = "Serial";
            // 
            // Number
            // 
            this.Number.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            resources.ApplyResources(this.Number, "Number");
            this.Number.Name = "Number";
            // 
            // XModMax
            // 
            this.XModMax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.XModMax, "XModMax");
            this.XModMax.Name = "XModMax";
            // 
            // YModMax
            // 
            this.YModMax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.YModMax, "YModMax");
            this.YModMax.Name = "YModMax";
            // 
            // ZModMax
            // 
            this.ZModMax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.ZModMax, "ZModMax");
            this.ZModMax.Name = "ZModMax";
            // 
            // MaxFlexX
            // 
            this.MaxFlexX.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.MaxFlexX, "MaxFlexX");
            this.MaxFlexX.Name = "MaxFlexX";
            // 
            // MaxFlexY
            // 
            this.MaxFlexY.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.MaxFlexY, "MaxFlexY");
            this.MaxFlexY.Name = "MaxFlexY";
            // 
            // MaxFlexZ
            // 
            this.MaxFlexZ.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.MaxFlexZ, "MaxFlexZ");
            this.MaxFlexZ.Name = "MaxFlexZ";
            // 
            // maxValue
            // 
            resources.ApplyResources(this.maxValue, "maxValue");
            this.maxValue.Name = "maxValue";
            // 
            // minXValue
            // 
            resources.ApplyResources(this.minXValue, "minXValue");
            this.minXValue.Name = "minXValue";
            // 
            // midValue
            // 
            resources.ApplyResources(this.midValue, "midValue");
            this.midValue.Name = "midValue";
            // 
            // maxYValue
            // 
            resources.ApplyResources(this.maxYValue, "maxYValue");
            this.maxYValue.Name = "maxYValue";
            // 
            // minYValue
            // 
            resources.ApplyResources(this.minYValue, "minYValue");
            this.minYValue.Name = "minYValue";
            // 
            // midYValue
            // 
            resources.ApplyResources(this.midYValue, "midYValue");
            this.midYValue.Name = "midYValue";
            // 
            // maxXValue
            // 
            resources.ApplyResources(this.maxXValue, "maxXValue");
            this.maxXValue.Name = "maxXValue";
            // 
            // minZValue
            // 
            resources.ApplyResources(this.minZValue, "minZValue");
            this.minZValue.Name = "minZValue";
            // 
            // midZValue
            // 
            resources.ApplyResources(this.midZValue, "midZValue");
            this.midZValue.Name = "midZValue";
            // 
            // XPeakToPeakSelectionX10
            // 
            this.XPeakToPeakSelectionX10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.XPeakToPeakSelectionX10, "XPeakToPeakSelectionX10");
            this.XPeakToPeakSelectionX10.Name = "XPeakToPeakSelectionX10";
            // 
            // YPeakToPeakSelectionX10
            // 
            this.YPeakToPeakSelectionX10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.YPeakToPeakSelectionX10, "YPeakToPeakSelectionX10");
            this.YPeakToPeakSelectionX10.Name = "YPeakToPeakSelectionX10";
            // 
            // ZPeakToPeakSelectionX10
            // 
            this.ZPeakToPeakSelectionX10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.ZPeakToPeakSelectionX10, "ZPeakToPeakSelectionX10");
            this.ZPeakToPeakSelectionX10.Name = "ZPeakToPeakSelectionX10";
            // 
            // XRMS
            // 
            this.XRMS.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.XRMS, "XRMS");
            this.XRMS.Name = "XRMS";
            // 
            // YRMS
            // 
            this.YRMS.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.YRMS, "YRMS");
            this.YRMS.Name = "YRMS";
            // 
            // ZRMS
            // 
            this.ZRMS.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.ZRMS, "ZRMS");
            this.ZRMS.Name = "ZRMS";
            // 
            // SelectedStart
            // 
            resources.ApplyResources(this.SelectedStart, "SelectedStart");
            this.SelectedStart.Name = "SelectedStart";
            // 
            // SelectedEnd
            // 
            resources.ApplyResources(this.SelectedEnd, "SelectedEnd");
            this.SelectedEnd.Name = "SelectedEnd";
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            this.label1.Click += new System.EventHandler(this.label1_Click_1);
            // 
            // closeButton
            // 
            resources.ApplyResources(this.closeButton, "closeButton");
            this.closeButton.Name = "closeButton";
            this.closeButton.UseVisualStyleBackColor = true;
            this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
            // 
            // startButton
            // 
            resources.ApplyResources(this.startButton, "startButton");
            this.startButton.Name = "startButton";
            this.startButton.UseVisualStyleBackColor = true;
            this.startButton.Click += new System.EventHandler(this.startButton_Click);
            // 
            // timerTextBox
            // 
            resources.ApplyResources(this.timerTextBox, "timerTextBox");
            this.timerTextBox.Name = "timerTextBox";
            // 
            // stopButton
            // 
            resources.ApplyResources(this.stopButton, "stopButton");
            this.stopButton.Name = "stopButton";
            this.stopButton.UseVisualStyleBackColor = true;
            this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
            // 
            // label14
            // 
            resources.ApplyResources(this.label14, "label14");
            this.label14.Name = "label14";
            // 
            // clearButton
            // 
            resources.ApplyResources(this.clearButton, "clearButton");
            this.clearButton.Name = "clearButton";
            this.clearButton.UseVisualStyleBackColor = true;
            this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
            // 
            // tableLayoutPanel2
            // 
            resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
            this.tableLayoutPanel2.Controls.Add(this.chartX, 0, 1);
            this.tableLayoutPanel2.Controls.Add(this.chartY, 0, 3);
            this.tableLayoutPanel2.Controls.Add(this.chartZ, 0, 5);
            this.tableLayoutPanel2.Controls.Add(this.label2, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.label4, 0, 4);
            this.tableLayoutPanel2.Controls.Add(this.label3, 0, 2);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            // 
            // chartX
            // 
            resources.ApplyResources(this.chartX, "chartX");
            this.chartX.BorderlineColor = System.Drawing.Color.DimGray;
            this.chartX.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea4.AxisX.IsLabelAutoFit = false;
            chartArea4.AxisX.LabelAutoFitMaxFontSize = 8;
            chartArea4.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea4.AxisX.ScaleView.Size = 300D;
            chartArea4.AxisX.ScaleView.Zoomable = false;
            chartArea4.AxisX.ScrollBar.BackColor = System.Drawing.Color.White;
            chartArea4.AxisX.ScrollBar.ButtonColor = System.Drawing.Color.Gray;
            chartArea4.AxisX.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Horizontal;
            chartArea4.AxisX.Title = "Time( ss)";
            chartArea4.AxisX.TitleAlignment = System.Drawing.StringAlignment.Far;
            chartArea4.AxisX.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            customLabel2.MarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
            customLabel2.Text = "1";
            chartArea4.AxisX2.CustomLabels.Add(customLabel2);
            chartArea4.AxisY.Interval = 0.1D;
            chartArea4.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea4.AxisY.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea4.AxisY.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea4.AxisY.IsStartedFromZero = false;
            chartArea4.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea4.AxisY.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea4.BackColor = System.Drawing.Color.Black;
            chartArea4.CursorX.IsUserSelectionEnabled = true;
            chartArea4.Name = "ChartArea1";
            this.chartX.ChartAreas.Add(chartArea4);
            this.chartX.Name = "chartX";
            series10.ChartArea = "ChartArea1";
            series10.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series10.Color = System.Drawing.Color.Red;
            series10.Legend = "Legend1";
            series10.LegendText = "X Max Value";
            series10.MarkerBorderColor = System.Drawing.Color.Red;
            series10.MarkerColor = System.Drawing.Color.Red;
            series10.Name = "SeriesXMax";
            series10.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Single;
            series11.ChartArea = "ChartArea1";
            series11.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series11.Color = System.Drawing.Color.Red;
            series11.Legend = "Legend1";
            series11.LegendText = "X Min Value";
            series11.Name = "SeriesXMin";
            series11.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Single;
            series12.BorderWidth = 2;
            series12.ChartArea = "ChartArea1";
            series12.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series12.Color = System.Drawing.Color.Fuchsia;
            series12.Legend = "Legend1";
            series12.LegendText = "Mid X";
            series12.Name = "SeriesXMid";
            series12.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Single;
            this.chartX.Series.Add(series10);
            this.chartX.Series.Add(series11);
            this.chartX.Series.Add(series12);
            this.chartX.SelectionRangeChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartX_SelectionRangeChanging);
            this.chartX.SelectionRangeChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartX_SelectionRangeChanged);
            // 
            // chartY
            // 
            resources.ApplyResources(this.chartY, "chartY");
            this.chartY.BorderlineColor = System.Drawing.Color.Gray;
            this.chartY.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea5.AxisX.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea5.AxisX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea5.AxisX.IsLabelAutoFit = false;
            chartArea5.AxisX.LabelAutoFitMaxFontSize = 8;
            chartArea5.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea5.AxisX.ScaleView.Zoomable = false;
            chartArea5.AxisX.ScrollBar.Enabled = false;
            chartArea5.AxisX.Title = "Time(ss)";
            chartArea5.AxisY.Interval = 0.3D;
            chartArea5.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea5.AxisY.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea5.AxisY.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea5.AxisY.IsStartedFromZero = false;
            chartArea5.BackColor = System.Drawing.Color.Black;
            chartArea5.BackSecondaryColor = System.Drawing.Color.Black;
            chartArea5.CursorX.IsUserSelectionEnabled = true;
            chartArea5.Name = "ChartArea1";
            this.chartY.ChartAreas.Add(chartArea5);
            this.chartY.Name = "chartY";
            series13.ChartArea = "ChartArea1";
            series13.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series13.Color = System.Drawing.Color.Red;
            series13.LegendText = "Y Max Value";
            series13.MarkerBorderColor = System.Drawing.Color.Red;
            series13.MarkerColor = System.Drawing.Color.Red;
            series13.Name = "SeriesYMax";
            series14.ChartArea = "ChartArea1";
            series14.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series14.Color = System.Drawing.Color.Red;
            series14.LegendText = "Y Min Value";
            series14.Name = "SeriesYMin";
            series15.BorderWidth = 2;
            series15.ChartArea = "ChartArea1";
            series15.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series15.Color = System.Drawing.Color.Fuchsia;
            series15.LegendText = "Mid Y";
            series15.Name = "SeriesYMid";
            this.chartY.Series.Add(series13);
            this.chartY.Series.Add(series14);
            this.chartY.Series.Add(series15);
            this.chartY.SelectionRangeChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartY_SelectionRangeChanging);
            this.chartY.SelectionRangeChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartY_SelectionRangeChanged);
            // 
            // chartZ
            // 
            resources.ApplyResources(this.chartZ, "chartZ");
            this.chartZ.BorderlineColor = System.Drawing.Color.Gray;
            this.chartZ.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea6.AxisX.IsLabelAutoFit = false;
            chartArea6.AxisX.LabelAutoFitMaxFontSize = 8;
            chartArea6.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea6.AxisX.ScaleView.Zoomable = false;
            chartArea6.AxisX.ScrollBar.Enabled = false;
            chartArea6.AxisY.Interval = 0.2D;
            chartArea6.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea6.AxisY.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea6.AxisY.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea6.AxisY.IsStartedFromZero = false;
            chartArea6.BackColor = System.Drawing.Color.Black;
            chartArea6.CursorX.IsUserSelectionEnabled = true;
            chartArea6.Name = "ChartArea1";
            this.chartZ.ChartAreas.Add(chartArea6);
            this.chartZ.Name = "chartZ";
            series16.ChartArea = "ChartArea1";
            series16.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series16.Color = System.Drawing.Color.Red;
            series16.LegendText = "Z Max Value";
            series16.MarkerBorderColor = System.Drawing.Color.Red;
            series16.MarkerColor = System.Drawing.Color.Red;
            series16.Name = "SeriesZMax";
            series17.ChartArea = "ChartArea1";
            series17.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series17.Color = System.Drawing.Color.Red;
            series17.LegendText = "Z Min Value";
            series17.Name = "SeriesZMin";
            series18.BorderWidth = 2;
            series18.ChartArea = "ChartArea1";
            series18.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series18.Color = System.Drawing.Color.Fuchsia;
            series18.LegendText = "Mid Z";
            series18.Name = "SeriesZMid";
            this.chartZ.Series.Add(series16);
            this.chartZ.Series.Add(series17);
            this.chartZ.Series.Add(series18);
            this.chartZ.SelectionRangeChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartZ_SelectionRangeChanging);
            this.chartZ.SelectionRangeChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartZ_SelectionRangeChanged);
            // 
            // label2
            // 
            resources.ApplyResources(this.label2, "label2");
            this.label2.Name = "label2";
            // 
            // label4
            // 
            resources.ApplyResources(this.label4, "label4");
            this.label4.Name = "label4";
            // 
            // label3
            // 
            resources.ApplyResources(this.label3, "label3");
            this.label3.Name = "label3";
            // 
            // DataSetValues
            // 
            this.DataSetValues.DataSetName = "NewDataSet";
            this.DataSetValues.Tables.AddRange(new System.Data.DataTable[] {
            this.AllValues});
            // 
            // AllValues
            // 
            this.AllValues.Columns.AddRange(new System.Data.DataColumn[] {
            this.XValue,
            this.YValue,
            this.ZValue,
            this.Numb,
            this.TimeValue,
            startNumber,
            this.dataColumn1});
            this.AllValues.TableName = "AllValues";
            // 
            // XValue
            // 
            this.XValue.ColumnName = "XValue";
            this.XValue.DataType = typeof(double);
            // 
            // YValue
            // 
            this.YValue.ColumnName = "YValue";
            this.YValue.DataType = typeof(double);
            // 
            // ZValue
            // 
            this.ZValue.ColumnName = "ZValue";
            this.ZValue.DataType = typeof(double);
            // 
            // Numb
            // 
            this.Numb.ColumnName = "Number";
            this.Numb.DataType = typeof(short);
            // 
            // TimeValue
            // 
            this.TimeValue.ColumnName = "Time";
            this.TimeValue.DataType = typeof(System.DateTime);
            // 
            // dataColumn1
            // 
            this.dataColumn1.ColumnName = "SeriesNumber";
            // 
            // timer
            // 
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // menuStrip1
            // 
            resources.ApplyResources(this.menuStrip1, "menuStrip1");
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.файлToolStripMenuItem,
            this.settingsToolStripMenuItem,
            this.helpToolStripMenuItem});
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip1_ItemClicked);
            // 
            // файлToolStripMenuItem
            // 
            resources.ApplyResources(this.файлToolStripMenuItem, "файлToolStripMenuItem");
            this.файлToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.сохранитьКакXMLToolStripMenuItem,
            this.загрузитьИзXMLToolStripMenuItem,
            this.экспортВCSVToolStripMenuItem});
            this.файлToolStripMenuItem.Name = "файлToolStripMenuItem";
            // 
            // сохранитьКакXMLToolStripMenuItem
            // 
            resources.ApplyResources(this.сохранитьКакXMLToolStripMenuItem, "сохранитьКакXMLToolStripMenuItem");
            this.сохранитьКакXMLToolStripMenuItem.Name = "сохранитьКакXMLToolStripMenuItem";
            this.сохранитьКакXMLToolStripMenuItem.Click += new System.EventHandler(this.сохранитьКакXMLToolStripMenuItem_Click);
            // 
            // загрузитьИзXMLToolStripMenuItem
            // 
            resources.ApplyResources(this.загрузитьИзXMLToolStripMenuItem, "загрузитьИзXMLToolStripMenuItem");
            this.загрузитьИзXMLToolStripMenuItem.Name = "загрузитьИзXMLToolStripMenuItem";
            this.загрузитьИзXMLToolStripMenuItem.Click += new System.EventHandler(this.загрузитьИзXMLToolStripMenuItem_Click);
            // 
            // экспортВCSVToolStripMenuItem
            // 
            resources.ApplyResources(this.экспортВCSVToolStripMenuItem, "экспортВCSVToolStripMenuItem");
            this.экспортВCSVToolStripMenuItem.Name = "экспортВCSVToolStripMenuItem";
            this.экспортВCSVToolStripMenuItem.Click += new System.EventHandler(this.экспортВCSVToolStripMenuItem_Click);
            // 
            // settingsToolStripMenuItem
            // 
            resources.ApplyResources(this.settingsToolStripMenuItem, "settingsToolStripMenuItem");
            this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.allSettingsToolStripMenuItem});
            this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
            // 
            // allSettingsToolStripMenuItem
            // 
            resources.ApplyResources(this.allSettingsToolStripMenuItem, "allSettingsToolStripMenuItem");
            this.allSettingsToolStripMenuItem.Name = "allSettingsToolStripMenuItem";
            this.allSettingsToolStripMenuItem.Click += new System.EventHandler(this.allSettingsToolStripMenuItem_Click);
            // 
            // helpToolStripMenuItem
            // 
            resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
            this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.какПользоватьсяToolStripMenuItem,
            this.оПрограммеToolStripMenuItem});
            this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
            this.helpToolStripMenuItem.Click += new System.EventHandler(this.helpToolStripMenuItem_Click);
            // 
            // какПользоватьсяToolStripMenuItem
            // 
            resources.ApplyResources(this.какПользоватьсяToolStripMenuItem, "какПользоватьсяToolStripMenuItem");
            this.какПользоватьсяToolStripMenuItem.Name = "какПользоватьсяToolStripMenuItem";
            this.какПользоватьсяToolStripMenuItem.Click += new System.EventHandler(this.какПользоватьсяToolStripMenuItem_Click);
            // 
            // оПрограммеToolStripMenuItem
            // 
            resources.ApplyResources(this.оПрограммеToolStripMenuItem, "оПрограммеToolStripMenuItem");
            this.оПрограммеToolStripMenuItem.Name = "оПрограммеToolStripMenuItem";
            this.оПрограммеToolStripMenuItem.Click += new System.EventHandler(this.оПрограммеToolStripMenuItem_Click);
            // 
            // saveAsXMLDialog
            // 
            this.saveAsXMLDialog.DefaultExt = "*.xml";
            resources.ApplyResources(this.saveAsXMLDialog, "saveAsXMLDialog");
            this.saveAsXMLDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveAsXMLDialog_FileOk);
            // 
            // saveAsCSVDialog
            // 
            this.saveAsCSVDialog.DefaultExt = "*.CSV";
            resources.ApplyResources(this.saveAsCSVDialog, "saveAsCSVDialog");
            this.saveAsCSVDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveAsCSVDialog_FileOk);
            // 
            // openXMLDialog
            // 
            this.openXMLDialog.DefaultExt = "*.xml";
            resources.ApplyResources(this.openXMLDialog, "openXMLDialog");
            this.openXMLDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openXMLDialog_FileOk);
            // 
            // MainForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "MainForm";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.Load += new System.EventHandler(this.Form1_Load);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel2.ResumeLayout(false);
            this.splitContainer2.Panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
            this.splitContainer2.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartY)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartZ)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DataSetValues)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.AllValues)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #6
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea8 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series13 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea9 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series14 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea10 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series15 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series16 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea11 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend3 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series17 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series18 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea12 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series19 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea13 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series20 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series21 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea14 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend4 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series22 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series23 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series24 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.cmdDisconnect = new System.Windows.Forms.Button();
            this.cmdConnect = new System.Windows.Forms.Button();
            this.lbPort = new System.Windows.Forms.Label();
            this.lblIPAddress = new System.Windows.Forms.Label();
            this.txtPort = new System.Windows.Forms.TextBox();
            this.txtIPAddress = new System.Windows.Forms.TextBox();
            this.Accelerometer = new System.Windows.Forms.GroupBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label13 = new System.Windows.Forms.Label();
            this.groupBox12 = new System.Windows.Forms.GroupBox();
            this.ExportOn = new System.Windows.Forms.CheckBox();
            this.ExportData = new System.Windows.Forms.Button();
            this.txtCounter = new System.Windows.Forms.TextBox();
            this.chkRed = new System.Windows.Forms.CheckBox();
            this.chkGreen = new System.Windows.Forms.CheckBox();
            this.cmdGetCount = new System.Windows.Forms.Button();
            this.cmdSetLEDs = new System.Windows.Forms.Button();
            this.groupBox11 = new System.Windows.Forms.GroupBox();
            this.PhotoOn = new System.Windows.Forms.CheckBox();
            this.Photodiode = new System.Windows.Forms.TextBox();
            this.groupBox10 = new System.Windows.Forms.GroupBox();
            this.label11 = new System.Windows.Forms.Label();
            this.AccDist = new System.Windows.Forms.TextBox();
            this.AccDistance = new System.Windows.Forms.Button();
            this.groupBox9 = new System.Windows.Forms.GroupBox();
            this.recordOn = new System.Windows.Forms.CheckBox();
            this.recDistBox = new System.Windows.Forms.TextBox();
            this.groupBox8 = new System.Windows.Forms.GroupBox();
            this.emcSquared = new System.Windows.Forms.TextBox();
            this.einstein = new System.Windows.Forms.Button();
            this.groupBox7 = new System.Windows.Forms.GroupBox();
            this.lineTesting = new System.Windows.Forms.TextBox();
            this.LFRight = new System.Windows.Forms.TextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.LFLeft = new System.Windows.Forms.TextBox();
            this.LineFolOn = new System.Windows.Forms.CheckBox();
            this.LEDOn = new System.Windows.Forms.CheckBox();
            this.LineFollowing = new System.Windows.Forms.CheckBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.label5 = new System.Windows.Forms.Label();
            this.AccelOn = new System.Windows.Forms.CheckBox();
            this.accelChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.AccnData = new System.Windows.Forms.TextBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.label4 = new System.Windows.Forms.Label();
            this.MagnetData = new System.Windows.Forms.TextBox();
            this.MagOn = new System.Windows.Forms.CheckBox();
            this.rotateBox = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.magnetChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.MotorDataOn = new System.Windows.Forms.CheckBox();
            this.Motor1Dist = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.Motor2Dist = new System.Windows.Forms.TextBox();
            this.LeftSpeed = new System.Windows.Forms.TextBox();
            this.RightSpeed = new System.Windows.Forms.TextBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.servoBar1 = new System.Windows.Forms.TrackBar();
            this.clawValues = new System.Windows.Forms.TextBox();
            this.servoBar2 = new System.Windows.Forms.TrackBar();
            this.chkInvert = new System.Windows.Forms.CheckBox();
            this.FowardButton = new System.Windows.Forms.Button();
            this.Backward = new System.Windows.Forms.Button();
            this.Clockwise = new System.Windows.Forms.Button();
            this.AntiClockwise = new System.Windows.Forms.Button();
            this.Stop = new System.Windows.Forms.Button();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.setSpeed = new System.Windows.Forms.Button();
            this.speedBox = new System.Windows.Forms.TextBox();
            this.label12 = new System.Windows.Forms.Label();
            this.ClockText = new System.Windows.Forms.TextBox();
            this.ManClockOn = new System.Windows.Forms.CheckBox();
            this.speedbar = new System.Windows.Forms.TrackBar();
            this.chkSwitch2Stat = new System.Windows.Forms.CheckBox();
            this.chkSwitch1Stat = new System.Windows.Forms.CheckBox();
            this.chkGreenStat = new System.Windows.Forms.CheckBox();
            this.chkRedStat = new System.Windows.Forms.CheckBox();
            this.cmdSwitchLedStatus = new System.Windows.Forms.Button();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.photoChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.clearPhoto = new System.Windows.Forms.Button();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.py = new System.Windows.Forms.TextBox();
            this.px = new System.Windows.Forms.TextBox();
            this.lightClip = new System.Windows.Forms.Button();
            this.label10 = new System.Windows.Forms.Label();
            this.LinePlotOn = new System.Windows.Forms.CheckBox();
            this.clearLine = new System.Windows.Forms.Button();
            this.PhotoPlotOn = new System.Windows.Forms.CheckBox();
            this.lineChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tabPage5 = new System.Windows.Forms.TabPage();
            this.ClearMagnet = new System.Windows.Forms.Button();
            this.MagnetPlotOn = new System.Windows.Forms.CheckBox();
            this.VortexChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.riverH = new System.Windows.Forms.TextBox();
            this.riverW = new System.Windows.Forms.TextBox();
            this.RiverClipboard = new System.Windows.Forms.Button();
            this.RiverDataOn = new System.Windows.Forms.CheckBox();
            this.RiverClear = new System.Windows.Forms.Button();
            this.RiverChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tabPage6 = new System.Windows.Forms.TabPage();
            this.on = new System.Windows.Forms.CheckBox();
            this.accelchartDist = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label14 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.Accelerometer.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.groupBox12.SuspendLayout();
            this.groupBox11.SuspendLayout();
            this.groupBox10.SuspendLayout();
            this.groupBox9.SuspendLayout();
            this.groupBox8.SuspendLayout();
            this.groupBox7.SuspendLayout();
            this.groupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.accelChart)).BeginInit();
            this.groupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.magnetChart)).BeginInit();
            this.groupBox4.SuspendLayout();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.servoBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.servoBar2)).BeginInit();
            this.groupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.speedbar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.photoChart)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.lineChart)).BeginInit();
            this.tabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.VortexChart)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.RiverChart)).BeginInit();
            this.tabPage6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.accelchartDist)).BeginInit();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.cmdDisconnect);
            this.groupBox1.Controls.Add(this.cmdConnect);
            this.groupBox1.Controls.Add(this.lbPort);
            this.groupBox1.Controls.Add(this.lblIPAddress);
            this.groupBox1.Controls.Add(this.txtPort);
            this.groupBox1.Controls.Add(this.txtIPAddress);
            this.groupBox1.Location = new System.Drawing.Point(821, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(225, 118);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Connection";
            // 
            // cmdDisconnect
            // 
            this.cmdDisconnect.Location = new System.Drawing.Point(15, 82);
            this.cmdDisconnect.Name = "cmdDisconnect";
            this.cmdDisconnect.Size = new System.Drawing.Size(75, 23);
            this.cmdDisconnect.TabIndex = 5;
            this.cmdDisconnect.Text = "Disconnect";
            this.cmdDisconnect.UseVisualStyleBackColor = true;
            this.cmdDisconnect.Click += new System.EventHandler(this.cmdDisconnect_Click);
            // 
            // cmdConnect
            // 
            this.cmdConnect.Enabled = false;
            this.cmdConnect.Location = new System.Drawing.Point(138, 82);
            this.cmdConnect.Name = "cmdConnect";
            this.cmdConnect.Size = new System.Drawing.Size(75, 23);
            this.cmdConnect.TabIndex = 4;
            this.cmdConnect.Text = "Connect";
            this.cmdConnect.UseVisualStyleBackColor = true;
            this.cmdConnect.Click += new System.EventHandler(this.cmdConnect_Click);
            // 
            // lbPort
            // 
            this.lbPort.AutoSize = true;
            this.lbPort.Location = new System.Drawing.Point(12, 57);
            this.lbPort.Name = "lbPort";
            this.lbPort.Size = new System.Drawing.Size(60, 13);
            this.lbPort.TabIndex = 3;
            this.lbPort.Text = "Server Port";
            // 
            // lblIPAddress
            // 
            this.lblIPAddress.AutoSize = true;
            this.lblIPAddress.Location = new System.Drawing.Point(12, 31);
            this.lblIPAddress.Name = "lblIPAddress";
            this.lblIPAddress.Size = new System.Drawing.Size(92, 13);
            this.lblIPAddress.TabIndex = 2;
            this.lblIPAddress.Text = "Server IP Address";
            // 
            // txtPort
            // 
            this.txtPort.Enabled = false;
            this.txtPort.Location = new System.Drawing.Point(113, 54);
            this.txtPort.Name = "txtPort";
            this.txtPort.Size = new System.Drawing.Size(100, 20);
            this.txtPort.TabIndex = 1;
            // 
            // txtIPAddress
            // 
            this.txtIPAddress.Enabled = false;
            this.txtIPAddress.Location = new System.Drawing.Point(113, 28);
            this.txtIPAddress.Name = "txtIPAddress";
            this.txtIPAddress.Size = new System.Drawing.Size(100, 20);
            this.txtIPAddress.TabIndex = 0;
            // 
            // Accelerometer
            // 
            this.Accelerometer.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Accelerometer.Controls.Add(this.label14);
            this.Accelerometer.Controls.Add(this.panel1);
            this.Accelerometer.Controls.Add(this.label13);
            this.Accelerometer.Controls.Add(this.groupBox12);
            this.Accelerometer.Controls.Add(this.groupBox11);
            this.Accelerometer.Controls.Add(this.groupBox10);
            this.Accelerometer.Controls.Add(this.groupBox9);
            this.Accelerometer.Controls.Add(this.groupBox8);
            this.Accelerometer.Controls.Add(this.groupBox7);
            this.Accelerometer.Controls.Add(this.groupBox6);
            this.Accelerometer.Controls.Add(this.groupBox5);
            this.Accelerometer.Controls.Add(this.groupBox4);
            this.Accelerometer.Controls.Add(this.groupBox2);
            this.Accelerometer.Location = new System.Drawing.Point(3, 3);
            this.Accelerometer.Margin = new System.Windows.Forms.Padding(1);
            this.Accelerometer.Name = "Accelerometer";
            this.Accelerometer.Padding = new System.Windows.Forms.Padding(1);
            this.Accelerometer.Size = new System.Drawing.Size(803, 498);
            this.Accelerometer.TabIndex = 1;
            this.Accelerometer.TabStop = false;
            this.Accelerometer.Text = "                                                                                 " +
    "                                                               ";
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.Black;
            this.panel1.Controls.Add(this.pictureBox1);
            this.panel1.Location = new System.Drawing.Point(9, 178);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(256, 105);
            this.panel1.TabIndex = 66;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(10, 8);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(237, 88);
            this.pictureBox1.TabIndex = 65;
            this.pictureBox1.TabStop = false;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.BackColor = System.Drawing.Color.WhiteSmoke;
            this.label13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.Location = new System.Drawing.Point(16, 312);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(236, 73);
            this.label13.TabIndex = 64;
            this.label13.Text = "CYB05";
            // 
            // groupBox12
            // 
            this.groupBox12.Controls.Add(this.ExportOn);
            this.groupBox12.Controls.Add(this.ExportData);
            this.groupBox12.Controls.Add(this.txtCounter);
            this.groupBox12.Controls.Add(this.chkRed);
            this.groupBox12.Controls.Add(this.chkGreen);
            this.groupBox12.Controls.Add(this.cmdGetCount);
            this.groupBox12.Controls.Add(this.cmdSetLEDs);
            this.groupBox12.Location = new System.Drawing.Point(627, 324);
            this.groupBox12.Name = "groupBox12";
            this.groupBox12.Size = new System.Drawing.Size(170, 134);
            this.groupBox12.TabIndex = 63;
            this.groupBox12.TabStop = false;
            this.groupBox12.Text = "LED\'s";
            // 
            // ExportOn
            // 
            this.ExportOn.AutoSize = true;
            this.ExportOn.Location = new System.Drawing.Point(57, 108);
            this.ExportOn.Name = "ExportOn";
            this.ExportOn.Size = new System.Drawing.Size(15, 14);
            this.ExportOn.TabIndex = 59;
            this.ExportOn.UseVisualStyleBackColor = true;
            // 
            // ExportData
            // 
            this.ExportData.Location = new System.Drawing.Point(78, 102);
            this.ExportData.Name = "ExportData";
            this.ExportData.Size = new System.Drawing.Size(75, 23);
            this.ExportData.TabIndex = 22;
            this.ExportData.Text = "Export Data";
            this.ExportData.UseVisualStyleBackColor = true;
            this.ExportData.Click += new System.EventHandler(this.ExportData_Click);
            // 
            // txtCounter
            // 
            this.txtCounter.Location = new System.Drawing.Point(13, 74);
            this.txtCounter.Name = "txtCounter";
            this.txtCounter.Size = new System.Drawing.Size(61, 20);
            this.txtCounter.TabIndex = 7;
            // 
            // chkRed
            // 
            this.chkRed.AutoSize = true;
            this.chkRed.Location = new System.Drawing.Point(98, 22);
            this.chkRed.Name = "chkRed";
            this.chkRed.Size = new System.Drawing.Size(70, 17);
            this.chkRed.TabIndex = 5;
            this.chkRed.Text = "Red LED";
            this.chkRed.UseVisualStyleBackColor = true;
            // 
            // chkGreen
            // 
            this.chkGreen.AutoSize = true;
            this.chkGreen.Location = new System.Drawing.Point(13, 22);
            this.chkGreen.Name = "chkGreen";
            this.chkGreen.Size = new System.Drawing.Size(79, 17);
            this.chkGreen.TabIndex = 4;
            this.chkGreen.Text = "Green LED";
            this.chkGreen.UseVisualStyleBackColor = true;
            // 
            // cmdGetCount
            // 
            this.cmdGetCount.Location = new System.Drawing.Point(78, 73);
            this.cmdGetCount.Name = "cmdGetCount";
            this.cmdGetCount.Size = new System.Drawing.Size(75, 21);
            this.cmdGetCount.TabIndex = 1;
            this.cmdGetCount.Text = "Counter";
            this.cmdGetCount.UseVisualStyleBackColor = true;
            this.cmdGetCount.Click += new System.EventHandler(this.cmdGetCount_Click);
            // 
            // cmdSetLEDs
            // 
            this.cmdSetLEDs.Location = new System.Drawing.Point(12, 45);
            this.cmdSetLEDs.Name = "cmdSetLEDs";
            this.cmdSetLEDs.Size = new System.Drawing.Size(141, 23);
            this.cmdSetLEDs.TabIndex = 0;
            this.cmdSetLEDs.Text = "Set LEDs";
            this.cmdSetLEDs.UseVisualStyleBackColor = true;
            this.cmdSetLEDs.Click += new System.EventHandler(this.cmdSetLEDs_Click);
            // 
            // groupBox11
            // 
            this.groupBox11.Controls.Add(this.PhotoOn);
            this.groupBox11.Controls.Add(this.Photodiode);
            this.groupBox11.Location = new System.Drawing.Point(111, 394);
            this.groupBox11.Name = "groupBox11";
            this.groupBox11.Size = new System.Drawing.Size(165, 64);
            this.groupBox11.TabIndex = 62;
            this.groupBox11.TabStop = false;
            this.groupBox11.Text = "Photodiode";
            // 
            // PhotoOn
            // 
            this.PhotoOn.AutoSize = true;
            this.PhotoOn.Location = new System.Drawing.Point(6, 14);
            this.PhotoOn.Name = "PhotoOn";
            this.PhotoOn.Size = new System.Drawing.Size(80, 17);
            this.PhotoOn.TabIndex = 45;
            this.PhotoOn.Text = "Photodiode";
            this.PhotoOn.UseVisualStyleBackColor = true;
            // 
            // Photodiode
            // 
            this.Photodiode.Location = new System.Drawing.Point(6, 35);
            this.Photodiode.Name = "Photodiode";
            this.Photodiode.Size = new System.Drawing.Size(136, 20);
            this.Photodiode.TabIndex = 22;
            // 
            // groupBox10
            // 
            this.groupBox10.Controls.Add(this.label11);
            this.groupBox10.Controls.Add(this.AccDist);
            this.groupBox10.Controls.Add(this.AccDistance);
            this.groupBox10.Location = new System.Drawing.Point(438, 25);
            this.groupBox10.Name = "groupBox10";
            this.groupBox10.Size = new System.Drawing.Size(203, 134);
            this.groupBox10.TabIndex = 61;
            this.groupBox10.TabStop = false;
            this.groupBox10.Text = "Accurate Distance Travelled";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(12, 81);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(114, 13);
            this.label11.TabIndex = 42;
            this.label11.Text = "Distance to Travel (m):";
            // 
            // AccDist
            // 
            this.AccDist.Location = new System.Drawing.Point(132, 78);
            this.AccDist.Name = "AccDist";
            this.AccDist.Size = new System.Drawing.Size(46, 20);
            this.AccDist.TabIndex = 41;
            this.AccDist.TabStop = false;
            this.AccDist.Text = "0";
            this.AccDist.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // AccDistance
            // 
            this.AccDistance.Location = new System.Drawing.Point(49, 44);
            this.AccDistance.Name = "AccDistance";
            this.AccDistance.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.AccDistance.Size = new System.Drawing.Size(116, 22);
            this.AccDistance.TabIndex = 40;
            this.AccDistance.Text = "Accurate Distance";
            this.AccDistance.UseVisualStyleBackColor = true;
            this.AccDistance.Click += new System.EventHandler(this.AccDistance_Click);
            // 
            // groupBox9
            // 
            this.groupBox9.Controls.Add(this.recordOn);
            this.groupBox9.Controls.Add(this.recDistBox);
            this.groupBox9.Location = new System.Drawing.Point(643, 25);
            this.groupBox9.Name = "groupBox9";
            this.groupBox9.Size = new System.Drawing.Size(154, 60);
            this.groupBox9.TabIndex = 56;
            this.groupBox9.TabStop = false;
            this.groupBox9.Text = "Record Distance";
            // 
            // recordOn
            // 
            this.recordOn.AutoSize = true;
            this.recordOn.Location = new System.Drawing.Point(86, 26);
            this.recordOn.Name = "recordOn";
            this.recordOn.Size = new System.Drawing.Size(61, 17);
            this.recordOn.TabIndex = 2;
            this.recordOn.Text = "Record";
            this.recordOn.UseVisualStyleBackColor = true;
            // 
            // recDistBox
            // 
            this.recDistBox.Location = new System.Drawing.Point(7, 26);
            this.recDistBox.Name = "recDistBox";
            this.recDistBox.Size = new System.Drawing.Size(73, 20);
            this.recDistBox.TabIndex = 1;
            this.recDistBox.Text = "0";
            // 
            // groupBox8
            // 
            this.groupBox8.Controls.Add(this.emcSquared);
            this.groupBox8.Controls.Add(this.einstein);
            this.groupBox8.Location = new System.Drawing.Point(643, 99);
            this.groupBox8.Name = "groupBox8";
            this.groupBox8.Size = new System.Drawing.Size(154, 60);
            this.groupBox8.TabIndex = 55;
            this.groupBox8.TabStop = false;
            this.groupBox8.Text = "Einsteinium";
            // 
            // emcSquared
            // 
            this.emcSquared.Location = new System.Drawing.Point(7, 26);
            this.emcSquared.Name = "emcSquared";
            this.emcSquared.Size = new System.Drawing.Size(73, 20);
            this.emcSquared.TabIndex = 1;
            this.emcSquared.Text = "0";
            // 
            // einstein
            // 
            this.einstein.Location = new System.Drawing.Point(82, 24);
            this.einstein.Name = "einstein";
            this.einstein.Size = new System.Drawing.Size(66, 24);
            this.einstein.TabIndex = 0;
            this.einstein.Text = "Delivered";
            this.einstein.UseVisualStyleBackColor = true;
            this.einstein.Click += new System.EventHandler(this.einstein_Click);
            // 
            // groupBox7
            // 
            this.groupBox7.Controls.Add(this.lineTesting);
            this.groupBox7.Controls.Add(this.LFRight);
            this.groupBox7.Controls.Add(this.label8);
            this.groupBox7.Controls.Add(this.label9);
            this.groupBox7.Controls.Add(this.LFLeft);
            this.groupBox7.Controls.Add(this.LineFolOn);
            this.groupBox7.Controls.Add(this.LEDOn);
            this.groupBox7.Controls.Add(this.LineFollowing);
            this.groupBox7.Location = new System.Drawing.Point(271, 25);
            this.groupBox7.Name = "groupBox7";
            this.groupBox7.Size = new System.Drawing.Size(162, 134);
            this.groupBox7.TabIndex = 58;
            this.groupBox7.TabStop = false;
            this.groupBox7.Text = "Line Following";
            // 
            // lineTesting
            // 
            this.lineTesting.Location = new System.Drawing.Point(23, 104);
            this.lineTesting.Name = "lineTesting";
            this.lineTesting.Size = new System.Drawing.Size(46, 20);
            this.lineTesting.TabIndex = 59;
            this.lineTesting.Text = "400";
            // 
            // LFRight
            // 
            this.LFRight.Location = new System.Drawing.Point(85, 52);
            this.LFRight.Name = "LFRight";
            this.LFRight.Size = new System.Drawing.Size(55, 20);
            this.LFRight.TabIndex = 37;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(21, 33);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(25, 13);
            this.label8.TabIndex = 34;
            this.label8.Text = "Left";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(83, 33);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(32, 13);
            this.label9.TabIndex = 35;
            this.label9.Text = "Right";
            // 
            // LFLeft
            // 
            this.LFLeft.Location = new System.Drawing.Point(24, 52);
            this.LFLeft.Name = "LFLeft";
            this.LFLeft.Size = new System.Drawing.Size(55, 20);
            this.LFLeft.TabIndex = 36;
            // 
            // LineFolOn
            // 
            this.LineFolOn.AutoSize = true;
            this.LineFolOn.Location = new System.Drawing.Point(100, 11);
            this.LineFolOn.Name = "LineFolOn";
            this.LineFolOn.Size = new System.Drawing.Size(40, 17);
            this.LineFolOn.TabIndex = 46;
            this.LineFolOn.Text = "On";
            this.LineFolOn.UseVisualStyleBackColor = true;
            // 
            // LEDOn
            // 
            this.LEDOn.AutoSize = true;
            this.LEDOn.Location = new System.Drawing.Point(78, 85);
            this.LEDOn.Name = "LEDOn";
            this.LEDOn.Size = new System.Drawing.Size(62, 17);
            this.LEDOn.TabIndex = 41;
            this.LEDOn.Text = "LED on";
            this.LEDOn.UseVisualStyleBackColor = true;
            // 
            // LineFollowing
            // 
            this.LineFollowing.AutoSize = true;
            this.LineFollowing.Location = new System.Drawing.Point(23, 85);
            this.LineFollowing.Name = "LineFollowing";
            this.LineFollowing.Size = new System.Drawing.Size(56, 17);
            this.LineFollowing.TabIndex = 48;
            this.LineFollowing.Text = "Follow";
            this.LineFollowing.UseVisualStyleBackColor = true;
            // 
            // groupBox6
            // 
            this.groupBox6.Controls.Add(this.label5);
            this.groupBox6.Controls.Add(this.AccelOn);
            this.groupBox6.Controls.Add(this.accelChart);
            this.groupBox6.Controls.Add(this.AccnData);
            this.groupBox6.Location = new System.Drawing.Point(295, 174);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(326, 135);
            this.groupBox6.TabIndex = 57;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Accelerometer Data";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(6, 79);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(53, 13);
            this.label5.TabIndex = 44;
            this.label5.Text = "Raw data";
            // 
            // AccelOn
            // 
            this.AccelOn.AutoSize = true;
            this.AccelOn.Location = new System.Drawing.Point(6, 16);
            this.AccelOn.Name = "AccelOn";
            this.AccelOn.Size = new System.Drawing.Size(40, 17);
            this.AccelOn.TabIndex = 43;
            this.AccelOn.Text = "On";
            this.AccelOn.UseVisualStyleBackColor = true;
            // 
            // accelChart
            // 
            this.accelChart.BackColor = System.Drawing.Color.Transparent;
            customLabel7.Text = "\'X\'";
            customLabel8.Text = "Y";
            customLabel9.Text = "Z";
            chartArea8.AxisX.CustomLabels.Add(customLabel7);
            chartArea8.AxisX.CustomLabels.Add(customLabel8);
            chartArea8.AxisX.CustomLabels.Add(customLabel9);
            chartArea8.AxisX.Maximum = 3.5D;
            chartArea8.AxisX.Minimum = 0.5D;
            chartArea8.BorderWidth = 0;
            chartArea8.Name = "ChartArea1";
            this.accelChart.ChartAreas.Add(chartArea8);
            this.accelChart.Location = new System.Drawing.Point(107, 5);
            this.accelChart.Margin = new System.Windows.Forms.Padding(0);
            this.accelChart.Name = "accelChart";
            this.accelChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Berry;
            series13.ChartArea = "ChartArea1";
            series13.CustomProperties = "PointWidth=1";
            series13.Name = "Series1";
            this.accelChart.Series.Add(series13);
            this.accelChart.Size = new System.Drawing.Size(216, 125);
            this.accelChart.TabIndex = 2;
            this.accelChart.Text = "chart1";
            // 
            // AccnData
            // 
            this.AccnData.Location = new System.Drawing.Point(6, 95);
            this.AccnData.Name = "AccnData";
            this.AccnData.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
            this.AccnData.Size = new System.Drawing.Size(101, 20);
            this.AccnData.TabIndex = 27;
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.label4);
            this.groupBox5.Controls.Add(this.MagnetData);
            this.groupBox5.Controls.Add(this.MagOn);
            this.groupBox5.Controls.Add(this.rotateBox);
            this.groupBox5.Controls.Add(this.label3);
            this.groupBox5.Controls.Add(this.magnetChart);
            this.groupBox5.Location = new System.Drawing.Point(294, 324);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(327, 134);
            this.groupBox5.TabIndex = 56;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Magnetometer Data";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(6, 79);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(53, 13);
            this.label4.TabIndex = 48;
            this.label4.Text = "Raw data";
            // 
            // MagnetData
            // 
            this.MagnetData.Location = new System.Drawing.Point(9, 95);
            this.MagnetData.Name = "MagnetData";
            this.MagnetData.Size = new System.Drawing.Size(80, 20);
            this.MagnetData.TabIndex = 25;
            // 
            // MagOn
            // 
            this.MagOn.AutoSize = true;
            this.MagOn.Location = new System.Drawing.Point(6, 16);
            this.MagOn.Name = "MagOn";
            this.MagOn.Size = new System.Drawing.Size(40, 17);
            this.MagOn.TabIndex = 44;
            this.MagOn.Text = "On";
            this.MagOn.UseVisualStyleBackColor = true;
            // 
            // rotateBox
            // 
            this.rotateBox.Location = new System.Drawing.Point(9, 52);
            this.rotateBox.Name = "rotateBox";
            this.rotateBox.Size = new System.Drawing.Size(80, 20);
            this.rotateBox.TabIndex = 38;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 36);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(83, 13);
            this.label3.TabIndex = 47;
            this.label3.Text = "Degrees rotated";
            // 
            // magnetChart
            // 
            this.magnetChart.BackColor = System.Drawing.Color.Transparent;
            customLabel10.Text = "\'X\'";
            customLabel11.Text = "Y";
            customLabel12.Text = "Z";
            chartArea9.AxisX.CustomLabels.Add(customLabel10);
            chartArea9.AxisX.CustomLabels.Add(customLabel11);
            chartArea9.AxisX.CustomLabels.Add(customLabel12);
            chartArea9.AxisX.Maximum = 3.5D;
            chartArea9.AxisX.Minimum = 0.5D;
            chartArea9.BorderWidth = 0;
            chartArea9.Name = "ChartArea1";
            this.magnetChart.ChartAreas.Add(chartArea9);
            this.magnetChart.Location = new System.Drawing.Point(108, 11);
            this.magnetChart.Margin = new System.Windows.Forms.Padding(0);
            this.magnetChart.Name = "magnetChart";
            this.magnetChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Berry;
            this.magnetChart.PaletteCustomColors = new System.Drawing.Color[] {
        System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))),
        System.Drawing.Color.Maroon,
        System.Drawing.Color.Red};
            series14.ChartArea = "ChartArea1";
            series14.CustomProperties = "PointWidth=1";
            series14.Name = "Series1";
            this.magnetChart.Series.Add(series14);
            this.magnetChart.Size = new System.Drawing.Size(214, 119);
            this.magnetChart.TabIndex = 39;
            this.magnetChart.Text = "chart1";
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.MotorDataOn);
            this.groupBox4.Controls.Add(this.Motor1Dist);
            this.groupBox4.Controls.Add(this.label1);
            this.groupBox4.Controls.Add(this.label2);
            this.groupBox4.Controls.Add(this.Motor2Dist);
            this.groupBox4.Controls.Add(this.LeftSpeed);
            this.groupBox4.Controls.Add(this.RightSpeed);
            this.groupBox4.Controls.Add(this.label6);
            this.groupBox4.Controls.Add(this.label7);
            this.groupBox4.Location = new System.Drawing.Point(9, 25);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(256, 134);
            this.groupBox4.TabIndex = 55;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Motor Data";
            // 
            // MotorDataOn
            // 
            this.MotorDataOn.AutoSize = true;
            this.MotorDataOn.Location = new System.Drawing.Point(210, 14);
            this.MotorDataOn.Name = "MotorDataOn";
            this.MotorDataOn.Size = new System.Drawing.Size(40, 17);
            this.MotorDataOn.TabIndex = 49;
            this.MotorDataOn.Text = "On";
            this.MotorDataOn.UseVisualStyleBackColor = true;
            // 
            // Motor1Dist
            // 
            this.Motor1Dist.Location = new System.Drawing.Point(9, 41);
            this.Motor1Dist.Name = "Motor1Dist";
            this.Motor1Dist.Size = new System.Drawing.Size(73, 20);
            this.Motor1Dist.TabIndex = 16;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 25);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(76, 13);
            this.label1.TabIndex = 17;
            this.label1.Text = "Left Motor Dist";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(115, 25);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(83, 13);
            this.label2.TabIndex = 18;
            this.label2.Text = "Right Motor Dist";
            // 
            // Motor2Dist
            // 
            this.Motor2Dist.Location = new System.Drawing.Point(118, 41);
            this.Motor2Dist.Name = "Motor2Dist";
            this.Motor2Dist.Size = new System.Drawing.Size(80, 20);
            this.Motor2Dist.TabIndex = 19;
            // 
            // LeftSpeed
            // 
            this.LeftSpeed.Location = new System.Drawing.Point(9, 94);
            this.LeftSpeed.Name = "LeftSpeed";
            this.LeftSpeed.Size = new System.Drawing.Size(73, 20);
            this.LeftSpeed.TabIndex = 20;
            // 
            // RightSpeed
            // 
            this.RightSpeed.Location = new System.Drawing.Point(118, 94);
            this.RightSpeed.Name = "RightSpeed";
            this.RightSpeed.Size = new System.Drawing.Size(80, 20);
            this.RightSpeed.TabIndex = 21;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(6, 78);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(89, 13);
            this.label6.TabIndex = 28;
            this.label6.Text = "Left Motor Speed";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(115, 78);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(96, 13);
            this.label7.TabIndex = 29;
            this.label7.Text = "Right Motor Speed";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.servoBar1);
            this.groupBox2.Controls.Add(this.clawValues);
            this.groupBox2.Controls.Add(this.servoBar2);
            this.groupBox2.Location = new System.Drawing.Point(627, 174);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(170, 135);
            this.groupBox2.TabIndex = 54;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "The Claw";
            // 
            // servoBar1
            // 
            this.servoBar1.Location = new System.Drawing.Point(44, 35);
            this.servoBar1.Maximum = 126;
            this.servoBar1.Minimum = 25;
            this.servoBar1.Name = "servoBar1";
            this.servoBar1.Size = new System.Drawing.Size(104, 45);
            this.servoBar1.TabIndex = 51;
            this.servoBar1.Value = 35;
            this.servoBar1.ValueChanged += new System.EventHandler(this.Twitch_Click);
            // 
            // clawValues
            // 
            this.clawValues.Location = new System.Drawing.Point(58, 86);
            this.clawValues.Name = "clawValues";
            this.clawValues.Size = new System.Drawing.Size(73, 20);
            this.clawValues.TabIndex = 53;
            // 
            // servoBar2
            // 
            this.servoBar2.Location = new System.Drawing.Point(7, 25);
            this.servoBar2.Maximum = 125;
            this.servoBar2.Name = "servoBar2";
            this.servoBar2.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.servoBar2.Size = new System.Drawing.Size(45, 104);
            this.servoBar2.TabIndex = 52;
            this.servoBar2.Value = 125;
            this.servoBar2.ValueChanged += new System.EventHandler(this.Twitch_Click);
            // 
            // chkInvert
            // 
            this.chkInvert.AutoSize = true;
            this.chkInvert.Location = new System.Drawing.Point(8, 45);
            this.chkInvert.Name = "chkInvert";
            this.chkInvert.Size = new System.Drawing.Size(94, 17);
            this.chkInvert.TabIndex = 60;
            this.chkInvert.Text = "Invert Controls";
            this.chkInvert.UseVisualStyleBackColor = true;
            // 
            // FowardButton
            // 
            this.FowardButton.Location = new System.Drawing.Point(76, 77);
            this.FowardButton.Name = "FowardButton";
            this.FowardButton.Size = new System.Drawing.Size(97, 22);
            this.FowardButton.TabIndex = 32;
            this.FowardButton.Text = "All Forward (W)";
            this.FowardButton.UseVisualStyleBackColor = true;
            this.FowardButton.Click += new System.EventHandler(this.FowardButton_Click);
            // 
            // Backward
            // 
            this.Backward.Location = new System.Drawing.Point(76, 148);
            this.Backward.Name = "Backward";
            this.Backward.Size = new System.Drawing.Size(97, 23);
            this.Backward.TabIndex = 16;
            this.Backward.Text = "Full Reverse (S)";
            this.Backward.UseVisualStyleBackColor = true;
            this.Backward.Click += new System.EventHandler(this.Backward_Click);
            // 
            // Clockwise
            // 
            this.Clockwise.Location = new System.Drawing.Point(145, 105);
            this.Clockwise.Name = "Clockwise";
            this.Clockwise.Size = new System.Drawing.Size(71, 37);
            this.Clockwise.TabIndex = 15;
            this.Clockwise.Text = "Clockwise (D)";
            this.Clockwise.UseMnemonic = false;
            this.Clockwise.UseVisualStyleBackColor = true;
            this.Clockwise.Click += new System.EventHandler(this.Clockwise_Click);
            // 
            // AntiClockwise
            // 
            this.AntiClockwise.Location = new System.Drawing.Point(8, 105);
            this.AntiClockwise.Name = "AntiClockwise";
            this.AntiClockwise.Size = new System.Drawing.Size(88, 37);
            this.AntiClockwise.TabIndex = 14;
            this.AntiClockwise.Text = "Anti Clockwise (A)";
            this.AntiClockwise.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
            this.AntiClockwise.UseVisualStyleBackColor = true;
            this.AntiClockwise.Click += new System.EventHandler(this.AntiClockwise_Click);
            // 
            // Stop
            // 
            this.Stop.Location = new System.Drawing.Point(102, 112);
            this.Stop.Name = "Stop";
            this.Stop.Size = new System.Drawing.Size(37, 23);
            this.Stop.TabIndex = 13;
            this.Stop.Text = "Stop";
            this.Stop.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.Stop.UseVisualStyleBackColor = true;
            this.Stop.Click += new System.EventHandler(this.Stop_Click);
            // 
            // groupBox3
            // 
            this.groupBox3.BackColor = System.Drawing.SystemColors.Control;
            this.groupBox3.Controls.Add(this.setSpeed);
            this.groupBox3.Controls.Add(this.speedBox);
            this.groupBox3.Controls.Add(this.label12);
            this.groupBox3.Controls.Add(this.chkInvert);
            this.groupBox3.Controls.Add(this.ClockText);
            this.groupBox3.Controls.Add(this.ManClockOn);
            this.groupBox3.Controls.Add(this.speedbar);
            this.groupBox3.Controls.Add(this.chkSwitch2Stat);
            this.groupBox3.Controls.Add(this.chkSwitch1Stat);
            this.groupBox3.Controls.Add(this.chkGreenStat);
            this.groupBox3.Controls.Add(this.chkRedStat);
            this.groupBox3.Controls.Add(this.cmdSwitchLedStatus);
            this.groupBox3.Controls.Add(this.FowardButton);
            this.groupBox3.Controls.Add(this.Stop);
            this.groupBox3.Controls.Add(this.AntiClockwise);
            this.groupBox3.Controls.Add(this.Clockwise);
            this.groupBox3.Controls.Add(this.Backward);
            this.groupBox3.Location = new System.Drawing.Point(821, 136);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(225, 374);
            this.groupBox3.TabIndex = 2;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Commands";
            // 
            // setSpeed
            // 
            this.setSpeed.Location = new System.Drawing.Point(136, 207);
            this.setSpeed.Name = "setSpeed";
            this.setSpeed.Size = new System.Drawing.Size(80, 23);
            this.setSpeed.TabIndex = 46;
            this.setSpeed.Text = "Set Speed";
            this.setSpeed.UseVisualStyleBackColor = true;
            this.setSpeed.Click += new System.EventHandler(this.setSpeed_Click);
            // 
            // speedBox
            // 
            this.speedBox.Location = new System.Drawing.Point(100, 209);
            this.speedBox.Name = "speedBox";
            this.speedBox.Size = new System.Drawing.Size(31, 20);
            this.speedBox.TabIndex = 45;
            this.speedBox.Text = "30";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(5, 212);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(91, 13);
            this.label12.TabIndex = 44;
            this.label12.Text = "Manual speed set";
            // 
            // ClockText
            // 
            this.ClockText.Location = new System.Drawing.Point(133, 19);
            this.ClockText.Name = "ClockText";
            this.ClockText.Size = new System.Drawing.Size(40, 20);
            this.ClockText.TabIndex = 43;
            this.ClockText.Text = "500";
            // 
            // ManClockOn
            // 
            this.ManClockOn.AutoSize = true;
            this.ManClockOn.Location = new System.Drawing.Point(8, 19);
            this.ManClockOn.Name = "ManClockOn";
            this.ManClockOn.Size = new System.Drawing.Size(123, 17);
            this.ManClockOn.TabIndex = 42;
            this.ManClockOn.Text = "Manual Clock speed";
            this.ManClockOn.UseVisualStyleBackColor = true;
            // 
            // speedbar
            // 
            this.speedbar.Location = new System.Drawing.Point(8, 177);
            this.speedbar.Maximum = 100;
            this.speedbar.Minimum = 20;
            this.speedbar.Name = "speedbar";
            this.speedbar.Size = new System.Drawing.Size(211, 45);
            this.speedbar.TabIndex = 41;
            this.speedbar.Value = 30;
            this.speedbar.ValueChanged += new System.EventHandler(this.speedbar_ValueChanged);
            this.speedbar.MouseEnter += new System.EventHandler(this.speedbar_MouseHover);
            // 
            // chkSwitch2Stat
            // 
            this.chkSwitch2Stat.AutoSize = true;
            this.chkSwitch2Stat.Enabled = false;
            this.chkSwitch2Stat.Location = new System.Drawing.Point(134, 320);
            this.chkSwitch2Stat.Name = "chkSwitch2Stat";
            this.chkSwitch2Stat.Size = new System.Drawing.Size(67, 17);
            this.chkSwitch2Stat.TabIndex = 11;
            this.chkSwitch2Stat.Text = "Switch 2";
            this.chkSwitch2Stat.UseVisualStyleBackColor = true;
            // 
            // chkSwitch1Stat
            // 
            this.chkSwitch1Stat.AutoSize = true;
            this.chkSwitch1Stat.Enabled = false;
            this.chkSwitch1Stat.Location = new System.Drawing.Point(29, 320);
            this.chkSwitch1Stat.Name = "chkSwitch1Stat";
            this.chkSwitch1Stat.Size = new System.Drawing.Size(67, 17);
            this.chkSwitch1Stat.TabIndex = 10;
            this.chkSwitch1Stat.Text = "Switch 1";
            this.chkSwitch1Stat.UseVisualStyleBackColor = true;
            // 
            // chkGreenStat
            // 
            this.chkGreenStat.AutoSize = true;
            this.chkGreenStat.Enabled = false;
            this.chkGreenStat.Location = new System.Drawing.Point(134, 296);
            this.chkGreenStat.Name = "chkGreenStat";
            this.chkGreenStat.Size = new System.Drawing.Size(79, 17);
            this.chkGreenStat.TabIndex = 9;
            this.chkGreenStat.Text = "Green LED";
            this.chkGreenStat.UseVisualStyleBackColor = true;
            // 
            // chkRedStat
            // 
            this.chkRedStat.AutoSize = true;
            this.chkRedStat.Enabled = false;
            this.chkRedStat.Location = new System.Drawing.Point(29, 296);
            this.chkRedStat.Name = "chkRedStat";
            this.chkRedStat.Size = new System.Drawing.Size(70, 17);
            this.chkRedStat.TabIndex = 8;
            this.chkRedStat.Text = "Red LED";
            this.chkRedStat.UseVisualStyleBackColor = true;
            this.chkRedStat.CheckedChanged += new System.EventHandler(this.chkRedStat_CheckedChanged);
            // 
            // cmdSwitchLedStatus
            // 
            this.cmdSwitchLedStatus.Location = new System.Drawing.Point(63, 343);
            this.cmdSwitchLedStatus.Name = "cmdSwitchLedStatus";
            this.cmdSwitchLedStatus.Size = new System.Drawing.Size(100, 21);
            this.cmdSwitchLedStatus.TabIndex = 3;
            this.cmdSwitchLedStatus.Text = "Get Status";
            this.cmdSwitchLedStatus.UseVisualStyleBackColor = true;
            this.cmdSwitchLedStatus.Click += new System.EventHandler(this.cmdSwitchLedStatus_Click);
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            // 
            // photoChart
            // 
            this.photoChart.BackColor = System.Drawing.Color.WhiteSmoke;
            chartArea10.AxisX.MinorGrid.Enabled = true;
            chartArea10.AxisX.MinorTickMark.Enabled = true;
            chartArea10.AxisY.Maximum = 5000D;
            chartArea10.AxisY.MinorGrid.Enabled = true;
            chartArea10.Name = "ChartArea1";
            this.photoChart.ChartAreas.Add(chartArea10);
            this.photoChart.Location = new System.Drawing.Point(18, 20);
            this.photoChart.Name = "photoChart";
            series15.ChartArea = "ChartArea1";
            series15.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series15.Name = "Series2";
            series16.ChartArea = "ChartArea1";
            series16.Name = "Series3";
            this.photoChart.Series.Add(series15);
            this.photoChart.Series.Add(series16);
            this.photoChart.Size = new System.Drawing.Size(665, 236);
            this.photoChart.TabIndex = 23;
            this.photoChart.Text = "chart1";
            this.photoChart.Click += new System.EventHandler(this.photoChart_Click);
            // 
            // clearPhoto
            // 
            this.clearPhoto.Location = new System.Drawing.Point(689, 39);
            this.clearPhoto.Name = "clearPhoto";
            this.clearPhoto.Size = new System.Drawing.Size(75, 23);
            this.clearPhoto.TabIndex = 39;
            this.clearPhoto.Text = "Clear Graph";
            this.clearPhoto.UseVisualStyleBackColor = true;
            this.clearPhoto.Click += new System.EventHandler(this.clearPhoto_Click);
            // 
            // tabPage2
            // 
            this.tabPage2.Location = new System.Drawing.Point(0, 0);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(200, 100);
            this.tabPage2.TabIndex = 0;
            this.tabPage2.Text = "tabPage2";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Controls.Add(this.tabPage5);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Controls.Add(this.tabPage6);
            this.tabControl1.Location = new System.Drawing.Point(1, 1);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(814, 509);
            this.tabControl1.TabIndex = 40;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.Accelerometer);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(806, 483);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Main screen";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // tabPage3
            // 
            this.tabPage3.BackColor = System.Drawing.Color.Transparent;
            this.tabPage3.Controls.Add(this.py);
            this.tabPage3.Controls.Add(this.px);
            this.tabPage3.Controls.Add(this.lightClip);
            this.tabPage3.Controls.Add(this.label10);
            this.tabPage3.Controls.Add(this.LinePlotOn);
            this.tabPage3.Controls.Add(this.clearLine);
            this.tabPage3.Controls.Add(this.PhotoPlotOn);
            this.tabPage3.Controls.Add(this.lineChart);
            this.tabPage3.Controls.Add(this.photoChart);
            this.tabPage3.Controls.Add(this.clearPhoto);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage3.Size = new System.Drawing.Size(806, 483);
            this.tabPage3.TabIndex = 1;
            this.tabPage3.Text = "Photodiode";
            // 
            // py
            // 
            this.py.Location = new System.Drawing.Point(689, 179);
            this.py.Name = "py";
            this.py.Size = new System.Drawing.Size(61, 20);
            this.py.TabIndex = 50;
            this.py.Text = "580";
            // 
            // px
            // 
            this.px.Location = new System.Drawing.Point(689, 153);
            this.px.Name = "px";
            this.px.Size = new System.Drawing.Size(61, 20);
            this.px.TabIndex = 49;
            this.px.Text = "2400";
            // 
            // lightClip
            // 
            this.lightClip.Location = new System.Drawing.Point(689, 123);
            this.lightClip.Name = "lightClip";
            this.lightClip.Size = new System.Drawing.Size(75, 20);
            this.lightClip.TabIndex = 45;
            this.lightClip.Text = "To Clipboard";
            this.lightClip.UseVisualStyleBackColor = true;
            this.lightClip.Click += new System.EventHandler(this.lightClip_Click);
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(58, 17);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(81, 13);
            this.label10.TabIndex = 44;
            this.label10.Text = "Photodiode plot";
            // 
            // LinePlotOn
            // 
            this.LinePlotOn.AutoSize = true;
            this.LinePlotOn.Location = new System.Drawing.Point(704, 328);
            this.LinePlotOn.Name = "LinePlotOn";
            this.LinePlotOn.Size = new System.Drawing.Size(70, 17);
            this.LinePlotOn.TabIndex = 43;
            this.LinePlotOn.Text = "Plot Data";
            this.LinePlotOn.UseVisualStyleBackColor = true;
            // 
            // clearLine
            // 
            this.clearLine.Location = new System.Drawing.Point(704, 299);
            this.clearLine.Name = "clearLine";
            this.clearLine.Size = new System.Drawing.Size(75, 23);
            this.clearLine.TabIndex = 42;
            this.clearLine.Text = "Clear Graph";
            this.clearLine.UseVisualStyleBackColor = true;
            this.clearLine.Click += new System.EventHandler(this.clearLine_Click);
            // 
            // PhotoPlotOn
            // 
            this.PhotoPlotOn.AutoSize = true;
            this.PhotoPlotOn.Location = new System.Drawing.Point(690, 68);
            this.PhotoPlotOn.Name = "PhotoPlotOn";
            this.PhotoPlotOn.Size = new System.Drawing.Size(70, 17);
            this.PhotoPlotOn.TabIndex = 41;
            this.PhotoPlotOn.Text = "Plot Data";
            this.PhotoPlotOn.UseVisualStyleBackColor = true;
            // 
            // lineChart
            // 
            this.lineChart.BackColor = System.Drawing.Color.Transparent;
            chartArea11.Name = "ChartArea1";
            this.lineChart.ChartAreas.Add(chartArea11);
            legend3.Name = "Legend1";
            this.lineChart.Legends.Add(legend3);
            this.lineChart.Location = new System.Drawing.Point(6, 243);
            this.lineChart.Name = "lineChart";
            this.lineChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Fire;
            series17.ChartArea = "ChartArea1";
            series17.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series17.Legend = "Legend1";
            series17.LegendText = "Left";
            series17.Name = "Series1";
            series18.ChartArea = "ChartArea1";
            series18.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series18.Legend = "Legend1";
            series18.LegendText = "Right";
            series18.Name = "Series2";
            this.lineChart.Series.Add(series17);
            this.lineChart.Series.Add(series18);
            this.lineChart.Size = new System.Drawing.Size(800, 207);
            this.lineChart.TabIndex = 40;
            this.lineChart.Text = "chart1";
            // 
            // tabPage5
            // 
            this.tabPage5.BackColor = System.Drawing.Color.WhiteSmoke;
            this.tabPage5.Controls.Add(this.ClearMagnet);
            this.tabPage5.Controls.Add(this.MagnetPlotOn);
            this.tabPage5.Controls.Add(this.VortexChart);
            this.tabPage5.Location = new System.Drawing.Point(4, 22);
            this.tabPage5.Name = "tabPage5";
            this.tabPage5.Size = new System.Drawing.Size(806, 483);
            this.tabPage5.TabIndex = 3;
            this.tabPage5.Text = "Magnetometer";
            // 
            // ClearMagnet
            // 
            this.ClearMagnet.Location = new System.Drawing.Point(706, 397);
            this.ClearMagnet.Name = "ClearMagnet";
            this.ClearMagnet.Size = new System.Drawing.Size(75, 23);
            this.ClearMagnet.TabIndex = 2;
            this.ClearMagnet.Text = "Clear Graph";
            this.ClearMagnet.UseVisualStyleBackColor = true;
            this.ClearMagnet.Click += new System.EventHandler(this.ClearMagnet_Click);
            // 
            // MagnetPlotOn
            // 
            this.MagnetPlotOn.AutoSize = true;
            this.MagnetPlotOn.Location = new System.Drawing.Point(706, 24);
            this.MagnetPlotOn.Name = "MagnetPlotOn";
            this.MagnetPlotOn.Size = new System.Drawing.Size(40, 17);
            this.MagnetPlotOn.TabIndex = 1;
            this.MagnetPlotOn.Text = "On";
            this.MagnetPlotOn.UseVisualStyleBackColor = true;
            // 
            // VortexChart
            // 
            this.VortexChart.BackColor = System.Drawing.Color.Transparent;
            chartArea12.Name = "ChartArea1";
            this.VortexChart.ChartAreas.Add(chartArea12);
            this.VortexChart.Location = new System.Drawing.Point(-20, 0);
            this.VortexChart.Name = "VortexChart";
            this.VortexChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SeaGreen;
            series19.ChartArea = "ChartArea1";
            series19.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
            series19.Name = "Series1";
            this.VortexChart.Series.Add(series19);
            this.VortexChart.Size = new System.Drawing.Size(741, 468);
            this.VortexChart.TabIndex = 0;
            this.VortexChart.Text = "chart1";
            // 
            // tabPage4
            // 
            this.tabPage4.BackColor = System.Drawing.Color.WhiteSmoke;
            this.tabPage4.Controls.Add(this.riverH);
            this.tabPage4.Controls.Add(this.riverW);
            this.tabPage4.Controls.Add(this.RiverClipboard);
            this.tabPage4.Controls.Add(this.RiverDataOn);
            this.tabPage4.Controls.Add(this.RiverClear);
            this.tabPage4.Controls.Add(this.RiverChart);
            this.tabPage4.Location = new System.Drawing.Point(4, 22);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(806, 483);
            this.tabPage4.TabIndex = 2;
            this.tabPage4.Text = "River bed";
            // 
            // riverH
            // 
            this.riverH.Location = new System.Drawing.Point(520, 355);
            this.riverH.Name = "riverH";
            this.riverH.Size = new System.Drawing.Size(92, 20);
            this.riverH.TabIndex = 48;
            this.riverH.Text = "580";
            // 
            // riverW
            // 
            this.riverW.Location = new System.Drawing.Point(453, 355);
            this.riverW.Name = "riverW";
            this.riverW.Size = new System.Drawing.Size(61, 20);
            this.riverW.TabIndex = 47;
            this.riverW.Text = "2400";
            // 
            // RiverClipboard
            // 
            this.RiverClipboard.Location = new System.Drawing.Point(638, 138);
            this.RiverClipboard.Name = "RiverClipboard";
            this.RiverClipboard.Size = new System.Drawing.Size(74, 23);
            this.RiverClipboard.TabIndex = 46;
            this.RiverClipboard.Text = "To Clipboard";
            this.RiverClipboard.UseVisualStyleBackColor = true;
            this.RiverClipboard.Click += new System.EventHandler(this.RiverClipboard_Click);
            // 
            // RiverDataOn
            // 
            this.RiverDataOn.AutoSize = true;
            this.RiverDataOn.Location = new System.Drawing.Point(638, 196);
            this.RiverDataOn.Name = "RiverDataOn";
            this.RiverDataOn.Size = new System.Drawing.Size(70, 17);
            this.RiverDataOn.TabIndex = 45;
            this.RiverDataOn.Text = "Plot Data";
            this.RiverDataOn.UseVisualStyleBackColor = true;
            this.RiverDataOn.CheckedChanged += new System.EventHandler(this.RiverDataOn_CheckedChanged);
            // 
            // RiverClear
            // 
            this.RiverClear.Location = new System.Drawing.Point(638, 167);
            this.RiverClear.Name = "RiverClear";
            this.RiverClear.Size = new System.Drawing.Size(75, 23);
            this.RiverClear.TabIndex = 44;
            this.RiverClear.Text = "Clear Graph";
            this.RiverClear.UseVisualStyleBackColor = true;
            this.RiverClear.Click += new System.EventHandler(this.RiverClear_Click);
            // 
            // RiverChart
            // 
            this.RiverChart.BackColor = System.Drawing.Color.Transparent;
            chartArea13.Name = "ChartArea1";
            this.RiverChart.ChartAreas.Add(chartArea13);
            this.RiverChart.Location = new System.Drawing.Point(21, 17);
            this.RiverChart.Name = "RiverChart";
            this.RiverChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
            series20.ChartArea = "ChartArea1";
            series20.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series20.LegendText = "Left";
            series20.Name = "Series1";
            series21.ChartArea = "ChartArea1";
            series21.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series21.LegendText = "Right";
            series21.Name = "Series2";
            this.RiverChart.Series.Add(series20);
            this.RiverChart.Series.Add(series21);
            this.RiverChart.Size = new System.Drawing.Size(611, 332);
            this.RiverChart.TabIndex = 41;
            this.RiverChart.Text = "chart1";
            // 
            // tabPage6
            // 
            this.tabPage6.Controls.Add(this.on);
            this.tabPage6.Controls.Add(this.accelchartDist);
            this.tabPage6.Location = new System.Drawing.Point(4, 22);
            this.tabPage6.Name = "tabPage6";
            this.tabPage6.Size = new System.Drawing.Size(806, 483);
            this.tabPage6.TabIndex = 4;
            this.tabPage6.Text = "debug";
            this.tabPage6.UseVisualStyleBackColor = true;
            // 
            // on
            // 
            this.on.AutoSize = true;
            this.on.Location = new System.Drawing.Point(632, 90);
            this.on.Name = "on";
            this.on.Size = new System.Drawing.Size(38, 17);
            this.on.TabIndex = 1;
            this.on.Text = "on";
            this.on.UseVisualStyleBackColor = true;
            // 
            // accelchartDist
            // 
            chartArea14.Name = "ChartArea1";
            this.accelchartDist.ChartAreas.Add(chartArea14);
            legend4.Name = "Legend1";
            this.accelchartDist.Legends.Add(legend4);
            this.accelchartDist.Location = new System.Drawing.Point(86, 17);
            this.accelchartDist.Name = "accelchartDist";
            series22.ChartArea = "ChartArea1";
            series22.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series22.Legend = "Legend1";
            series22.Name = "Series1";
            series23.ChartArea = "ChartArea1";
            series23.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series23.Legend = "Legend1";
            series23.Name = "Series2";
            series24.ChartArea = "ChartArea1";
            series24.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series24.Legend = "Legend1";
            series24.Name = "Series3";
            this.accelchartDist.Series.Add(series22);
            this.accelchartDist.Series.Add(series23);
            this.accelchartDist.Series.Add(series24);
            this.accelchartDist.Size = new System.Drawing.Size(645, 409);
            this.accelchartDist.TabIndex = 0;
            this.accelchartDist.Text = "chart1";
            this.accelchartDist.Click += new System.EventHandler(this.accelchartDist_Click);
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label14.Location = new System.Drawing.Point(23, 292);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(229, 25);
            this.label14.TabIndex = 67;
            this.label14.Text = "Cybernetics Challenge";
            // 
            // Main
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1058, 522);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox1);
            this.Name = "Main";
            this.Text = "Rover GUI";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
            this.Load += new System.EventHandler(this.Main_Load);
            this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Main_KeyPress);
            this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Main_KeyUp);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.Accelerometer.ResumeLayout(false);
            this.Accelerometer.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.groupBox12.ResumeLayout(false);
            this.groupBox12.PerformLayout();
            this.groupBox11.ResumeLayout(false);
            this.groupBox11.PerformLayout();
            this.groupBox10.ResumeLayout(false);
            this.groupBox10.PerformLayout();
            this.groupBox9.ResumeLayout(false);
            this.groupBox9.PerformLayout();
            this.groupBox8.ResumeLayout(false);
            this.groupBox8.PerformLayout();
            this.groupBox7.ResumeLayout(false);
            this.groupBox7.PerformLayout();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.accelChart)).EndInit();
            this.groupBox5.ResumeLayout(false);
            this.groupBox5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.magnetChart)).EndInit();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.servoBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.servoBar2)).EndInit();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.speedbar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.photoChart)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.tabPage3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.lineChart)).EndInit();
            this.tabPage5.ResumeLayout(false);
            this.tabPage5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.VortexChart)).EndInit();
            this.tabPage4.ResumeLayout(false);
            this.tabPage4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.RiverChart)).EndInit();
            this.tabPage6.ResumeLayout(false);
            this.tabPage6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.accelchartDist)).EndInit();
            this.ResumeLayout(false);

        }
예제 #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series4      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series5      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series6      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.taskChart          = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.coresChart         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label1             = new System.Windows.Forms.Label();
     this.txtSlaveState      = new System.Windows.Forms.TextBox();
     this.mainSplitContainer = new System.Windows.Forms.SplitContainer();
     this.coresGroupBox      = new System.Windows.Forms.GroupBox();
     this.groupBoxTaskChart  = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.taskChart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.coresChart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).BeginInit();
     this.mainSplitContainer.Panel1.SuspendLayout();
     this.mainSplitContainer.Panel2.SuspendLayout();
     this.mainSplitContainer.SuspendLayout();
     this.coresGroupBox.SuspendLayout();
     this.groupBoxTaskChart.SuspendLayout();
     this.SuspendLayout();
     //
     // taskChart
     //
     this.taskChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     customLabel1.Text = "Jobs";
     customLabel2.Text = "Aborted Jobs";
     customLabel3.Text = "Finished Jobs";
     customLabel4.Text = "Fetched Jobs";
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.Enabled               = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX.MajorGrid.Enabled     = false;
     chartArea1.AxisX.MajorTickMark.Enabled = false;
     chartArea1.AxisY.Enabled               = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY.Title              = "Number of...";
     chartArea1.InnerPlotPosition.Auto   = false;
     chartArea1.InnerPlotPosition.Height = 97F;
     chartArea1.InnerPlotPosition.Width  = 97F;
     chartArea1.InnerPlotPosition.X      = 3F;
     chartArea1.InnerPlotPosition.Y      = 3F;
     chartArea1.Name = "ChartArea1";
     this.taskChart.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.taskChart.Legends.Add(legend1);
     this.taskChart.Location = new System.Drawing.Point(6, 19);
     this.taskChart.Name     = "taskChart";
     series1.ChartArea       = "ChartArea1";
     series1.Legend          = "Legend1";
     series1.Name            = "Series1";
     series2.ChartArea       = "ChartArea1";
     series2.Legend          = "Legend1";
     series2.Name            = "Series2";
     series3.ChartArea       = "ChartArea1";
     series3.Legend          = "Legend1";
     series3.Name            = "Series3";
     series4.ChartArea       = "ChartArea1";
     series4.Legend          = "Legend1";
     series4.Name            = "Series4";
     series5.ChartArea       = "ChartArea1";
     series5.Legend          = "Legend1";
     series5.Name            = "Series5";
     this.taskChart.Series.Add(series1);
     this.taskChart.Series.Add(series2);
     this.taskChart.Series.Add(series3);
     this.taskChart.Series.Add(series4);
     this.taskChart.Series.Add(series5);
     this.taskChart.Size     = new System.Drawing.Size(406, 178);
     this.taskChart.TabIndex = 7;
     //
     // coresChart
     //
     this.coresChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     chartArea2.Name = "ChartArea1";
     this.coresChart.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.coresChart.Legends.Add(legend2);
     this.coresChart.Location = new System.Drawing.Point(6, 19);
     this.coresChart.Name     = "coresChart";
     series6.ChartArea        = "ChartArea1";
     series6.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
     series6.Legend           = "Legend1";
     series6.Name             = "Series1";
     this.coresChart.Series.Add(series6);
     this.coresChart.Size     = new System.Drawing.Size(187, 72);
     this.coresChart.TabIndex = 9;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(5, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(65, 13);
     this.label1.TabIndex = 14;
     this.label1.Text     = "Slave State:";
     //
     // txtSlaveState
     //
     this.txtSlaveState.Enabled  = false;
     this.txtSlaveState.Location = new System.Drawing.Point(76, 3);
     this.txtSlaveState.Name     = "txtSlaveState";
     this.txtSlaveState.Size     = new System.Drawing.Size(100, 20);
     this.txtSlaveState.TabIndex = 15;
     //
     // mainSplitContainer
     //
     this.mainSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.mainSplitContainer.Location    = new System.Drawing.Point(3, 3);
     this.mainSplitContainer.Name        = "mainSplitContainer";
     this.mainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // mainSplitContainer.Panel1
     //
     this.mainSplitContainer.Panel1.Controls.Add(this.coresGroupBox);
     this.mainSplitContainer.Panel1.Controls.Add(this.txtSlaveState);
     this.mainSplitContainer.Panel1.Controls.Add(this.label1);
     //
     // mainSplitContainer.Panel2
     //
     this.mainSplitContainer.Panel2.Controls.Add(this.groupBoxTaskChart);
     this.mainSplitContainer.Size             = new System.Drawing.Size(424, 319);
     this.mainSplitContainer.SplitterDistance = 106;
     this.mainSplitContainer.TabIndex         = 16;
     //
     // coresGroupBox
     //
     this.coresGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.coresGroupBox.Controls.Add(this.coresChart);
     this.coresGroupBox.Location = new System.Drawing.Point(216, 6);
     this.coresGroupBox.Name     = "coresGroupBox";
     this.coresGroupBox.Size     = new System.Drawing.Size(199, 97);
     this.coresGroupBox.TabIndex = 0;
     this.coresGroupBox.TabStop  = false;
     this.coresGroupBox.Text     = "Cores";
     //
     // groupBoxTaskChart
     //
     this.groupBoxTaskChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                            | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxTaskChart.Controls.Add(this.taskChart);
     this.groupBoxTaskChart.Location = new System.Drawing.Point(3, 3);
     this.groupBoxTaskChart.Name     = "groupBoxTaskChart";
     this.groupBoxTaskChart.Size     = new System.Drawing.Size(418, 203);
     this.groupBoxTaskChart.TabIndex = 0;
     this.groupBoxTaskChart.TabStop  = false;
     this.groupBoxTaskChart.Text     = "Tasks";
     //
     // SlaveStats
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.mainSplitContainer);
     this.Name = "SlaveStats";
     this.Size = new System.Drawing.Size(430, 325);
     ((System.ComponentModel.ISupportInitialize)(this.taskChart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.coresChart)).EndInit();
     this.mainSplitContainer.Panel1.ResumeLayout(false);
     this.mainSplitContainer.Panel1.PerformLayout();
     this.mainSplitContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).EndInit();
     this.mainSplitContainer.ResumeLayout(false);
     this.coresGroupBox.ResumeLayout(false);
     this.groupBoxTaskChart.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea4    = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel16 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel17 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel18 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel19 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel20 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series4       = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.panel1    = new System.Windows.Forms.Panel();
     this.btnAddNew = new System.Windows.Forms.Button();
     this.panel2    = new System.Windows.Forms.Panel();
     this.timer1    = new System.Windows.Forms.Timer(this.components);
     this.panel3    = new System.Windows.Forms.Panel();
     this.panel4    = new System.Windows.Forms.Panel();
     this.chart     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.listView1 = new System.Windows.Forms.ListView();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnAddNew);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 389);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(741, 48);
     this.panel1.TabIndex = 0;
     //
     // btnAddNew
     //
     this.btnAddNew.Dock     = System.Windows.Forms.DockStyle.Right;
     this.btnAddNew.Location = new System.Drawing.Point(634, 0);
     this.btnAddNew.Name     = "btnAddNew";
     this.btnAddNew.Size     = new System.Drawing.Size(107, 48);
     this.btnAddNew.TabIndex = 0;
     this.btnAddNew.Text     = "Add new";
     this.btnAddNew.UseVisualStyleBackColor = true;
     this.btnAddNew.Click += new System.EventHandler(this.btnAddNew_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(741, 389);
     this.panel2.TabIndex = 1;
     //
     // timer1
     //
     this.timer1.Interval = 500;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.chart);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(741, 210);
     this.panel3.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.listView1);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 210);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(741, 179);
     this.panel4.TabIndex = 0;
     //
     // chart
     //
     chartArea4.AxisX.CustomLabels.Add(customLabel16);
     chartArea4.AxisX.CustomLabels.Add(customLabel17);
     chartArea4.AxisX.CustomLabels.Add(customLabel18);
     chartArea4.AxisX.CustomLabels.Add(customLabel19);
     chartArea4.AxisX.CustomLabels.Add(customLabel20);
     chartArea4.Name = "ChartArea1";
     this.chart.ChartAreas.Add(chartArea4);
     this.chart.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.chart.Location = new System.Drawing.Point(0, 0);
     this.chart.Name     = "chart";
     series4.ChartArea   = "ChartArea1";
     series4.Name        = "Series1";
     this.chart.Series.Add(series4);
     this.chart.Size     = new System.Drawing.Size(741, 210);
     this.chart.TabIndex = 2;
     this.chart.Text     = "chart1";
     //
     // listView1
     //
     this.listView1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.listView1.Location = new System.Drawing.Point(0, 0);
     this.listView1.Name     = "listView1";
     this.listView1.Size     = new System.Drawing.Size(741, 179);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // frmTest
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(741, 437);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name        = "frmTest";
     this.Text        = "frmTest";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.frmTest_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
     this.ResumeLayout(false);
 }
예제 #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 80);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 85);
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint5   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 65);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint6   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint7   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 60);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint8   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 75);
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint9   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 50);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint10  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 55);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint11  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 40);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint12  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 70);
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.ChartBackColor  = new System.Windows.Forms.ComboBox();
     this.ShadowOffset    = new System.Windows.Forms.ComboBox();
     this.ChartForeColor  = new System.Windows.Forms.ComboBox();
     this.HatchStyle      = new System.Windows.Forms.ComboBox();
     this.Gradient        = new System.Windows.Forms.ComboBox();
     this.BorderColor     = new System.Windows.Forms.ComboBox();
     this.BorderDashStyle = new System.Windows.Forms.ComboBox();
     this.BorderSize      = new System.Windows.Forms.ComboBox();
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.label5          = new System.Windows.Forms.Label();
     this.label6          = new System.Windows.Forms.Label();
     this.label7          = new System.Windows.Forms.Label();
     this.label8          = new System.Windows.Forms.Label();
     this.label9          = new System.Windows.Forms.Label();
     this.panel1          = new System.Windows.Forms.Panel();
     this.Chart1          = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).BeginInit();
     this.SuspendLayout();
     //
     // ChartBackColor
     //
     this.ChartBackColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ChartBackColor.Items.AddRange(new object[] {
         "Transparent",
         "White",
         "Blue",
         "Red",
         "Green",
         "Yellow",
         "Maroon",
         "Gray",
         "Gainsboro"
     });
     this.ChartBackColor.Location              = new System.Drawing.Point(168, 8);
     this.ChartBackColor.Name                  = "ChartBackColor";
     this.ChartBackColor.TabIndex              = 3;
     this.ChartBackColor.SelectedIndexChanged += new System.EventHandler(this.BackColor_SelectedIndexChanged);
     //
     // ShadowOffset
     //
     this.ShadowOffset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ShadowOffset.Items.AddRange(new object[] {
         "0",
         "1",
         "2",
         "3",
         "4",
         "5"
     });
     this.ShadowOffset.Location              = new System.Drawing.Point(168, 248);
     this.ShadowOffset.Name                  = "ShadowOffset";
     this.ShadowOffset.TabIndex              = 15;
     this.ShadowOffset.SelectedIndexChanged += new System.EventHandler(this.ShadowOffset_SelectedIndexChanged);
     //
     // ChartForeColor
     //
     this.ChartForeColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ChartForeColor.Items.AddRange(new object[] {
         "Transparent",
         "White",
         "Blue",
         "Red",
         "Green",
         "Yellow",
         "Maroon",
         "Gray",
         "Gainsboro"
     });
     this.ChartForeColor.Location              = new System.Drawing.Point(168, 104);
     this.ChartForeColor.Name                  = "ChartForeColor";
     this.ChartForeColor.TabIndex              = 1;
     this.ChartForeColor.SelectedIndexChanged += new System.EventHandler(this.ChartForeColor_SelectedIndexChanged);
     //
     // HatchStyle
     //
     this.HatchStyle.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.HatchStyle.Location              = new System.Drawing.Point(168, 72);
     this.HatchStyle.Name                  = "HatchStyle";
     this.HatchStyle.TabIndex              = 7;
     this.HatchStyle.SelectedIndexChanged += new System.EventHandler(this.HatchStyle_SelectedIndexChanged);
     //
     // Gradient
     //
     this.Gradient.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Gradient.Location              = new System.Drawing.Point(168, 40);
     this.Gradient.Name                  = "Gradient";
     this.Gradient.TabIndex              = 5;
     this.Gradient.SelectedIndexChanged += new System.EventHandler(this.Gradient_SelectedIndexChanged);
     //
     // BorderColor
     //
     this.BorderColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderColor.Items.AddRange(new object[] {
         "Transparent",
         "Black",
         "White",
         "Blue",
         "Red",
         "Green",
         "Yellow",
         "Maroon",
         "Gray",
         "Gainsboro"
     });
     this.BorderColor.Location              = new System.Drawing.Point(168, 144);
     this.BorderColor.Name                  = "BorderColor";
     this.BorderColor.TabIndex              = 11;
     this.BorderColor.SelectedIndexChanged += new System.EventHandler(this.BorderColor_SelectedIndexChanged);
     //
     // BorderDashStyle
     //
     this.BorderDashStyle.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderDashStyle.Location              = new System.Drawing.Point(168, 176);
     this.BorderDashStyle.Name                  = "BorderDashStyle";
     this.BorderDashStyle.TabIndex              = 9;
     this.BorderDashStyle.SelectedIndexChanged += new System.EventHandler(this.BorderDashStyle_SelectedIndexChanged);
     //
     // BorderSize
     //
     this.BorderSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderSize.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4",
         "5"
     });
     this.BorderSize.Location              = new System.Drawing.Point(168, 208);
     this.BorderSize.Name                  = "BorderSize";
     this.BorderSize.TabIndex              = 13;
     this.BorderSize.SelectedIndexChanged += new System.EventHandler(this.BorderSize_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(12, 253);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(156, 13);
     this.label1.TabIndex  = 14;
     this.label1.Text      = "Shadow &Offset:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(12, 104);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(156, 19);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "&Secondary Back Color:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(11, 10);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(156, 19);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "&Back Color:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(12, 48);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(156, 13);
     this.label4.TabIndex  = 4;
     this.label4.Text      = "&Gradient:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(12, 80);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(156, 13);
     this.label5.TabIndex  = 6;
     this.label5.Text      = "&Hatch Style:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(12, 184);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(156, 13);
     this.label6.TabIndex  = 8;
     this.label6.Text      = "&Border Style:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(12, 152);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(156, 13);
     this.label7.TabIndex  = 10;
     this.label7.Text      = "B&order Color:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(12, 216);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(156, 13);
     this.label8.TabIndex  = 12;
     this.label8.Text      = "Bo&rder Size:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Font      = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label9.Location  = new System.Drawing.Point(16, 8);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(702, 34);
     this.label9.TabIndex  = 0;
     this.label9.Text      = "This sample demonstrates how to set the appearance of the legend.";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.BorderDashStyle,
         this.label5,
         this.Gradient,
         this.label6,
         this.label4,
         this.HatchStyle,
         this.label7,
         this.label3,
         this.ShadowOffset,
         this.label1,
         this.label2,
         this.label8,
         this.BorderSize,
         this.ChartBackColor,
         this.ChartForeColor,
         this.BorderColor
     });
     this.panel1.Location = new System.Drawing.Point(432, 56);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 296);
     this.panel1.TabIndex = 2;
     //
     // Chart1
     //
     this.Chart1.BackColor                   = System.Drawing.Color.WhiteSmoke;
     this.Chart1.BackSecondaryColor          = System.Drawing.Color.White;
     this.Chart1.BackGradientStyle           = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.Chart1.BorderlineColor             = System.Drawing.Color.FromArgb(((System.Byte)(26)), ((System.Byte)(59)), ((System.Byte)(105)));
     this.Chart1.BorderlineDashStyle         = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.Chart1.BorderlineWidth             = 2;
     this.Chart1.BorderSkin.SkinStyle        = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.IsClustered      = true;
     chartArea1.Area3DStyle.Enable3D         = true;
     chartArea1.Area3DStyle.Perspective      = 10;
     chartArea1.Area3DStyle.PointGapDepth    = 0;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.WallWidth        = 0;
     chartArea1.Area3DStyle.Inclination      = 15;
     chartArea1.Area3DStyle.Rotation         = 5;
     customLabel1.FromPosition               = 0.5;
     customLabel1.Text         = "John";
     customLabel1.ToPosition   = 1.5;
     customLabel2.FromPosition = 1.5;
     customLabel2.Text         = "Mary";
     customLabel2.ToPosition   = 2.5;
     customLabel3.FromPosition = 2.5;
     customLabel3.Text         = "Jeff";
     customLabel3.ToPosition   = 3.5;
     customLabel4.FromPosition = 3.5;
     customLabel4.Text         = "Bob";
     customLabel4.ToPosition   = 4.5;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.Interval            = 1;
     chartArea1.AxisX.IsLabelAutoFit      = false;
     chartArea1.AxisX.LabelStyle.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F);
     chartArea1.AxisX.LineColor           = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.AxisY.IsLabelAutoFit      = false;
     chartArea1.AxisY.LabelStyle.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisY.LineColor           = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.BackColor          = System.Drawing.Color.WhiteSmoke;
     chartArea1.BackSecondaryColor = System.Drawing.Color.White;
     chartArea1.BorderColor        = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.Name            = "Default";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 75F;
     chartArea1.Position.Width  = 100F;
     chartArea1.Position.Y      = 8F;
     chartArea1.ShadowColor     = System.Drawing.Color.Transparent;
     this.Chart1.ChartAreas.Add(chartArea1);
     legend1.Alignment               = System.Drawing.StringAlignment.Center;
     legend1.IsTextAutoFit           = false;
     legend1.BackColor               = System.Drawing.Color.Transparent;
     legend1.Docking                 = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
     legend1.IsDockedInsideChartArea = false;
     legend1.DockedToChartArea       = "Default";
     legend1.Font        = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend1.Name        = "Default";
     this.Chart1.Legends.Add(legend1);
     this.Chart1.Location     = new System.Drawing.Point(16, 48);
     this.Chart1.Name         = "Chart1";
     this.Chart1.Palette      = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.BorderColor      = System.Drawing.Color.FromArgb(((System.Byte)(180)), ((System.Byte)(26)), ((System.Byte)(59)), ((System.Byte)(105)));
     series1.ChartArea        = "Default";
     series1.Color            = System.Drawing.Color.FromArgb(((System.Byte)(220)), ((System.Byte)(65)), ((System.Byte)(140)), ((System.Byte)(240)));
     series1.CustomProperties = "DrawingStyle=Cylinder";
     series1.Name             = "Total";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     series1.ShadowColor      = System.Drawing.Color.Transparent;
     series1.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series1.YValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.BorderColor      = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     series2.ChartArea        = "Default";
     series2.Color            = System.Drawing.Color.FromArgb(((System.Byte)(220)), ((System.Byte)(252)), ((System.Byte)(180)), ((System.Byte)(65)));
     series2.CustomProperties = "DrawingStyle=Cylinder";
     series2.Name             = "Last Week";
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.Points.Add(dataPoint8);
     series3.BorderColor      = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     series3.ChartArea        = "Default";
     series3.Color            = System.Drawing.Color.FromArgb(((System.Byte)(220)), ((System.Byte)(224)), ((System.Byte)(64)), ((System.Byte)(10)));
     series3.CustomProperties = "DrawingStyle=Cylinder";
     series3.Name             = "This Week";
     series3.Points.Add(dataPoint9);
     series3.Points.Add(dataPoint10);
     series3.Points.Add(dataPoint11);
     series3.Points.Add(dataPoint12);
     this.Chart1.Series.Add(series1);
     this.Chart1.Series.Add(series2);
     this.Chart1.Series.Add(series3);
     this.Chart1.Size       = new System.Drawing.Size(412, 296);
     this.Chart1.TabIndex   = 1;
     title1.Alignment       = System.Drawing.ContentAlignment.TopCenter;
     title1.ForeColor       = System.Drawing.Color.FromArgb(((System.Byte)(26)), ((System.Byte)(59)), ((System.Byte)(105)));
     title1.Font            = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
     title1.Position.Auto   = false;
     title1.Position.Height = 8.738057F;
     title1.Position.Width  = 80F;
     title1.Position.X      = 5F;
     title1.Position.Y      = 4F;
     title1.ShadowColor     = System.Drawing.Color.FromArgb(((System.Byte)(32)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     title1.ShadowOffset    = 3;
     title1.Text            = "Chart Control for .NET Framework";
     this.Chart1.Titles.Add(title1);
     //
     // LegendAppearance
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.Chart1,
         this.panel1,
         this.label9
     });
     this.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name = "LegendAppearance";
     this.Size = new System.Drawing.Size(728, 480);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #10
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title3 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea4 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title4 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea5 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title5 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title6 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea7 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title7 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DemoForm));
            this._dataReader = new System.ComponentModel.BackgroundWorker();
            this.advancedPanel = new System.Windows.Forms.Panel();
            this.button1 = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.samplerate = new System.Windows.Forms.ComboBox();
            this.DisconnectButton = new System.Windows.Forms.Button();
            this.ConnectButton = new System.Windows.Forms.Button();
            this.cdisp = new UMax.Controls.ControlDisplay();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.ResetButton = new System.Windows.Forms.Button();
            this.StopButton = new System.Windows.Forms.Button();
            this.RunButton = new System.Windows.Forms.Button();
            this.CloseButton = new System.Windows.Forms.Button();
            this.refa2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this._chartUpdater = new System.ComponentModel.BackgroundWorker();
            this.chart2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart3 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart4 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart5 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart6 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart7 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this._nc = new UMax.Networking.NetworkConnection();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.chl2 = new System.Windows.Forms.Label();
            this.chl3 = new System.Windows.Forms.Label();
            this.chl4 = new System.Windows.Forms.Label();
            this.chl5 = new System.Windows.Forms.Label();
            this.chl6 = new System.Windows.Forms.Label();
            this.chl7 = new System.Windows.Forms.Label();
            this.chl1 = new System.Windows.Forms.Label();
            this.laRunning = new System.Windows.Forms.Label();
            this.laStopped = new System.Windows.Forms.Label();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.advancedPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.refa2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            // 
            // _dataReader
            // 
            this._dataReader.DoWork += new System.ComponentModel.DoWorkEventHandler(this.DataReceive);
            this._dataReader.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.DataComplete);
            // 
            // advancedPanel
            // 
            this.advancedPanel.BackColor = System.Drawing.SystemColors.Control;
            this.advancedPanel.Controls.Add(this.button1);
            this.advancedPanel.Controls.Add(this.label3);
            this.advancedPanel.Controls.Add(this.samplerate);
            this.advancedPanel.Controls.Add(this.DisconnectButton);
            this.advancedPanel.Controls.Add(this.ConnectButton);
            this.advancedPanel.Controls.Add(this.cdisp);
            this.advancedPanel.Controls.Add(this.label2);
            this.advancedPanel.Controls.Add(this.label1);
            this.advancedPanel.Controls.Add(this.ResetButton);
            this.advancedPanel.Controls.Add(this.StopButton);
            this.advancedPanel.Controls.Add(this.RunButton);
            this.advancedPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.advancedPanel.Location = new System.Drawing.Point(0, 334);
            this.advancedPanel.Name = "advancedPanel";
            this.advancedPanel.Size = new System.Drawing.Size(962, 200);
            this.advancedPanel.TabIndex = 9;
            this.advancedPanel.Visible = false;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(3, 88);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(237, 23);
            this.button1.TabIndex = 16;
            this.button1.Text = "Buffer to CSV";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.Button1Clicked);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(50, 64);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(68, 13);
            this.label3.TabIndex = 15;
            this.label3.Text = "Sample Rate";
            // 
            // samplerate
            // 
            this.samplerate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.samplerate.FormattingEnabled = true;
            this.samplerate.Items.AddRange(new object[] {
            "0",
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9",
            "10",
            "11",
            "12",
            "13",
            "14",
            "15"});
            this.samplerate.Location = new System.Drawing.Point(124, 61);
            this.samplerate.Name = "samplerate";
            this.samplerate.Size = new System.Drawing.Size(116, 21);
            this.samplerate.TabIndex = 14;
            // 
            // DisconnectButton
            // 
            this.DisconnectButton.Enabled = false;
            this.DisconnectButton.Location = new System.Drawing.Point(124, 32);
            this.DisconnectButton.Name = "DisconnectButton";
            this.DisconnectButton.Size = new System.Drawing.Size(116, 23);
            this.DisconnectButton.TabIndex = 13;
            this.DisconnectButton.Text = "DISCONNECT";
            this.DisconnectButton.UseVisualStyleBackColor = true;
            this.DisconnectButton.Click += new System.EventHandler(this.Disconnect);
            // 
            // ConnectButton
            // 
            this.ConnectButton.Location = new System.Drawing.Point(3, 32);
            this.ConnectButton.Name = "ConnectButton";
            this.ConnectButton.Size = new System.Drawing.Size(115, 23);
            this.ConnectButton.TabIndex = 12;
            this.ConnectButton.Text = "CONNECT";
            this.ConnectButton.UseVisualStyleBackColor = true;
            this.ConnectButton.Click += new System.EventHandler(this.Connect);
            // 
            // cdisp
            // 
            this.cdisp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cdisp.Location = new System.Drawing.Point(246, 3);
            this.cdisp.Name = "cdisp";
            this.cdisp.Path = "";
            this.cdisp.Size = new System.Drawing.Size(713, 194);
            this.cdisp.TabIndex = 11;
            this.cdisp.UpdateEvent += new UMax.Controls.UpdateEventHandler(this.ControlsUpdated);
            this.cdisp.ConfigChangedEvent += new UMax.Controls.ConfigChangedEventHandler(this.ControlDisplayConfigurationChanged);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 178);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(76, 13);
            this.label2.TabIndex = 4;
            this.label2.Text = "Disconnected.";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 165);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(46, 13);
            this.label1.TabIndex = 3;
            this.label1.Text = "Offline...";
            // 
            // ResetButton
            // 
            this.ResetButton.Location = new System.Drawing.Point(165, 3);
            this.ResetButton.Name = "ResetButton";
            this.ResetButton.Size = new System.Drawing.Size(75, 23);
            this.ResetButton.TabIndex = 2;
            this.ResetButton.Text = "RESET";
            this.ResetButton.UseVisualStyleBackColor = true;
            this.ResetButton.Click += new System.EventHandler(this.ResetTest);
            // 
            // StopButton
            // 
            this.StopButton.Enabled = false;
            this.StopButton.Location = new System.Drawing.Point(84, 3);
            this.StopButton.Name = "StopButton";
            this.StopButton.Size = new System.Drawing.Size(75, 23);
            this.StopButton.TabIndex = 1;
            this.StopButton.Text = "STOP";
            this.StopButton.UseVisualStyleBackColor = true;
            this.StopButton.Click += new System.EventHandler(this.AbortTest);
            // 
            // RunButton
            // 
            this.RunButton.Location = new System.Drawing.Point(3, 3);
            this.RunButton.Name = "RunButton";
            this.RunButton.Size = new System.Drawing.Size(75, 23);
            this.RunButton.TabIndex = 0;
            this.RunButton.Text = "RUN";
            this.RunButton.UseVisualStyleBackColor = true;
            this.RunButton.Click += new System.EventHandler(this.StartTest);
            // 
            // CloseButton
            // 
            this.CloseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.CloseButton.Location = new System.Drawing.Point(875, 13);
            this.CloseButton.Name = "CloseButton";
            this.CloseButton.Size = new System.Drawing.Size(75, 32);
            this.CloseButton.TabIndex = 14;
            this.CloseButton.Text = "Close";
            this.CloseButton.UseVisualStyleBackColor = true;
            this.CloseButton.Click += new System.EventHandler(this.FakeCloseButtonClick);
            // 
            // refa2
            // 
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.Name = "REF_A2";
            this.refa2.ChartAreas.Add(chartArea1);
            this.refa2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.refa2.Location = new System.Drawing.Point(100, 118);
            this.refa2.Name = "refa2";
            series1.BorderWidth = 5;
            series1.ChartArea = "REF_A2";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series1.Color = System.Drawing.Color.Red;
            series1.Name = "Series1";
            this.refa2.Series.Add(series1);
            this.refa2.Size = new System.Drawing.Size(105, 87);
            this.refa2.TabIndex = 15;
            this.refa2.Text = "chart1";
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title1.Name = "Title1";
            title1.Text = "Self-Powering";
            this.refa2.Titles.Add(title1);
            this.refa2.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // _chartUpdater
            // 
            this._chartUpdater.DoWork += new System.ComponentModel.DoWorkEventHandler(this.MiniChartUpdater);
            // 
            // chart2
            // 
            chartArea2.AxisX.CustomLabels.Add(customLabel2);
            chartArea2.Name = "ChartArea1";
            this.chart2.ChartAreas.Add(chartArea2);
            this.chart2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chart2.Location = new System.Drawing.Point(211, 118);
            this.chart2.Name = "chart2";
            series2.BorderWidth = 5;
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series2.Color = System.Drawing.Color.Red;
            series2.Name = "Series1";
            this.chart2.Series.Add(series2);
            this.chart2.Size = new System.Drawing.Size(105, 87);
            this.chart2.TabIndex = 16;
            this.chart2.Text = "chart2";
            title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title2.Name = "Title1";
            title2.Text = "Vout1 (1.8V Cap)";
            this.chart2.Titles.Add(title2);
            this.chart2.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // chart3
            // 
            chartArea3.AxisX.CustomLabels.Add(customLabel3);
            chartArea3.Name = "ChartArea1";
            this.chart3.ChartAreas.Add(chartArea3);
            this.chart3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chart3.Location = new System.Drawing.Point(322, 118);
            this.chart3.Name = "chart3";
            series3.BorderWidth = 5;
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series3.Color = System.Drawing.Color.Red;
            series3.Name = "Series1";
            this.chart3.Series.Add(series3);
            this.chart3.Size = new System.Drawing.Size(105, 87);
            this.chart3.TabIndex = 17;
            this.chart3.Text = "chart3";
            title3.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title3.Name = "Title1";
            title3.Text = "Vout2 (1.2V Cap)";
            this.chart3.Titles.Add(title3);
            this.chart3.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // chart4
            // 
            chartArea4.AxisX.CustomLabels.Add(customLabel4);
            chartArea4.Name = "ChartArea1";
            this.chart4.ChartAreas.Add(chartArea4);
            this.chart4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chart4.Location = new System.Drawing.Point(433, 118);
            this.chart4.Name = "chart4";
            series4.BorderWidth = 5;
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series4.Color = System.Drawing.Color.Red;
            series4.Name = "Series1";
            this.chart4.Series.Add(series4);
            this.chart4.Size = new System.Drawing.Size(105, 87);
            this.chart4.TabIndex = 18;
            this.chart4.Text = "chart4";
            title4.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title4.Name = "Title1";
            title4.Text = "VAA Out";
            this.chart4.Titles.Add(title4);
            this.chart4.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // chart5
            // 
            chartArea5.AxisX.CustomLabels.Add(customLabel5);
            chartArea5.Name = "ChartArea1";
            this.chart5.ChartAreas.Add(chartArea5);
            this.chart5.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chart5.Location = new System.Drawing.Point(100, 211);
            this.chart5.Name = "chart5";
            series5.BorderWidth = 5;
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series5.Color = System.Drawing.Color.Red;
            series5.Name = "Series1";
            this.chart5.Series.Add(series5);
            this.chart5.Size = new System.Drawing.Size(105, 87);
            this.chart5.TabIndex = 19;
            this.chart5.Text = "chart5";
            title5.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title5.Name = "Title1";
            title5.Text = "VPilot (Pilot Cell)";
            this.chart5.Titles.Add(title5);
            this.chart5.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // chart6
            // 
            chartArea6.AxisX.CustomLabels.Add(customLabel6);
            chartArea6.Name = "ChartArea1";
            this.chart6.ChartAreas.Add(chartArea6);
            this.chart6.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chart6.Location = new System.Drawing.Point(211, 211);
            this.chart6.Name = "chart6";
            series6.BorderWidth = 5;
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series6.Color = System.Drawing.Color.Red;
            series6.Name = "Series1";
            this.chart6.Series.Add(series6);
            this.chart6.Size = new System.Drawing.Size(105, 87);
            this.chart6.TabIndex = 20;
            this.chart6.Text = "chart6";
            title6.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title6.Name = "Title1";
            title6.Text = "VBattery";
            this.chart6.Titles.Add(title6);
            this.chart6.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // chart7
            // 
            chartArea7.AxisX.CustomLabels.Add(customLabel7);
            chartArea7.Name = "ChartArea1";
            this.chart7.ChartAreas.Add(chartArea7);
            this.chart7.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chart7.Location = new System.Drawing.Point(322, 211);
            this.chart7.Name = "chart7";
            series7.BorderWidth = 5;
            series7.ChartArea = "ChartArea1";
            series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series7.Color = System.Drawing.Color.Red;
            series7.Name = "Series1";
            this.chart7.Series.Add(series7);
            this.chart7.Size = new System.Drawing.Size(105, 87);
            this.chart7.TabIndex = 21;
            this.chart7.Text = "chart7";
            title7.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title7.Name = "Title1";
            title7.Text = "VSolar (Solar Array)";
            this.chart7.Titles.Add(title7);
            this.chart7.Click += new System.EventHandler(this.PlotDisplayClick);
            // 
            // _nc
            // 
            this._nc.OnStatusChange += new UMax.Networking.NetworkConnection.NetworkStatusEvent(this.NetworkConnectionStatus);
            // 
            // checkBox1
            // 
            this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.checkBox1.AutoSize = true;
            this.checkBox1.Location = new System.Drawing.Point(794, 22);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(75, 17);
            this.checkBox1.TabIndex = 22;
            this.checkBox1.Text = "Advanced";
            this.checkBox1.UseVisualStyleBackColor = true;
            this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1CheckedChanged);
            // 
            // chl2
            // 
            this.chl2.AutoSize = true;
            this.chl2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl2.ForeColor = System.Drawing.Color.Red;
            this.chl2.Location = new System.Drawing.Point(670, 127);
            this.chl2.Name = "chl2";
            this.chl2.Size = new System.Drawing.Size(20, 13);
            this.chl2.TabIndex = 23;
            this.chl2.Tag = "";
            this.chl2.Text = "lbl";
            // 
            // chl3
            // 
            this.chl3.AutoSize = true;
            this.chl3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl3.ForeColor = System.Drawing.Color.Red;
            this.chl3.Location = new System.Drawing.Point(670, 140);
            this.chl3.Name = "chl3";
            this.chl3.Size = new System.Drawing.Size(20, 13);
            this.chl3.TabIndex = 24;
            this.chl3.Tag = "";
            this.chl3.Text = "lbl";
            // 
            // chl4
            // 
            this.chl4.AutoSize = true;
            this.chl4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl4.ForeColor = System.Drawing.Color.Red;
            this.chl4.Location = new System.Drawing.Point(670, 153);
            this.chl4.Name = "chl4";
            this.chl4.Size = new System.Drawing.Size(20, 13);
            this.chl4.TabIndex = 25;
            this.chl4.Tag = "";
            this.chl4.Text = "lbl";
            // 
            // chl5
            // 
            this.chl5.AutoSize = true;
            this.chl5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl5.ForeColor = System.Drawing.Color.Red;
            this.chl5.Location = new System.Drawing.Point(670, 166);
            this.chl5.Name = "chl5";
            this.chl5.Size = new System.Drawing.Size(20, 13);
            this.chl5.TabIndex = 26;
            this.chl5.Tag = "";
            this.chl5.Text = "lbl";
            // 
            // chl6
            // 
            this.chl6.AutoSize = true;
            this.chl6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl6.ForeColor = System.Drawing.Color.Red;
            this.chl6.Location = new System.Drawing.Point(670, 179);
            this.chl6.Name = "chl6";
            this.chl6.Size = new System.Drawing.Size(20, 13);
            this.chl6.TabIndex = 27;
            this.chl6.Tag = "";
            this.chl6.Text = "lbl";
            // 
            // chl7
            // 
            this.chl7.AutoSize = true;
            this.chl7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl7.ForeColor = System.Drawing.Color.Red;
            this.chl7.Location = new System.Drawing.Point(670, 192);
            this.chl7.Name = "chl7";
            this.chl7.Size = new System.Drawing.Size(20, 13);
            this.chl7.TabIndex = 28;
            this.chl7.Tag = "";
            this.chl7.Text = "lbl";
            // 
            // chl1
            // 
            this.chl1.AutoSize = true;
            this.chl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chl1.ForeColor = System.Drawing.Color.Red;
            this.chl1.Location = new System.Drawing.Point(670, 114);
            this.chl1.Name = "chl1";
            this.chl1.Size = new System.Drawing.Size(20, 13);
            this.chl1.TabIndex = 29;
            this.chl1.Tag = "";
            this.chl1.Text = "lbl";
            // 
            // laRunning
            // 
            this.laRunning.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.laRunning.AutoSize = true;
            this.laRunning.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.laRunning.ForeColor = System.Drawing.Color.Green;
            this.laRunning.Location = new System.Drawing.Point(800, 491);
            this.laRunning.Name = "laRunning";
            this.laRunning.Size = new System.Drawing.Size(150, 31);
            this.laRunning.TabIndex = 30;
            this.laRunning.Text = "RUNNING";
            // 
            // laStopped
            // 
            this.laStopped.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.laStopped.AutoSize = true;
            this.laStopped.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.laStopped.ForeColor = System.Drawing.Color.Red;
            this.laStopped.Location = new System.Drawing.Point(799, 491);
            this.laStopped.Name = "laStopped";
            this.laStopped.Size = new System.Drawing.Size(151, 31);
            this.laStopped.TabIndex = 31;
            this.laStopped.Text = "STOPPED";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::UMax.Properties.Resources.umaxheader;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(640, 100);
            this.pictureBox1.TabIndex = 32;
            this.pictureBox1.TabStop = false;
            // 
            // pictureBox2
            // 
            this.pictureBox2.Image = global::UMax.Properties.Resources.about;
            this.pictureBox2.Location = new System.Drawing.Point(603, 245);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(100, 50);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox2.TabIndex = 33;
            this.pictureBox2.TabStop = false;
            // 
            // DemoForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(962, 534);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.chl1);
            this.Controls.Add(this.chl7);
            this.Controls.Add(this.chl6);
            this.Controls.Add(this.chl5);
            this.Controls.Add(this.chl4);
            this.Controls.Add(this.chl3);
            this.Controls.Add(this.chl2);
            this.Controls.Add(this.advancedPanel);
            this.Controls.Add(this.checkBox1);
            this.Controls.Add(this.chart7);
            this.Controls.Add(this.chart6);
            this.Controls.Add(this.chart5);
            this.Controls.Add(this.chart4);
            this.Controls.Add(this.chart3);
            this.Controls.Add(this.chart2);
            this.Controls.Add(this.refa2);
            this.Controls.Add(this.CloseButton);
            this.Controls.Add(this.laStopped);
            this.Controls.Add(this.laRunning);
            this.Controls.Add(this.pictureBox2);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "DemoForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Demo";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CloseButtonClick);
            this.Load += new System.EventHandler(this.FormLoaded);
            this.Resize += new System.EventHandler(this.Resized);
            this.advancedPanel.ResumeLayout(false);
            this.advancedPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.refa2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FilterForm));
            this.filterChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.dropFilter0 = new System.Windows.Forms.ComboBox();
            this.lblFilterSelector0 = new System.Windows.Forms.Label();
            this.lblFilterSelector1 = new System.Windows.Forms.Label();
            this.lblFilterSelector2 = new System.Windows.Forms.Label();
            this.lblStatus = new System.Windows.Forms.Label();
            this.lblFilterSelector4 = new System.Windows.Forms.Label();
            this.lblFilterSelector3 = new System.Windows.Forms.Label();
            this.panel7 = new System.Windows.Forms.Panel();
            this.lblSlope0 = new System.Windows.Forms.Label();
            this.lblQ0 = new System.Windows.Forms.Label();
            this.lblGain0 = new System.Windows.Forms.Label();
            this.lblFreq0 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.dropSlope0 = new System.Windows.Forms.ComboBox();
            this.lblSlope1 = new System.Windows.Forms.Label();
            this.lblQ1 = new System.Windows.Forms.Label();
            this.lblGain1 = new System.Windows.Forms.Label();
            this.lblFreq1 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.dropFilter1 = new System.Windows.Forms.ComboBox();
            this.dropSlope1 = new System.Windows.Forms.ComboBox();
            this.lblSlope2 = new System.Windows.Forms.Label();
            this.lblQ2 = new System.Windows.Forms.Label();
            this.lblGain2 = new System.Windows.Forms.Label();
            this.lblFreq2 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.dropFilter2 = new System.Windows.Forms.ComboBox();
            this.dropSlope2 = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.txtFreq0 = new System.Windows.Forms.TextBox();
            this.txtGain0 = new System.Windows.Forms.TextBox();
            this.txtQval0 = new System.Windows.Forms.TextBox();
            this.txtFreq1 = new System.Windows.Forms.TextBox();
            this.txtFreq2 = new System.Windows.Forms.TextBox();
            this.txtQval1 = new System.Windows.Forms.TextBox();
            this.txtGain1 = new System.Windows.Forms.TextBox();
            this.txtQval2 = new System.Windows.Forms.TextBox();
            this.txtGain2 = new System.Windows.Forms.TextBox();
            this.txtQval5 = new System.Windows.Forms.TextBox();
            this.txtGain5 = new System.Windows.Forms.TextBox();
            this.txtQval4 = new System.Windows.Forms.TextBox();
            this.txtGain4 = new System.Windows.Forms.TextBox();
            this.txtFreq5 = new System.Windows.Forms.TextBox();
            this.txtFreq4 = new System.Windows.Forms.TextBox();
            this.txtQval3 = new System.Windows.Forms.TextBox();
            this.txtGain3 = new System.Windows.Forms.TextBox();
            this.txtFreq3 = new System.Windows.Forms.TextBox();
            this.lblSlope4 = new System.Windows.Forms.Label();
            this.lblSlope5 = new System.Windows.Forms.Label();
            this.lblQ4 = new System.Windows.Forms.Label();
            this.lblGain4 = new System.Windows.Forms.Label();
            this.lblSlope3 = new System.Windows.Forms.Label();
            this.lblFreq4 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.dropFilter4 = new System.Windows.Forms.ComboBox();
            this.lblQ5 = new System.Windows.Forms.Label();
            this.dropSlope4 = new System.Windows.Forms.ComboBox();
            this.lblGain5 = new System.Windows.Forms.Label();
            this.lblFreq5 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.dropFilter5 = new System.Windows.Forms.ComboBox();
            this.dropSlope5 = new System.Windows.Forms.ComboBox();
            this.lblQ3 = new System.Windows.Forms.Label();
            this.lblGain3 = new System.Windows.Forms.Label();
            this.lblFreq3 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.dropFilter3 = new System.Windows.Forms.ComboBox();
            this.dropSlope3 = new System.Windows.Forms.ComboBox();
            this.lblFilterSelector5 = new System.Windows.Forms.Label();
            this.dropAction = new System.Windows.Forms.ComboBox();
            this.lblAction = new System.Windows.Forms.Label();
            this.pnlButtons = new System.Windows.Forms.Panel();
            this.pnlSecondRowFilters = new System.Windows.Forms.Panel();
            this.chkBypass5 = new SA_Resources.PictureCheckbox();
            this.chkBypass4 = new SA_Resources.PictureCheckbox();
            this.chkBypass3 = new SA_Resources.PictureCheckbox();
            this.btnSave = new SA_Resources.PictureButton();
            this.btnGo = new SA_Resources.PictureButton();
            this.btnCancel = new SA_Resources.PictureButton();
            this.chkBypass2 = new SA_Resources.PictureCheckbox();
            this.chkBypass1 = new SA_Resources.PictureCheckbox();
            this.chkBypass0 = new SA_Resources.PictureCheckbox();
            ((System.ComponentModel.ISupportInitialize)(this.filterChart)).BeginInit();
            this.pnlButtons.SuspendLayout();
            this.pnlSecondRowFilters.SuspendLayout();
            this.SuspendLayout();
            // 
            // filterChart
            // 
            this.filterChart.BackColor = System.Drawing.Color.Black;
            this.filterChart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.filterChart.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Unscaled;
            customLabel1.FromPosition = 1.8D;
            customLabel1.Text = "100Hz";
            customLabel1.ToPosition = 2.2D;
            customLabel2.FromPosition = 2.8D;
            customLabel2.Text = "1kHz";
            customLabel2.ToPosition = 3.2D;
            customLabel3.FromPosition = 3.8D;
            customLabel3.Text = "10kHz";
            customLabel3.ToPosition = 4.2D;
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.CustomLabels.Add(customLabel3);
            chartArea1.AxisX.IsLogarithmic = true;
            chartArea1.AxisX.IsStartedFromZero = false;
            chartArea1.AxisX.LabelStyle.ForeColor = System.Drawing.Color.Gainsboro;
            chartArea1.AxisX.LabelStyle.Interval = 0D;
            chartArea1.AxisX.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisX.MajorGrid.Interval = 0D;
            chartArea1.AxisX.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.Gainsboro;
            chartArea1.AxisX.Maximum = 20000D;
            chartArea1.AxisX.Minimum = 10D;
            chartArea1.AxisX.MinorGrid.Enabled = true;
            chartArea1.AxisX.MinorGrid.Interval = 1D;
            chartArea1.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea1.AxisY.Interval = 10D;
            chartArea1.AxisY.IntervalOffset = 5D;
            chartArea1.AxisY.LabelStyle.ForeColor = System.Drawing.Color.Gainsboro;
            chartArea1.AxisY.MajorGrid.Interval = 10D;
            chartArea1.AxisY.MajorGrid.IntervalOffset = 5D;
            chartArea1.AxisY.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea1.AxisY.MajorTickMark.Interval = 5D;
            chartArea1.AxisY.MajorTickMark.LineColor = System.Drawing.Color.Gainsboro;
            chartArea1.AxisY.Maximum = 25D;
            chartArea1.AxisY.Minimum = -25D;
            chartArea1.AxisY.MinorGrid.Enabled = true;
            chartArea1.AxisY.MinorGrid.Interval = 5D;
            chartArea1.BackColor = System.Drawing.Color.White;
            chartArea1.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Scaled;
            chartArea1.Name = "ChartArea1";
            this.filterChart.ChartAreas.Add(chartArea1);
            this.filterChart.Location = new System.Drawing.Point(-29, -1);
            this.filterChart.Name = "filterChart";
            series1.BorderColor = System.Drawing.Color.LightCoral;
            series1.BorderWidth = 2;
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series1.Color = System.Drawing.Color.LightCoral;
            series1.IsVisibleInLegend = false;
            series1.MarkerBorderWidth = 5;
            series1.Name = "Filter #1";
            series2.BorderColor = System.Drawing.Color.Blue;
            series2.BorderWidth = 2;
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series2.Color = System.Drawing.Color.Blue;
            series2.Name = "Filter #2";
            series3.BorderColor = System.Drawing.Color.Purple;
            series3.BorderWidth = 2;
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series3.Color = System.Drawing.Color.Purple;
            series3.Name = "Filter #3";
            series4.BorderWidth = 2;
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series4.Enabled = false;
            series4.Name = "Filter #4";
            series5.BorderWidth = 2;
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series5.Enabled = false;
            series5.Name = "Filter #5";
            series6.BorderWidth = 2;
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series6.Enabled = false;
            series6.Name = "Filter #6";
            series7.BorderWidth = 4;
            series7.ChartArea = "ChartArea1";
            series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series7.Color = System.Drawing.Color.Gold;
            series7.Name = "Master Output";
            series8.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            series8.BorderWidth = 3;
            series8.ChartArea = "ChartArea1";
            series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
            series8.Color = System.Drawing.Color.Transparent;
            series8.MarkerBorderColor = System.Drawing.Color.Red;
            series8.MarkerColor = System.Drawing.Color.Yellow;
            series8.MarkerSize = 6;
            series8.Name = "Markers";
            this.filterChart.Series.Add(series1);
            this.filterChart.Series.Add(series2);
            this.filterChart.Series.Add(series3);
            this.filterChart.Series.Add(series4);
            this.filterChart.Series.Add(series5);
            this.filterChart.Series.Add(series6);
            this.filterChart.Series.Add(series7);
            this.filterChart.Series.Add(series8);
            this.filterChart.Size = new System.Drawing.Size(888, 300);
            this.filterChart.TabIndex = 0;
            this.filterChart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseDown);
            this.filterChart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseMove);
            this.filterChart.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseUp);
            // 
            // dropFilter0
            // 
            this.dropFilter0.BackColor = System.Drawing.SystemColors.Control;
            this.dropFilter0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.dropFilter0.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dropFilter0.ForeColor = System.Drawing.Color.Black;
            this.dropFilter0.FormattingEnabled = true;
            this.dropFilter0.Items.AddRange(new object[] {
            "Not Used",
            "Low Pass",
            "High Pass",
            "Low Shelf",
            "High Shelf",
            "Peak (PEQ)",
            "Notch",
            "Band Pass"});
            this.dropFilter0.Location = new System.Drawing.Point(52, 325);
            this.dropFilter0.Name = "dropFilter0";
            this.dropFilter0.Size = new System.Drawing.Size(121, 21);
            this.dropFilter0.TabIndex = 3;
            this.dropFilter0.SelectedIndexChanged += new System.EventHandler(this.dropFilter_SelectedIndexChanged);
            this.dropFilter0.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblFilterSelector0
            // 
            this.lblFilterSelector0.BackColor = System.Drawing.Color.Chocolate;
            this.lblFilterSelector0.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFilterSelector0.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFilterSelector0.Location = new System.Drawing.Point(98, 274);
            this.lblFilterSelector0.Name = "lblFilterSelector0";
            this.lblFilterSelector0.Size = new System.Drawing.Size(20, 23);
            this.lblFilterSelector0.TabIndex = 67;
            this.lblFilterSelector0.Text = "1";
            this.lblFilterSelector0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblFilterSelector0.Click += new System.EventHandler(this.lblFilterSelector_Click);
            this.lblFilterSelector0.Paint += new System.Windows.Forms.PaintEventHandler(this.lblFilterSelector_Paint);
            // 
            // lblFilterSelector1
            // 
            this.lblFilterSelector1.BackColor = System.Drawing.Color.Chartreuse;
            this.lblFilterSelector1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFilterSelector1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFilterSelector1.Location = new System.Drawing.Point(124, 274);
            this.lblFilterSelector1.Name = "lblFilterSelector1";
            this.lblFilterSelector1.Size = new System.Drawing.Size(20, 23);
            this.lblFilterSelector1.TabIndex = 68;
            this.lblFilterSelector1.Text = "2";
            this.lblFilterSelector1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblFilterSelector1.Click += new System.EventHandler(this.lblFilterSelector_Click);
            this.lblFilterSelector1.Paint += new System.Windows.Forms.PaintEventHandler(this.lblFilterSelector_Paint);
            // 
            // lblFilterSelector2
            // 
            this.lblFilterSelector2.BackColor = System.Drawing.Color.DarkMagenta;
            this.lblFilterSelector2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFilterSelector2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFilterSelector2.Location = new System.Drawing.Point(150, 274);
            this.lblFilterSelector2.Name = "lblFilterSelector2";
            this.lblFilterSelector2.Size = new System.Drawing.Size(20, 23);
            this.lblFilterSelector2.TabIndex = 69;
            this.lblFilterSelector2.Text = "3";
            this.lblFilterSelector2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblFilterSelector2.Click += new System.EventHandler(this.lblFilterSelector_Click);
            this.lblFilterSelector2.Paint += new System.Windows.Forms.PaintEventHandler(this.lblFilterSelector_Paint);
            // 
            // lblStatus
            // 
            this.lblStatus.BackColor = System.Drawing.Color.Black;
            this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblStatus.ForeColor = System.Drawing.Color.White;
            this.lblStatus.Location = new System.Drawing.Point(581, 271);
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(158, 23);
            this.lblStatus.TabIndex = 73;
            this.lblStatus.Text = "0Hz, 0dB";
            this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFilterSelector4
            // 
            this.lblFilterSelector4.BackColor = System.Drawing.Color.PaleGreen;
            this.lblFilterSelector4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFilterSelector4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFilterSelector4.Location = new System.Drawing.Point(202, 274);
            this.lblFilterSelector4.Name = "lblFilterSelector4";
            this.lblFilterSelector4.Size = new System.Drawing.Size(20, 23);
            this.lblFilterSelector4.TabIndex = 131;
            this.lblFilterSelector4.Text = "5";
            this.lblFilterSelector4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblFilterSelector4.Click += new System.EventHandler(this.lblFilterSelector_Click);
            this.lblFilterSelector4.Paint += new System.Windows.Forms.PaintEventHandler(this.lblFilterSelector_Paint);
            // 
            // lblFilterSelector3
            // 
            this.lblFilterSelector3.BackColor = System.Drawing.Color.SandyBrown;
            this.lblFilterSelector3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFilterSelector3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFilterSelector3.Location = new System.Drawing.Point(176, 274);
            this.lblFilterSelector3.Name = "lblFilterSelector3";
            this.lblFilterSelector3.Size = new System.Drawing.Size(20, 23);
            this.lblFilterSelector3.TabIndex = 130;
            this.lblFilterSelector3.Text = "4";
            this.lblFilterSelector3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblFilterSelector3.Click += new System.EventHandler(this.lblFilterSelector_Click);
            this.lblFilterSelector3.Paint += new System.Windows.Forms.PaintEventHandler(this.lblFilterSelector_Paint);
            // 
            // panel7
            // 
            this.panel7.BackColor = System.Drawing.Color.Black;
            this.panel7.Location = new System.Drawing.Point(-1, 299);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(860, 17);
            this.panel7.TabIndex = 74;
            // 
            // lblSlope0
            // 
            this.lblSlope0.AutoSize = true;
            this.lblSlope0.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSlope0.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblSlope0.Location = new System.Drawing.Point(157, 355);
            this.lblSlope0.Name = "lblSlope0";
            this.lblSlope0.Size = new System.Drawing.Size(39, 13);
            this.lblSlope0.TabIndex = 79;
            this.lblSlope0.Text = "Slope";
            this.lblSlope0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblQ0
            // 
            this.lblQ0.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQ0.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblQ0.Location = new System.Drawing.Point(184, 355);
            this.lblQ0.Name = "lblQ0";
            this.lblQ0.Size = new System.Drawing.Size(64, 13);
            this.lblQ0.TabIndex = 67;
            this.lblQ0.Text = "Q";
            this.lblQ0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblGain0
            // 
            this.lblGain0.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblGain0.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblGain0.Location = new System.Drawing.Point(109, 355);
            this.lblGain0.Name = "lblGain0";
            this.lblGain0.Size = new System.Drawing.Size(58, 13);
            this.lblGain0.TabIndex = 66;
            this.lblGain0.Text = "Gain";
            this.lblGain0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFreq0
            // 
            this.lblFreq0.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFreq0.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblFreq0.Location = new System.Drawing.Point(22, 355);
            this.lblFreq0.Name = "lblFreq0";
            this.lblFreq0.Size = new System.Drawing.Size(71, 13);
            this.lblFreq0.TabIndex = 65;
            this.lblFreq0.Text = "Center Freq";
            this.lblFreq0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.Gainsboro;
            this.label1.Location = new System.Drawing.Point(12, 328);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 13);
            this.label1.TabIndex = 60;
            this.label1.Text = "Type:";
            // 
            // dropSlope0
            // 
            this.dropSlope0.FormattingEnabled = true;
            this.dropSlope0.Items.AddRange(new object[] {
            "6dB/Octave",
            "12dB/Octave"});
            this.dropSlope0.Location = new System.Drawing.Point(131, 375);
            this.dropSlope0.Name = "dropSlope0";
            this.dropSlope0.Size = new System.Drawing.Size(90, 21);
            this.dropSlope0.TabIndex = 78;
            this.dropSlope0.SelectedIndexChanged += new System.EventHandler(this.dropSlope_SelectedIndexChanged);
            this.dropSlope0.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblSlope1
            // 
            this.lblSlope1.AutoSize = true;
            this.lblSlope1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSlope1.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblSlope1.Location = new System.Drawing.Point(442, 358);
            this.lblSlope1.Name = "lblSlope1";
            this.lblSlope1.Size = new System.Drawing.Size(39, 13);
            this.lblSlope1.TabIndex = 81;
            this.lblSlope1.Text = "Slope";
            this.lblSlope1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblQ1
            // 
            this.lblQ1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQ1.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblQ1.Location = new System.Drawing.Point(465, 358);
            this.lblQ1.Name = "lblQ1";
            this.lblQ1.Size = new System.Drawing.Size(64, 13);
            this.lblQ1.TabIndex = 67;
            this.lblQ1.Text = "Q";
            this.lblQ1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblGain1
            // 
            this.lblGain1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblGain1.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblGain1.Location = new System.Drawing.Point(390, 358);
            this.lblGain1.Name = "lblGain1";
            this.lblGain1.Size = new System.Drawing.Size(58, 13);
            this.lblGain1.TabIndex = 66;
            this.lblGain1.Text = "Gain";
            this.lblGain1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFreq1
            // 
            this.lblFreq1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFreq1.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblFreq1.Location = new System.Drawing.Point(303, 358);
            this.lblFreq1.Name = "lblFreq1";
            this.lblFreq1.Size = new System.Drawing.Size(71, 13);
            this.lblFreq1.TabIndex = 65;
            this.lblFreq1.Text = "Center Freq";
            this.lblFreq1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
            this.label5.ForeColor = System.Drawing.Color.Gainsboro;
            this.label5.Location = new System.Drawing.Point(293, 331);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(35, 13);
            this.label5.TabIndex = 60;
            this.label5.Text = "Type:";
            // 
            // dropFilter1
            // 
            this.dropFilter1.BackColor = System.Drawing.SystemColors.Control;
            this.dropFilter1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.dropFilter1.ForeColor = System.Drawing.Color.Black;
            this.dropFilter1.FormattingEnabled = true;
            this.dropFilter1.Items.AddRange(new object[] {
            "Not Used",
            "Low Pass",
            "High Pass",
            "Low Shelf",
            "High Shelf",
            "Peak (PEQ)",
            "Notch"});
            this.dropFilter1.Location = new System.Drawing.Point(333, 328);
            this.dropFilter1.Name = "dropFilter1";
            this.dropFilter1.Size = new System.Drawing.Size(121, 21);
            this.dropFilter1.TabIndex = 3;
            this.dropFilter1.SelectedIndexChanged += new System.EventHandler(this.dropFilter_SelectedIndexChanged);
            this.dropFilter1.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // dropSlope1
            // 
            this.dropSlope1.FormattingEnabled = true;
            this.dropSlope1.Items.AddRange(new object[] {
            "6dB/Octave",
            "12dB/Octave"});
            this.dropSlope1.Location = new System.Drawing.Point(416, 375);
            this.dropSlope1.Name = "dropSlope1";
            this.dropSlope1.Size = new System.Drawing.Size(90, 21);
            this.dropSlope1.TabIndex = 80;
            this.dropSlope1.SelectedIndexChanged += new System.EventHandler(this.dropSlope_SelectedIndexChanged);
            this.dropSlope1.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblSlope2
            // 
            this.lblSlope2.AutoSize = true;
            this.lblSlope2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSlope2.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblSlope2.Location = new System.Drawing.Point(738, 358);
            this.lblSlope2.Name = "lblSlope2";
            this.lblSlope2.Size = new System.Drawing.Size(39, 13);
            this.lblSlope2.TabIndex = 81;
            this.lblSlope2.Text = "Slope";
            this.lblSlope2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblQ2
            // 
            this.lblQ2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQ2.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblQ2.Location = new System.Drawing.Point(765, 357);
            this.lblQ2.Name = "lblQ2";
            this.lblQ2.Size = new System.Drawing.Size(64, 13);
            this.lblQ2.TabIndex = 67;
            this.lblQ2.Text = "Q";
            this.lblQ2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblGain2
            // 
            this.lblGain2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblGain2.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblGain2.Location = new System.Drawing.Point(690, 357);
            this.lblGain2.Name = "lblGain2";
            this.lblGain2.Size = new System.Drawing.Size(58, 13);
            this.lblGain2.TabIndex = 66;
            this.lblGain2.Text = "Gain";
            this.lblGain2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFreq2
            // 
            this.lblFreq2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFreq2.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblFreq2.Location = new System.Drawing.Point(603, 357);
            this.lblFreq2.Name = "lblFreq2";
            this.lblFreq2.Size = new System.Drawing.Size(71, 13);
            this.lblFreq2.TabIndex = 65;
            this.lblFreq2.Text = "Center Freq";
            this.lblFreq2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
            this.label9.ForeColor = System.Drawing.Color.Gainsboro;
            this.label9.Location = new System.Drawing.Point(593, 330);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(35, 13);
            this.label9.TabIndex = 60;
            this.label9.Text = "Type:";
            // 
            // dropFilter2
            // 
            this.dropFilter2.BackColor = System.Drawing.SystemColors.Control;
            this.dropFilter2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.dropFilter2.ForeColor = System.Drawing.Color.Black;
            this.dropFilter2.FormattingEnabled = true;
            this.dropFilter2.Items.AddRange(new object[] {
            "Not Used",
            "Low Pass",
            "High Pass",
            "Low Shelf",
            "High Shelf",
            "Peak (PEQ)",
            "Notch"});
            this.dropFilter2.Location = new System.Drawing.Point(633, 327);
            this.dropFilter2.Name = "dropFilter2";
            this.dropFilter2.Size = new System.Drawing.Size(121, 21);
            this.dropFilter2.TabIndex = 3;
            this.dropFilter2.SelectedIndexChanged += new System.EventHandler(this.dropFilter_SelectedIndexChanged);
            this.dropFilter2.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // dropSlope2
            // 
            this.dropSlope2.FormattingEnabled = true;
            this.dropSlope2.Items.AddRange(new object[] {
            "6dB/Octave",
            "12dB/Octave"});
            this.dropSlope2.Location = new System.Drawing.Point(712, 375);
            this.dropSlope2.Name = "dropSlope2";
            this.dropSlope2.Size = new System.Drawing.Size(90, 21);
            this.dropSlope2.TabIndex = 80;
            this.dropSlope2.SelectedIndexChanged += new System.EventHandler(this.dropSlope_SelectedIndexChanged);
            this.dropSlope2.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.Black;
            this.label2.Font = new System.Drawing.Font("Segoe UI", 9.5F);
            this.label2.ForeColor = System.Drawing.Color.WhiteSmoke;
            this.label2.Location = new System.Drawing.Point(17, 277);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 17);
            this.label2.TabIndex = 80;
            this.label2.Text = "Filter Select:";
            // 
            // txtFreq0
            // 
            this.txtFreq0.Location = new System.Drawing.Point(29, 375);
            this.txtFreq0.MaxLength = 5;
            this.txtFreq0.Name = "txtFreq0";
            this.txtFreq0.Size = new System.Drawing.Size(56, 20);
            this.txtFreq0.TabIndex = 86;
            this.txtFreq0.Text = "100";
            this.txtFreq0.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtFreq0.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtFreq0.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtFreq0.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtGain0
            // 
            this.txtGain0.Location = new System.Drawing.Point(114, 375);
            this.txtGain0.MaxLength = 6;
            this.txtGain0.Name = "txtGain0";
            this.txtGain0.Size = new System.Drawing.Size(56, 20);
            this.txtGain0.TabIndex = 87;
            this.txtGain0.Text = "0.0";
            this.txtGain0.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtGain0.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtGain0.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtGain0.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtQval0
            // 
            this.txtQval0.Location = new System.Drawing.Point(192, 375);
            this.txtQval0.MaxLength = 5;
            this.txtQval0.Name = "txtQval0";
            this.txtQval0.Size = new System.Drawing.Size(56, 20);
            this.txtQval0.TabIndex = 88;
            this.txtQval0.Text = "0.707";
            this.txtQval0.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtQval0.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtQval0.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtQval0.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtFreq1
            // 
            this.txtFreq1.Location = new System.Drawing.Point(310, 375);
            this.txtFreq1.MaxLength = 5;
            this.txtFreq1.Name = "txtFreq1";
            this.txtFreq1.Size = new System.Drawing.Size(56, 20);
            this.txtFreq1.TabIndex = 89;
            this.txtFreq1.Text = "1000";
            this.txtFreq1.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtFreq1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtFreq1.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtFreq1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtFreq2
            // 
            this.txtFreq2.Location = new System.Drawing.Point(614, 375);
            this.txtFreq2.MaxLength = 5;
            this.txtFreq2.Name = "txtFreq2";
            this.txtFreq2.Size = new System.Drawing.Size(56, 20);
            this.txtFreq2.TabIndex = 90;
            this.txtFreq2.Text = "10000";
            this.txtFreq2.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtFreq2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtFreq2.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtFreq2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtQval1
            // 
            this.txtQval1.Location = new System.Drawing.Point(473, 375);
            this.txtQval1.MaxLength = 5;
            this.txtQval1.Name = "txtQval1";
            this.txtQval1.Size = new System.Drawing.Size(56, 20);
            this.txtQval1.TabIndex = 92;
            this.txtQval1.Text = "0.707";
            this.txtQval1.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtQval1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtQval1.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtQval1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtGain1
            // 
            this.txtGain1.Location = new System.Drawing.Point(395, 375);
            this.txtGain1.MaxLength = 6;
            this.txtGain1.Name = "txtGain1";
            this.txtGain1.Size = new System.Drawing.Size(56, 20);
            this.txtGain1.TabIndex = 91;
            this.txtGain1.Text = "0.0";
            this.txtGain1.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtGain1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtGain1.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtGain1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtQval2
            // 
            this.txtQval2.Location = new System.Drawing.Point(773, 375);
            this.txtQval2.MaxLength = 5;
            this.txtQval2.Name = "txtQval2";
            this.txtQval2.Size = new System.Drawing.Size(56, 20);
            this.txtQval2.TabIndex = 94;
            this.txtQval2.Text = "0.707";
            this.txtQval2.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtQval2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtQval2.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtQval2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtGain2
            // 
            this.txtGain2.Location = new System.Drawing.Point(693, 375);
            this.txtGain2.MaxLength = 6;
            this.txtGain2.Name = "txtGain2";
            this.txtGain2.Size = new System.Drawing.Size(56, 20);
            this.txtGain2.TabIndex = 93;
            this.txtGain2.Text = "0.0";
            this.txtGain2.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtGain2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtGain2.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtGain2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtQval5
            // 
            this.txtQval5.Location = new System.Drawing.Point(761, 55);
            this.txtQval5.MaxLength = 5;
            this.txtQval5.Name = "txtQval5";
            this.txtQval5.Size = new System.Drawing.Size(56, 20);
            this.txtQval5.TabIndex = 129;
            this.txtQval5.Text = "0.707";
            this.txtQval5.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtQval5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtQval5.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtQval5.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtGain5
            // 
            this.txtGain5.Location = new System.Drawing.Point(681, 55);
            this.txtGain5.MaxLength = 6;
            this.txtGain5.Name = "txtGain5";
            this.txtGain5.Size = new System.Drawing.Size(56, 20);
            this.txtGain5.TabIndex = 128;
            this.txtGain5.Text = "0.0";
            this.txtGain5.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtGain5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtGain5.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtGain5.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtQval4
            // 
            this.txtQval4.Location = new System.Drawing.Point(461, 55);
            this.txtQval4.MaxLength = 5;
            this.txtQval4.Name = "txtQval4";
            this.txtQval4.Size = new System.Drawing.Size(56, 20);
            this.txtQval4.TabIndex = 127;
            this.txtQval4.Text = "0.707";
            this.txtQval4.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtQval4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtQval4.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtQval4.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtGain4
            // 
            this.txtGain4.Location = new System.Drawing.Point(383, 55);
            this.txtGain4.MaxLength = 6;
            this.txtGain4.Name = "txtGain4";
            this.txtGain4.Size = new System.Drawing.Size(56, 20);
            this.txtGain4.TabIndex = 126;
            this.txtGain4.Text = "0.0";
            this.txtGain4.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtGain4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtGain4.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtGain4.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtFreq5
            // 
            this.txtFreq5.Location = new System.Drawing.Point(602, 55);
            this.txtFreq5.MaxLength = 5;
            this.txtFreq5.Name = "txtFreq5";
            this.txtFreq5.Size = new System.Drawing.Size(56, 20);
            this.txtFreq5.TabIndex = 125;
            this.txtFreq5.Text = "10000";
            this.txtFreq5.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtFreq5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtFreq5.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtFreq5.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtFreq4
            // 
            this.txtFreq4.Location = new System.Drawing.Point(298, 55);
            this.txtFreq4.MaxLength = 5;
            this.txtFreq4.Name = "txtFreq4";
            this.txtFreq4.Size = new System.Drawing.Size(56, 20);
            this.txtFreq4.TabIndex = 124;
            this.txtFreq4.Text = "1000";
            this.txtFreq4.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtFreq4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtFreq4.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtFreq4.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtQval3
            // 
            this.txtQval3.Location = new System.Drawing.Point(180, 55);
            this.txtQval3.MaxLength = 5;
            this.txtQval3.Name = "txtQval3";
            this.txtQval3.Size = new System.Drawing.Size(56, 20);
            this.txtQval3.TabIndex = 123;
            this.txtQval3.Text = "0.707";
            this.txtQval3.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtQval3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtQval3.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtQval3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtGain3
            // 
            this.txtGain3.Location = new System.Drawing.Point(102, 55);
            this.txtGain3.MaxLength = 6;
            this.txtGain3.Name = "txtGain3";
            this.txtGain3.Size = new System.Drawing.Size(56, 20);
            this.txtGain3.TabIndex = 122;
            this.txtGain3.Text = "0.0";
            this.txtGain3.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtGain3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtGain3.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtGain3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // txtFreq3
            // 
            this.txtFreq3.Location = new System.Drawing.Point(17, 55);
            this.txtFreq3.MaxLength = 5;
            this.txtFreq3.Name = "txtFreq3";
            this.txtFreq3.Size = new System.Drawing.Size(56, 20);
            this.txtFreq3.TabIndex = 121;
            this.txtFreq3.Text = "100";
            this.txtFreq3.Enter += new System.EventHandler(this.filterControl_Enter);
            this.txtFreq3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Event_Textbox_KeyPress);
            this.txtFreq3.Leave += new System.EventHandler(this.Event_Textbox_Leave);
            this.txtFreq3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Event_Textbox_MouseUp);
            // 
            // lblSlope4
            // 
            this.lblSlope4.AutoSize = true;
            this.lblSlope4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSlope4.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblSlope4.Location = new System.Drawing.Point(430, 38);
            this.lblSlope4.Name = "lblSlope4";
            this.lblSlope4.Size = new System.Drawing.Size(39, 13);
            this.lblSlope4.TabIndex = 117;
            this.lblSlope4.Text = "Slope";
            this.lblSlope4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblSlope5
            // 
            this.lblSlope5.AutoSize = true;
            this.lblSlope5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSlope5.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblSlope5.Location = new System.Drawing.Point(726, 38);
            this.lblSlope5.Name = "lblSlope5";
            this.lblSlope5.Size = new System.Drawing.Size(39, 13);
            this.lblSlope5.TabIndex = 118;
            this.lblSlope5.Text = "Slope";
            this.lblSlope5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblQ4
            // 
            this.lblQ4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQ4.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblQ4.Location = new System.Drawing.Point(453, 38);
            this.lblQ4.Name = "lblQ4";
            this.lblQ4.Size = new System.Drawing.Size(64, 13);
            this.lblQ4.TabIndex = 109;
            this.lblQ4.Text = "Q";
            this.lblQ4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblGain4
            // 
            this.lblGain4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblGain4.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblGain4.Location = new System.Drawing.Point(378, 38);
            this.lblGain4.Name = "lblGain4";
            this.lblGain4.Size = new System.Drawing.Size(58, 13);
            this.lblGain4.TabIndex = 108;
            this.lblGain4.Text = "Gain";
            this.lblGain4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblSlope3
            // 
            this.lblSlope3.AutoSize = true;
            this.lblSlope3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSlope3.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblSlope3.Location = new System.Drawing.Point(145, 35);
            this.lblSlope3.Name = "lblSlope3";
            this.lblSlope3.Size = new System.Drawing.Size(39, 13);
            this.lblSlope3.TabIndex = 113;
            this.lblSlope3.Text = "Slope";
            this.lblSlope3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFreq4
            // 
            this.lblFreq4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFreq4.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblFreq4.Location = new System.Drawing.Point(291, 38);
            this.lblFreq4.Name = "lblFreq4";
            this.lblFreq4.Size = new System.Drawing.Size(71, 13);
            this.lblFreq4.TabIndex = 105;
            this.lblFreq4.Text = "Center Freq";
            this.lblFreq4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
            this.label11.ForeColor = System.Drawing.Color.Gainsboro;
            this.label11.Location = new System.Drawing.Point(281, 11);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(35, 13);
            this.label11.TabIndex = 100;
            this.label11.Text = "Type:";
            // 
            // dropFilter4
            // 
            this.dropFilter4.BackColor = System.Drawing.SystemColors.Control;
            this.dropFilter4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.dropFilter4.ForeColor = System.Drawing.Color.Black;
            this.dropFilter4.FormattingEnabled = true;
            this.dropFilter4.Items.AddRange(new object[] {
            "Not Used",
            "Low Pass",
            "High Pass",
            "Low Shelf",
            "High Shelf",
            "Peak (PEQ)",
            "Notch"});
            this.dropFilter4.Location = new System.Drawing.Point(321, 8);
            this.dropFilter4.Name = "dropFilter4";
            this.dropFilter4.Size = new System.Drawing.Size(121, 21);
            this.dropFilter4.TabIndex = 97;
            this.dropFilter4.SelectedIndexChanged += new System.EventHandler(this.dropFilter_SelectedIndexChanged);
            this.dropFilter4.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblQ5
            // 
            this.lblQ5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQ5.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblQ5.Location = new System.Drawing.Point(753, 37);
            this.lblQ5.Name = "lblQ5";
            this.lblQ5.Size = new System.Drawing.Size(64, 13);
            this.lblQ5.TabIndex = 110;
            this.lblQ5.Text = "Q";
            this.lblQ5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // dropSlope4
            // 
            this.dropSlope4.FormattingEnabled = true;
            this.dropSlope4.Items.AddRange(new object[] {
            "6dB/Octave",
            "12dB/Octave"});
            this.dropSlope4.Location = new System.Drawing.Point(404, 55);
            this.dropSlope4.Name = "dropSlope4";
            this.dropSlope4.Size = new System.Drawing.Size(90, 21);
            this.dropSlope4.TabIndex = 115;
            this.dropSlope4.SelectedIndexChanged += new System.EventHandler(this.dropSlope_SelectedIndexChanged);
            this.dropSlope4.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblGain5
            // 
            this.lblGain5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblGain5.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblGain5.Location = new System.Drawing.Point(678, 37);
            this.lblGain5.Name = "lblGain5";
            this.lblGain5.Size = new System.Drawing.Size(58, 13);
            this.lblGain5.TabIndex = 106;
            this.lblGain5.Text = "Gain";
            this.lblGain5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFreq5
            // 
            this.lblFreq5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFreq5.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblFreq5.Location = new System.Drawing.Point(591, 37);
            this.lblFreq5.Name = "lblFreq5";
            this.lblFreq5.Size = new System.Drawing.Size(71, 13);
            this.lblFreq5.TabIndex = 103;
            this.lblFreq5.Text = "Center Freq";
            this.lblFreq5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
            this.label15.ForeColor = System.Drawing.Color.Gainsboro;
            this.label15.Location = new System.Drawing.Point(581, 10);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(35, 13);
            this.label15.TabIndex = 102;
            this.label15.Text = "Type:";
            // 
            // dropFilter5
            // 
            this.dropFilter5.BackColor = System.Drawing.SystemColors.Control;
            this.dropFilter5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.dropFilter5.ForeColor = System.Drawing.Color.Black;
            this.dropFilter5.FormattingEnabled = true;
            this.dropFilter5.Items.AddRange(new object[] {
            "Not Used",
            "Low Pass",
            "High Pass",
            "Low Shelf",
            "High Shelf",
            "Peak (PEQ)",
            "Notch"});
            this.dropFilter5.Location = new System.Drawing.Point(621, 7);
            this.dropFilter5.Name = "dropFilter5";
            this.dropFilter5.Size = new System.Drawing.Size(121, 21);
            this.dropFilter5.TabIndex = 99;
            this.dropFilter5.SelectedIndexChanged += new System.EventHandler(this.dropFilter_SelectedIndexChanged);
            this.dropFilter5.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // dropSlope5
            // 
            this.dropSlope5.FormattingEnabled = true;
            this.dropSlope5.Items.AddRange(new object[] {
            "6dB/Octave",
            "12dB/Octave"});
            this.dropSlope5.Location = new System.Drawing.Point(700, 55);
            this.dropSlope5.Name = "dropSlope5";
            this.dropSlope5.Size = new System.Drawing.Size(90, 21);
            this.dropSlope5.TabIndex = 114;
            this.dropSlope5.SelectedIndexChanged += new System.EventHandler(this.dropSlope_SelectedIndexChanged);
            this.dropSlope5.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblQ3
            // 
            this.lblQ3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblQ3.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblQ3.Location = new System.Drawing.Point(172, 35);
            this.lblQ3.Name = "lblQ3";
            this.lblQ3.Size = new System.Drawing.Size(64, 13);
            this.lblQ3.TabIndex = 111;
            this.lblQ3.Text = "Q";
            this.lblQ3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblGain3
            // 
            this.lblGain3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblGain3.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblGain3.Location = new System.Drawing.Point(97, 35);
            this.lblGain3.Name = "lblGain3";
            this.lblGain3.Size = new System.Drawing.Size(58, 13);
            this.lblGain3.TabIndex = 107;
            this.lblGain3.Text = "Gain";
            this.lblGain3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblFreq3
            // 
            this.lblFreq3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFreq3.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblFreq3.Location = new System.Drawing.Point(10, 35);
            this.lblFreq3.Name = "lblFreq3";
            this.lblFreq3.Size = new System.Drawing.Size(71, 13);
            this.lblFreq3.TabIndex = 104;
            this.lblFreq3.Text = "Center Freq";
            this.lblFreq3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label19.ForeColor = System.Drawing.Color.Gainsboro;
            this.label19.Location = new System.Drawing.Point(0, 8);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(35, 13);
            this.label19.TabIndex = 101;
            this.label19.Text = "Type:";
            // 
            // dropFilter3
            // 
            this.dropFilter3.BackColor = System.Drawing.SystemColors.Control;
            this.dropFilter3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.dropFilter3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.dropFilter3.ForeColor = System.Drawing.Color.Black;
            this.dropFilter3.FormattingEnabled = true;
            this.dropFilter3.Items.AddRange(new object[] {
            "Not Used",
            "Low Pass",
            "High Pass",
            "Low Shelf",
            "High Shelf",
            "Peak (PEQ)",
            "Notch"});
            this.dropFilter3.Location = new System.Drawing.Point(40, 5);
            this.dropFilter3.Name = "dropFilter3";
            this.dropFilter3.Size = new System.Drawing.Size(121, 21);
            this.dropFilter3.TabIndex = 98;
            this.dropFilter3.SelectedIndexChanged += new System.EventHandler(this.dropFilter_SelectedIndexChanged);
            this.dropFilter3.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // dropSlope3
            // 
            this.dropSlope3.FormattingEnabled = true;
            this.dropSlope3.Items.AddRange(new object[] {
            "6dB/Octave",
            "12dB/Octave"});
            this.dropSlope3.Location = new System.Drawing.Point(119, 55);
            this.dropSlope3.Name = "dropSlope3";
            this.dropSlope3.Size = new System.Drawing.Size(90, 21);
            this.dropSlope3.TabIndex = 112;
            this.dropSlope3.SelectedIndexChanged += new System.EventHandler(this.dropSlope_SelectedIndexChanged);
            this.dropSlope3.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // lblFilterSelector5
            // 
            this.lblFilterSelector5.BackColor = System.Drawing.Color.Plum;
            this.lblFilterSelector5.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFilterSelector5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblFilterSelector5.Location = new System.Drawing.Point(228, 274);
            this.lblFilterSelector5.Name = "lblFilterSelector5";
            this.lblFilterSelector5.Size = new System.Drawing.Size(20, 23);
            this.lblFilterSelector5.TabIndex = 132;
            this.lblFilterSelector5.Text = "6";
            this.lblFilterSelector5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblFilterSelector5.Click += new System.EventHandler(this.lblFilterSelector_Click);
            this.lblFilterSelector5.Paint += new System.Windows.Forms.PaintEventHandler(this.lblFilterSelector_Paint);
            // 
            // dropAction
            // 
            this.dropAction.FormattingEnabled = true;
            this.dropAction.Items.AddRange(new object[] {
            "Copy configuration to...",
            "Reset to Defaults"});
            this.dropAction.Location = new System.Drawing.Point(55, 12);
            this.dropAction.Name = "dropAction";
            this.dropAction.Size = new System.Drawing.Size(133, 21);
            this.dropAction.TabIndex = 134;
            this.dropAction.Visible = false;
            // 
            // lblAction
            // 
            this.lblAction.AutoSize = true;
            this.lblAction.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAction.ForeColor = System.Drawing.Color.Gainsboro;
            this.lblAction.Location = new System.Drawing.Point(5, 15);
            this.lblAction.Name = "lblAction";
            this.lblAction.Size = new System.Drawing.Size(44, 13);
            this.lblAction.TabIndex = 133;
            this.lblAction.Text = "Action:";
            this.lblAction.Visible = false;
            // 
            // pnlButtons
            // 
            this.pnlButtons.Controls.Add(this.btnSave);
            this.pnlButtons.Controls.Add(this.btnGo);
            this.pnlButtons.Controls.Add(this.btnCancel);
            this.pnlButtons.Controls.Add(this.dropAction);
            this.pnlButtons.Controls.Add(this.lblAction);
            this.pnlButtons.Location = new System.Drawing.Point(18, 511);
            this.pnlButtons.Name = "pnlButtons";
            this.pnlButtons.Size = new System.Drawing.Size(817, 47);
            this.pnlButtons.TabIndex = 136;
            // 
            // pnlSecondRowFilters
            // 
            this.pnlSecondRowFilters.Controls.Add(this.label19);
            this.pnlSecondRowFilters.Controls.Add(this.dropSlope3);
            this.pnlSecondRowFilters.Controls.Add(this.dropFilter3);
            this.pnlSecondRowFilters.Controls.Add(this.lblFreq3);
            this.pnlSecondRowFilters.Controls.Add(this.lblGain3);
            this.pnlSecondRowFilters.Controls.Add(this.txtQval5);
            this.pnlSecondRowFilters.Controls.Add(this.lblQ3);
            this.pnlSecondRowFilters.Controls.Add(this.txtGain5);
            this.pnlSecondRowFilters.Controls.Add(this.dropSlope5);
            this.pnlSecondRowFilters.Controls.Add(this.txtQval4);
            this.pnlSecondRowFilters.Controls.Add(this.dropFilter5);
            this.pnlSecondRowFilters.Controls.Add(this.txtGain4);
            this.pnlSecondRowFilters.Controls.Add(this.label15);
            this.pnlSecondRowFilters.Controls.Add(this.txtFreq5);
            this.pnlSecondRowFilters.Controls.Add(this.lblFreq5);
            this.pnlSecondRowFilters.Controls.Add(this.txtFreq4);
            this.pnlSecondRowFilters.Controls.Add(this.lblGain5);
            this.pnlSecondRowFilters.Controls.Add(this.txtQval3);
            this.pnlSecondRowFilters.Controls.Add(this.dropSlope4);
            this.pnlSecondRowFilters.Controls.Add(this.txtGain3);
            this.pnlSecondRowFilters.Controls.Add(this.lblQ5);
            this.pnlSecondRowFilters.Controls.Add(this.txtFreq3);
            this.pnlSecondRowFilters.Controls.Add(this.dropFilter4);
            this.pnlSecondRowFilters.Controls.Add(this.chkBypass5);
            this.pnlSecondRowFilters.Controls.Add(this.label11);
            this.pnlSecondRowFilters.Controls.Add(this.chkBypass4);
            this.pnlSecondRowFilters.Controls.Add(this.lblFreq4);
            this.pnlSecondRowFilters.Controls.Add(this.lblSlope4);
            this.pnlSecondRowFilters.Controls.Add(this.lblSlope3);
            this.pnlSecondRowFilters.Controls.Add(this.lblSlope5);
            this.pnlSecondRowFilters.Controls.Add(this.lblGain4);
            this.pnlSecondRowFilters.Controls.Add(this.chkBypass3);
            this.pnlSecondRowFilters.Controls.Add(this.lblQ4);
            this.pnlSecondRowFilters.Location = new System.Drawing.Point(12, 421);
            this.pnlSecondRowFilters.Name = "pnlSecondRowFilters";
            this.pnlSecondRowFilters.Size = new System.Drawing.Size(828, 84);
            this.pnlSecondRowFilters.TabIndex = 137;
            // 
            // chkBypass5
            // 
            this.chkBypass5.CheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass_red;
            this.chkBypass5.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chkBypass5.Location = new System.Drawing.Point(761, 7);
            this.chkBypass5.Name = "chkBypass5";
            this.chkBypass5.Size = new System.Drawing.Size(61, 23);
            this.chkBypass5.TabIndex = 120;
            this.chkBypass5.UncheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass;
            this.chkBypass5.UseVisualStyleBackColor = true;
            this.chkBypass5.CheckedChanged += new System.EventHandler(this.chkBypass_CheckedChanged);
            this.chkBypass5.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // chkBypass4
            // 
            this.chkBypass4.CheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass_red;
            this.chkBypass4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chkBypass4.Location = new System.Drawing.Point(461, 7);
            this.chkBypass4.Name = "chkBypass4";
            this.chkBypass4.Size = new System.Drawing.Size(61, 23);
            this.chkBypass4.TabIndex = 119;
            this.chkBypass4.UncheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass;
            this.chkBypass4.UseVisualStyleBackColor = true;
            this.chkBypass4.CheckedChanged += new System.EventHandler(this.chkBypass_CheckedChanged);
            this.chkBypass4.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // chkBypass3
            // 
            this.chkBypass3.CheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass_red;
            this.chkBypass3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chkBypass3.Location = new System.Drawing.Point(180, 4);
            this.chkBypass3.Name = "chkBypass3";
            this.chkBypass3.Size = new System.Drawing.Size(61, 23);
            this.chkBypass3.TabIndex = 116;
            this.chkBypass3.UncheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass;
            this.chkBypass3.UseVisualStyleBackColor = true;
            this.chkBypass3.CheckedChanged += new System.EventHandler(this.chkBypass_CheckedChanged);
            this.chkBypass3.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // btnSave
            // 
            this.btnSave.AutoResize = true;
            this.btnSave.BackgroundImage = global::SA_Resources.GlobalResources.ui_btn_save;
            this.btnSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnSave.Location = new System.Drawing.Point(351, 12);
            this.btnSave.Name = "btnSave";
            this.btnSave.OverImage = null;
            this.btnSave.Overlay1Image = null;
            this.btnSave.Overlay1Visible = false;
            this.btnSave.Overlay2Image = null;
            this.btnSave.Overlay2Visible = false;
            this.btnSave.Overlay3Image = null;
            this.btnSave.Overlay3Visible = false;
            this.btnSave.PressedImage = null;
            this.btnSave.Size = new System.Drawing.Size(49, 23);
            this.btnSave.TabIndex = 95;
            this.btnSave.ToolTipText = "";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnGo
            // 
            this.btnGo.AutoResize = true;
            this.btnGo.BackgroundImage = global::SA_Resources.GlobalResources.ui_btn_go;
            this.btnGo.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnGo.Location = new System.Drawing.Point(196, 12);
            this.btnGo.Name = "btnGo";
            this.btnGo.OverImage = null;
            this.btnGo.Overlay1Image = null;
            this.btnGo.Overlay1Visible = false;
            this.btnGo.Overlay2Image = null;
            this.btnGo.Overlay2Visible = false;
            this.btnGo.Overlay3Image = null;
            this.btnGo.Overlay3Visible = false;
            this.btnGo.PressedImage = null;
            this.btnGo.Size = new System.Drawing.Size(49, 23);
            this.btnGo.TabIndex = 135;
            this.btnGo.ToolTipText = "";
            this.btnGo.Visible = false;
            this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.AutoResize = true;
            this.btnCancel.BackgroundImage = global::SA_Resources.GlobalResources.ui_btn_cancel;
            this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnCancel.Location = new System.Drawing.Point(417, 12);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.OverImage = null;
            this.btnCancel.Overlay1Image = null;
            this.btnCancel.Overlay1Visible = false;
            this.btnCancel.Overlay2Image = null;
            this.btnCancel.Overlay2Visible = false;
            this.btnCancel.Overlay3Image = null;
            this.btnCancel.Overlay3Visible = false;
            this.btnCancel.PressedImage = null;
            this.btnCancel.Size = new System.Drawing.Size(49, 23);
            this.btnCancel.TabIndex = 96;
            this.btnCancel.ToolTipText = "";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // chkBypass2
            // 
            this.chkBypass2.CheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass_red;
            this.chkBypass2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chkBypass2.Location = new System.Drawing.Point(773, 327);
            this.chkBypass2.Name = "chkBypass2";
            this.chkBypass2.Size = new System.Drawing.Size(61, 23);
            this.chkBypass2.TabIndex = 83;
            this.chkBypass2.UncheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass;
            this.chkBypass2.UseVisualStyleBackColor = true;
            this.chkBypass2.CheckedChanged += new System.EventHandler(this.chkBypass_CheckedChanged);
            this.chkBypass2.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // chkBypass1
            // 
            this.chkBypass1.CheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass_red;
            this.chkBypass1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chkBypass1.Location = new System.Drawing.Point(473, 327);
            this.chkBypass1.Name = "chkBypass1";
            this.chkBypass1.Size = new System.Drawing.Size(61, 23);
            this.chkBypass1.TabIndex = 82;
            this.chkBypass1.UncheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass;
            this.chkBypass1.UseVisualStyleBackColor = true;
            this.chkBypass1.CheckedChanged += new System.EventHandler(this.chkBypass_CheckedChanged);
            this.chkBypass1.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // chkBypass0
            // 
            this.chkBypass0.CheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass_red;
            this.chkBypass0.Cursor = System.Windows.Forms.Cursors.Hand;
            this.chkBypass0.Location = new System.Drawing.Point(192, 324);
            this.chkBypass0.Name = "chkBypass0";
            this.chkBypass0.Size = new System.Drawing.Size(61, 23);
            this.chkBypass0.TabIndex = 80;
            this.chkBypass0.UncheckedImage = global::SA_Resources.GlobalResources.ui_btn_bypass;
            this.chkBypass0.UseVisualStyleBackColor = true;
            this.chkBypass0.CheckedChanged += new System.EventHandler(this.chkBypass_CheckedChanged);
            this.chkBypass0.Enter += new System.EventHandler(this.filterControl_Enter);
            // 
            // FilterForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(82)))), ((int)(((byte)(82)))), ((int)(((byte)(82)))));
            this.ClientSize = new System.Drawing.Size(853, 564);
            this.Controls.Add(this.pnlSecondRowFilters);
            this.Controls.Add(this.pnlButtons);
            this.Controls.Add(this.lblFilterSelector5);
            this.Controls.Add(this.lblFilterSelector4);
            this.Controls.Add(this.lblFilterSelector3);
            this.Controls.Add(this.txtQval2);
            this.Controls.Add(this.txtGain2);
            this.Controls.Add(this.txtQval1);
            this.Controls.Add(this.txtGain1);
            this.Controls.Add(this.txtFreq2);
            this.Controls.Add(this.txtFreq1);
            this.Controls.Add(this.txtQval0);
            this.Controls.Add(this.txtGain0);
            this.Controls.Add(this.txtFreq0);
            this.Controls.Add(this.chkBypass2);
            this.Controls.Add(this.chkBypass1);
            this.Controls.Add(this.lblSlope1);
            this.Controls.Add(this.lblSlope2);
            this.Controls.Add(this.chkBypass0);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.lblQ1);
            this.Controls.Add(this.lblGain1);
            this.Controls.Add(this.lblSlope0);
            this.Controls.Add(this.lblFreq1);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.dropFilter1);
            this.Controls.Add(this.lblQ2);
            this.Controls.Add(this.dropSlope1);
            this.Controls.Add(this.lblGain2);
            this.Controls.Add(this.lblFreq2);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.dropFilter2);
            this.Controls.Add(this.dropSlope2);
            this.Controls.Add(this.lblQ0);
            this.Controls.Add(this.lblGain0);
            this.Controls.Add(this.lblStatus);
            this.Controls.Add(this.lblFreq0);
            this.Controls.Add(this.panel7);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.lblFilterSelector2);
            this.Controls.Add(this.dropFilter0);
            this.Controls.Add(this.dropSlope0);
            this.Controls.Add(this.lblFilterSelector1);
            this.Controls.Add(this.lblFilterSelector0);
            this.Controls.Add(this.filterChart);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FilterForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Filter Designer - CH 1";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FilterForm6_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.filterChart)).EndInit();
            this.pnlButtons.ResumeLayout(false);
            this.pnlButtons.PerformLayout();
            this.pnlSecondRowFilters.ResumeLayout(false);
            this.pnlSecondRowFilters.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.timeLable = new System.Windows.Forms.Label();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.clesChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.clesRichTextBox = new System.Windows.Forms.RichTextBox();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.bestandToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sessionTimeLabel = new System.Windows.Forms.Label();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.clesChart)).BeginInit();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // timeLable
            // 
            this.timeLable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.timeLable.AutoSize = true;
            this.timeLable.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.timeLable.Location = new System.Drawing.Point(863, 5);
            this.timeLable.Name = "timeLable";
            this.timeLable.Size = new System.Drawing.Size(82, 18);
            this.timeLable.TabIndex = 13;
            this.timeLable.Text = "Sessieduur";
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel1.ColumnCount = 2;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 68.4375F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.5625F));
            this.tableLayoutPanel1.Controls.Add(this.clesChart, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.clesRichTextBox, 1, 0);
            this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 27);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 1;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(995, 339);
            this.tableLayoutPanel1.TabIndex = 15;
            // 
            // clesChart
            // 
            this.clesChart.BorderlineColor = System.Drawing.Color.Gray;
            this.clesChart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.clesChart.BorderlineWidth = 2;
            chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisX.Interval = 1D;
            chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea1.AxisX.LabelStyle.IsEndLabelVisible = false;
            chartArea1.AxisX.ScaleView.MinSize = 15D;
            chartArea1.AxisX.ScaleView.Position = 0D;
            chartArea1.AxisX.ScaleView.Size = 15D;
            chartArea1.AxisX.ScrollBar.ButtonStyle = System.Windows.Forms.DataVisualization.Charting.ScrollBarButtonStyles.SmallScroll;
            chartArea1.AxisX.ScrollBar.IsPositionedInside = false;
            chartArea1.AxisX.Title = "Tijd in seconden";
            customLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            customLabel1.FromPosition = -1D;
            customLabel1.Text = "Onbekend";
            customLabel1.ToPosition = 1D;
            customLabel2.Text = "Laag";
            customLabel2.ToPosition = 2D;
            customLabel3.FromPosition = 1D;
            customLabel3.Text = "Ondergemiddeld";
            customLabel3.ToPosition = 3D;
            customLabel4.FromPosition = 2D;
            customLabel4.Text = "Bovengemiddeld";
            customLabel4.ToPosition = 4D;
            customLabel5.FromPosition = 3D;
            customLabel5.Text = "Hoog";
            customLabel5.ToPosition = 5D;
            chartArea1.AxisY.CustomLabels.Add(customLabel1);
            chartArea1.AxisY.CustomLabels.Add(customLabel2);
            chartArea1.AxisY.CustomLabels.Add(customLabel3);
            chartArea1.AxisY.CustomLabels.Add(customLabel4);
            chartArea1.AxisY.CustomLabels.Add(customLabel5);
            chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisY.Interval = 1D;
            chartArea1.AxisY.Maximum = 4D;
            chartArea1.AxisY.Minimum = 0D;
            chartArea1.Name = "clesChartArea";
            this.clesChart.ChartAreas.Add(chartArea1);
            this.clesChart.Dock = System.Windows.Forms.DockStyle.Fill;
            legend1.DockedToChartArea = "clesChartArea";
            legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
            legend1.IsDockedInsideChartArea = false;
            legend1.Name = "Legend1";
            this.clesChart.Legends.Add(legend1);
            this.clesChart.Location = new System.Drawing.Point(3, 3);
            this.clesChart.Name = "clesChart";
            series1.BorderWidth = 2;
            series1.ChartArea = "clesChartArea";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Color = System.Drawing.Color.Blue;
            series1.Legend = "Legend1";
            series1.LegendText = "Emotionele Toestand";
            series1.MarkerBorderColor = System.Drawing.Color.Blue;
            series1.MarkerColor = System.Drawing.Color.Magenta;
            series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
            series1.Name = "esSeries";
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            series2.BorderWidth = 2;
            series2.ChartArea = "clesChartArea";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.Color = System.Drawing.Color.OrangeRed;
            series2.Legend = "Legend1";
            series2.LegendText = "Cognitieve Belasting";
            series2.MarkerBorderColor = System.Drawing.Color.DarkRed;
            series2.MarkerColor = System.Drawing.Color.OrangeRed;
            series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Triangle;
            series2.Name = "clSeries";
            this.clesChart.Series.Add(series1);
            this.clesChart.Series.Add(series2);
            this.clesChart.Size = new System.Drawing.Size(674, 333);
            this.clesChart.TabIndex = 1;
            this.clesChart.Text = "chart2";
            title1.Name = "clesValues";
            title1.Visible = false;
            this.clesChart.Titles.Add(title1);
            // 
            // clesRichTextBox
            // 
            this.clesRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.clesRichTextBox.Location = new System.Drawing.Point(683, 3);
            this.clesRichTextBox.Name = "clesRichTextBox";
            this.clesRichTextBox.ReadOnly = true;
            this.clesRichTextBox.Size = new System.Drawing.Size(309, 333);
            this.clesRichTextBox.TabIndex = 2;
            this.clesRichTextBox.Text = "";
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel2.AutoScroll = true;
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 372);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(995, 338);
            this.tableLayoutPanel2.TabIndex = 21;
            // 
            // menuStrip1
            // 
            this.menuStrip1.BackColor = System.Drawing.SystemColors.MenuBar;
            this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bestandToolStripMenuItem,
            this.sessionToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(9, 3);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(119, 24);
            this.menuStrip1.TabIndex = 22;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // bestandToolStripMenuItem
            // 
            this.bestandToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.quitToolStripMenuItem});
            this.bestandToolStripMenuItem.Name = "bestandToolStripMenuItem";
            this.bestandToolStripMenuItem.ShortcutKeyDisplayString = "";
            this.bestandToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B)));
            this.bestandToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
            this.bestandToolStripMenuItem.Text = "Bestand";
            // 
            // quitToolStripMenuItem
            // 
            this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
            this.quitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
            this.quitToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.quitToolStripMenuItem.Text = "Afsluiten";
            this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
            // 
            // sessionToolStripMenuItem
            // 
            this.sessionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.startToolStripMenuItem,
            this.toolStripSeparator2,
            this.toolStripSeparator1,
            this.stopToolStripMenuItem});
            this.sessionToolStripMenuItem.Name = "sessionToolStripMenuItem";
            this.sessionToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
            this.sessionToolStripMenuItem.Text = "Sessie";
            // 
            // startToolStripMenuItem
            // 
            this.startToolStripMenuItem.Name = "startToolStripMenuItem";
            this.startToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
            this.startToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.startToolStripMenuItem.Text = "Start";
            this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(136, 6);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(136, 6);
            // 
            // stopToolStripMenuItem
            // 
            this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
            this.stopToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
            this.stopToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.stopToolStripMenuItem.Text = "Stop";
            this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click);
            // 
            // sessionTimeLabel
            // 
            this.sessionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.sessionTimeLabel.AutoSize = true;
            this.sessionTimeLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.sessionTimeLabel.Location = new System.Drawing.Point(951, 5);
            this.sessionTimeLabel.Name = "sessionTimeLabel";
            this.sessionTimeLabel.Size = new System.Drawing.Size(56, 18);
            this.sessionTimeLabel.TabIndex = 23;
            this.sessionTimeLabel.Text = "0.00.00";
            // 
            // MainView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1019, 722);
            this.Controls.Add(this.sessionTimeLabel);
            this.Controls.Add(this.tableLayoutPanel2);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(this.timeLable);
            this.Controls.Add(this.menuStrip1);
            this.KeyPreview = true;
            this.MainMenuStrip = this.menuStrip1;
            this.MinimumSize = new System.Drawing.Size(1035, 760);
            this.Name = "MainView";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Monitor voor Cognitieve Belasting en Emotionele Toestand";
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CLESMonitorViewForm_KeyDown);
            this.tableLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.clesChart)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #13
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4584700D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 23153895D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 26034783D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 3386394D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 5675947D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 10158024D);
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 25000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 16500000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 2500000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 3000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 5000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 24100000D);
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint13 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 25000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint14 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 16500000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint15 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 2500000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint16 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 3000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint17 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 5000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint18 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 24100000D);
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint19 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 2557523D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint20 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1719385D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint21 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 5262966D);
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint22 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 3000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint23 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 2000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint24 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 21000000D);
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint25 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 43200000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint26 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 2000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint27 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 21000000D);
            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.chart8 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart7 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            ((System.ComponentModel.ISupportInitialize)(this.chart8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart7)).BeginInit();
            this.SuspendLayout();
            // 
            // chart8
            // 
            this.chart8.BackImage = "Resources\\back.jpg";
            this.chart8.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Scaled;
            chartArea1.Area3DStyle.Enable3D = true;
            chartArea1.Area3DStyle.IsClustered = true;
            chartArea1.Area3DStyle.PointDepth = 8;
            customLabel1.ForeColor = System.Drawing.Color.White;
            customLabel1.FromPosition = 1D;
            customLabel1.Text = "대리점\n투자비용";
            customLabel2.ForeColor = System.Drawing.Color.White;
            customLabel2.FromPosition = 2D;
            customLabel2.Text = "인건비";
            customLabel3.ForeColor = System.Drawing.Color.White;
            customLabel3.FromPosition = 4D;
            customLabel3.Text = "임차료";
            customLabel4.ForeColor = System.Drawing.Color.White;
            customLabel4.FromPosition = 6D;
            customLabel4.Text = "이자비용";
            customLabel5.ForeColor = System.Drawing.Color.White;
            customLabel5.FromPosition = 8D;
            customLabel5.Text = "부가세 법인세";
            customLabel6.ForeColor = System.Drawing.Color.White;
            customLabel6.FromPosition = 10D;
            customLabel6.Text = "기타 판매관리비";
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.CustomLabels.Add(customLabel3);
            chartArea1.AxisX.CustomLabels.Add(customLabel4);
            chartArea1.AxisX.CustomLabels.Add(customLabel5);
            chartArea1.AxisX.CustomLabels.Add(customLabel6);
            chartArea1.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea1.AxisX.LineColor = System.Drawing.Color.White;
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea1.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea1.AxisY.LineColor = System.Drawing.Color.White;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea1.BackColor = System.Drawing.Color.Transparent;
            chartArea1.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Scaled;
            chartArea1.Name = "ChartArea1";
            this.chart8.ChartAreas.Add(chartArea1);
            legend1.BackColor = System.Drawing.Color.Transparent;
            legend1.ForeColor = System.Drawing.Color.White;
            legend1.Name = "Legend1";
            this.chart8.Legends.Add(legend1);
            this.chart8.Location = new System.Drawing.Point(692, 12);
            this.chart8.Name = "chart8";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
            series1.Legend = "Legend1";
            series1.LegendText = "업계평균";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            series1.Points.Add(dataPoint6);
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
            series2.Legend = "Legend1";
            series2.LegendText = "당대리점";
            series2.Name = "Series2";
            series2.Points.Add(dataPoint7);
            series2.Points.Add(dataPoint8);
            series2.Points.Add(dataPoint9);
            series2.Points.Add(dataPoint10);
            series2.Points.Add(dataPoint11);
            series2.Points.Add(dataPoint12);
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
            series3.Legend = "Legend1";
            series3.LegendText = "미래수익";
            series3.Name = "Series3";
            series3.Points.Add(dataPoint13);
            series3.Points.Add(dataPoint14);
            series3.Points.Add(dataPoint15);
            series3.Points.Add(dataPoint16);
            series3.Points.Add(dataPoint17);
            series3.Points.Add(dataPoint18);
            this.chart8.Series.Add(series1);
            this.chart8.Series.Add(series2);
            this.chart8.Series.Add(series3);
            this.chart8.Size = new System.Drawing.Size(679, 808);
            this.chart8.TabIndex = 7;
            this.chart8.Text = "chart7";
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold);
            title1.ForeColor = System.Drawing.Color.White;
            title1.Name = "Title1";
            title1.Text = "비용계정";
            this.chart8.Titles.Add(title1);
            // 
            // chart7
            // 
            this.chart7.BackColor = System.Drawing.Color.Transparent;
            this.chart7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.chart7.BackImage = "Resources\\back.jpg";
            this.chart7.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Scaled;
            chartArea2.Area3DStyle.Enable3D = true;
            chartArea2.Area3DStyle.IsClustered = true;
            chartArea2.Area3DStyle.PointDepth = 8;
            customLabel7.ForeColor = System.Drawing.Color.White;
            customLabel7.FromPosition = 1D;
            customLabel7.Text = "누적가입자\n수수료";
            customLabel8.FromPosition = 2D;
            customLabel8.MarkColor = System.Drawing.Color.White;
            customLabel8.Text = "사업자모델\n매입에\n따른\n추가수익";
            customLabel9.FromPosition = 4D;
            customLabel9.Text = "유통모델\n매입에\n따른\n추가수익";
            chartArea2.AxisX.CustomLabels.Add(customLabel7);
            chartArea2.AxisX.CustomLabels.Add(customLabel8);
            chartArea2.AxisX.CustomLabels.Add(customLabel9);
            chartArea2.AxisX.LabelAutoFitMaxFontSize = 7;
            chartArea2.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea2.AxisX.LineColor = System.Drawing.Color.White;
            chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea2.AxisX.TitleForeColor = System.Drawing.Color.White;
            chartArea2.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea2.AxisY.LineColor = System.Drawing.Color.White;
            chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea2.AxisY.TitleForeColor = System.Drawing.Color.White;
            chartArea2.BackColor = System.Drawing.Color.Transparent;
            chartArea2.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Scaled;
            chartArea2.Name = "ChartArea1";
            this.chart7.ChartAreas.Add(chartArea2);
            legend2.BackColor = System.Drawing.Color.Transparent;
            legend2.ForeColor = System.Drawing.Color.White;
            legend2.Name = "Legend1";
            this.chart7.Legends.Add(legend2);
            this.chart7.Location = new System.Drawing.Point(7, 12);
            this.chart7.Name = "chart7";
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
            series4.Color = System.Drawing.Color.Blue;
            series4.LabelForeColor = System.Drawing.Color.White;
            series4.Legend = "Legend1";
            series4.LegendText = "업계평균";
            series4.MarkerColor = System.Drawing.Color.White;
            series4.Name = "Series1";
            dataPoint19.Label = "";
            series4.Points.Add(dataPoint19);
            series4.Points.Add(dataPoint20);
            series4.Points.Add(dataPoint21);
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
            series5.Color = System.Drawing.Color.Red;
            series5.LabelForeColor = System.Drawing.Color.White;
            series5.Legend = "Legend1";
            series5.LegendText = "당대리점";
            series5.Name = "Series2";
            dataPoint22.MarkerColor = System.Drawing.Color.White;
            series5.Points.Add(dataPoint22);
            series5.Points.Add(dataPoint23);
            series5.Points.Add(dataPoint24);
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
            series6.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            series6.LabelForeColor = System.Drawing.Color.White;
            series6.Legend = "Legend1";
            series6.LegendText = "미래수익";
            series6.Name = "Series3";
            series6.Points.Add(dataPoint25);
            series6.Points.Add(dataPoint26);
            series6.Points.Add(dataPoint27);
            this.chart7.Series.Add(series4);
            this.chart7.Series.Add(series5);
            this.chart7.Series.Add(series6);
            this.chart7.Size = new System.Drawing.Size(679, 808);
            this.chart7.TabIndex = 6;
            this.chart7.Text = "chart7";
            title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold);
            title2.ForeColor = System.Drawing.Color.White;
            title2.Name = "Title1";
            title2.Text = "수익계정";
            this.chart7.Titles.Add(title2);
            // 
            // FormPopupWholeSale
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1384, 832);
            this.Controls.Add(this.chart8);
            this.Controls.Add(this.chart7);
            this.MaximizeBox = false;
            this.Name = "FormPopupWholeSale";
            this.Text = "KIWI - 대리점 월단위 손익점검(도매)";
            ((System.ComponentModel.ISupportInitialize)(this.chart8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart7)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Score_Sheet));
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.btn_retake = new System.Windows.Forms.Button();
            this.btn_exit = new System.Windows.Forms.Button();
            this.chr_display_score = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.dgv_show_breakdown = new System.Windows.Forms.DataGridView();
            this.section = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.number = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.accuracy = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.lbl_candidate_name = new System.Windows.Forms.Label();
            this.lbl_date = new System.Windows.Forms.Label();
            this.lbl_exam_number = new System.Windows.Forms.Label();
            this.lbl_elapsed_time = new System.Windows.Forms.Label();
            this.lbl_time = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.lbl_status = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.btn_print_score = new System.Windows.Forms.Button();
            this.pnt_prv_dlg = new System.Windows.Forms.PrintPreviewDialog();
            this.pnt_doc = new System.Drawing.Printing.PrintDocument();
            ((System.ComponentModel.ISupportInitialize)(this.chr_display_score)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_show_breakdown)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(327, 23);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(219, 20);
            this.label1.TabIndex = 0;
            this.label1.Text = "Examination Score Report";
            // 
            // label2
            // 
            this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(223, 69);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(72, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "CANDIDATE:";
            // 
            // label3
            // 
            this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(223, 102);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(39, 13);
            this.label3.TabIndex = 2;
            this.label3.Text = "DATE:";
            // 
            // label4
            // 
            this.label4.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(223, 134);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(73, 13);
            this.label4.TabIndex = 3;
            this.label4.Text = "EXAM CODE:";
            // 
            // label5
            // 
            this.label5.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(503, 69);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(92, 13);
            this.label5.TabIndex = 4;
            this.label5.Text = "TIME ALLOWED:";
            // 
            // label6
            // 
            this.label6.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(503, 102);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(88, 13);
            this.label6.TabIndex = 5;
            this.label6.Text = "ELAPSED TIME:";
            // 
            // btn_retake
            // 
            this.btn_retake.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btn_retake.Location = new System.Drawing.Point(23, 645);
            this.btn_retake.Name = "btn_retake";
            this.btn_retake.Size = new System.Drawing.Size(75, 23);
            this.btn_retake.TabIndex = 7;
            this.btn_retake.Text = "Retake";
            this.btn_retake.UseVisualStyleBackColor = true;
            this.btn_retake.Click += new System.EventHandler(this.btn_retake_Click);
            // 
            // btn_exit
            // 
            this.btn_exit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btn_exit.Location = new System.Drawing.Point(829, 645);
            this.btn_exit.Name = "btn_exit";
            this.btn_exit.Size = new System.Drawing.Size(75, 23);
            this.btn_exit.TabIndex = 9;
            this.btn_exit.Text = "Exit";
            this.btn_exit.UseVisualStyleBackColor = true;
            this.btn_exit.Click += new System.EventHandler(this.btn_exit_Click);
            // 
            // chr_display_score
            // 
            this.chr_display_score.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.chr_display_score.BackColor = System.Drawing.SystemColors.Control;
            customLabel1.FromPosition = 0.5D;
            customLabel1.Text = "Required Score";
            customLabel1.ToPosition = 1.5D;
            customLabel2.FromPosition = -0.5D;
            customLabel2.Text = "Your Score";
            customLabel2.ToPosition = 0.5D;
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
            chartArea1.AxisX.Maximum = 2D;
            chartArea1.AxisY.Maximum = 1000D;
            chartArea1.Name = "ChartArea1";
            this.chr_display_score.ChartAreas.Add(chartArea1);
            this.chr_display_score.Location = new System.Drawing.Point(184, 169);
            this.chr_display_score.Name = "chr_display_score";
            this.chr_display_score.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
            this.chr_display_score.PaletteCustomColors = new System.Drawing.Color[] {
        System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))),
        System.Drawing.Color.Green};
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
            series1.Name = "Required Score";
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
            series2.Name = "Score";
            this.chr_display_score.Series.Add(series1);
            this.chr_display_score.Series.Add(series2);
            this.chr_display_score.Size = new System.Drawing.Size(542, 171);
            this.chr_display_score.TabIndex = 10;
            this.chr_display_score.Text = "chart1";
            // 
            // dgv_show_breakdown
            // 
            this.dgv_show_breakdown.AllowUserToAddRows = false;
            this.dgv_show_breakdown.AllowUserToDeleteRows = false;
            this.dgv_show_breakdown.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.dgv_show_breakdown.BackgroundColor = System.Drawing.SystemColors.Control;
            this.dgv_show_breakdown.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgv_show_breakdown.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgv_show_breakdown.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgv_show_breakdown.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
            this.dgv_show_breakdown.ColumnHeadersHeight = 25;
            this.dgv_show_breakdown.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.dgv_show_breakdown.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.section,
            this.number,
            this.accuracy});
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.MidnightBlue;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgv_show_breakdown.DefaultCellStyle = dataGridViewCellStyle2;
            this.dgv_show_breakdown.Location = new System.Drawing.Point(206, 400);
            this.dgv_show_breakdown.Name = "dgv_show_breakdown";
            this.dgv_show_breakdown.ReadOnly = true;
            this.dgv_show_breakdown.RowHeadersVisible = false;
            this.dgv_show_breakdown.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgv_show_breakdown.Size = new System.Drawing.Size(495, 228);
            this.dgv_show_breakdown.TabIndex = 11;
            // 
            // section
            // 
            this.section.HeaderText = "Section";
            this.section.Name = "section";
            this.section.ReadOnly = true;
            this.section.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.section.Width = 345;
            // 
            // number
            // 
            this.number.HeaderText = "Number";
            this.number.Name = "number";
            this.number.ReadOnly = true;
            this.number.Width = 75;
            // 
            // accuracy
            // 
            this.accuracy.HeaderText = "Accuracy";
            this.accuracy.Name = "accuracy";
            this.accuracy.ReadOnly = true;
            this.accuracy.Width = 75;
            // 
            // lbl_candidate_name
            // 
            this.lbl_candidate_name.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lbl_candidate_name.AutoSize = true;
            this.lbl_candidate_name.Location = new System.Drawing.Point(301, 69);
            this.lbl_candidate_name.Name = "lbl_candidate_name";
            this.lbl_candidate_name.Size = new System.Drawing.Size(0, 13);
            this.lbl_candidate_name.TabIndex = 12;
            // 
            // lbl_date
            // 
            this.lbl_date.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lbl_date.AutoSize = true;
            this.lbl_date.Location = new System.Drawing.Point(268, 102);
            this.lbl_date.Name = "lbl_date";
            this.lbl_date.Size = new System.Drawing.Size(0, 13);
            this.lbl_date.TabIndex = 13;
            // 
            // lbl_exam_number
            // 
            this.lbl_exam_number.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lbl_exam_number.AutoSize = true;
            this.lbl_exam_number.Location = new System.Drawing.Point(302, 134);
            this.lbl_exam_number.Name = "lbl_exam_number";
            this.lbl_exam_number.Size = new System.Drawing.Size(0, 13);
            this.lbl_exam_number.TabIndex = 14;
            // 
            // lbl_elapsed_time
            // 
            this.lbl_elapsed_time.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lbl_elapsed_time.AutoSize = true;
            this.lbl_elapsed_time.Location = new System.Drawing.Point(594, 102);
            this.lbl_elapsed_time.Name = "lbl_elapsed_time";
            this.lbl_elapsed_time.Size = new System.Drawing.Size(0, 13);
            this.lbl_elapsed_time.TabIndex = 16;
            this.lbl_elapsed_time.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lbl_time
            // 
            this.lbl_time.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lbl_time.AutoSize = true;
            this.lbl_time.Location = new System.Drawing.Point(595, 69);
            this.lbl_time.Name = "lbl_time";
            this.lbl_time.Size = new System.Drawing.Size(0, 13);
            this.lbl_time.TabIndex = 15;
            this.lbl_time.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label7
            // 
            this.label7.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(372, 353);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(53, 13);
            this.label7.TabIndex = 17;
            this.label7.Text = "STATUS:";
            // 
            // lbl_status
            // 
            this.lbl_status.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lbl_status.AutoSize = true;
            this.lbl_status.Location = new System.Drawing.Point(431, 353);
            this.lbl_status.Name = "lbl_status";
            this.lbl_status.Size = new System.Drawing.Size(0, 13);
            this.lbl_status.TabIndex = 18;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(634, 68);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(34, 13);
            this.label8.TabIndex = 19;
            this.label8.Text = "min(s)";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(630, 100);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(34, 13);
            this.label9.TabIndex = 20;
            this.label9.Text = "min(s)";
            // 
            // btn_print_score
            // 
            this.btn_print_score.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btn_print_score.Location = new System.Drawing.Point(127, 645);
            this.btn_print_score.Name = "btn_print_score";
            this.btn_print_score.Size = new System.Drawing.Size(75, 23);
            this.btn_print_score.TabIndex = 21;
            this.btn_print_score.Text = "Print";
            this.btn_print_score.UseVisualStyleBackColor = true;
            this.btn_print_score.Click += new System.EventHandler(this.btn_print_score_Click);
            // 
            // pnt_prv_dlg
            // 
            this.pnt_prv_dlg.AutoScrollMargin = new System.Drawing.Size(0, 0);
            this.pnt_prv_dlg.AutoScrollMinSize = new System.Drawing.Size(0, 0);
            this.pnt_prv_dlg.ClientSize = new System.Drawing.Size(400, 300);
            this.pnt_prv_dlg.Document = this.pnt_doc;
            this.pnt_prv_dlg.Enabled = true;
            this.pnt_prv_dlg.Icon = ((System.Drawing.Icon)(resources.GetObject("pnt_prv_dlg.Icon")));
            this.pnt_prv_dlg.Name = "pnt_prv_dlg";
            this.pnt_prv_dlg.ShowIcon = false;
            this.pnt_prv_dlg.Visible = false;
            // 
            // pnt_doc
            // 
            this.pnt_doc.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.pnt_doc_PrintPage);
            // 
            // Score_Sheet
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(916, 680);
            this.Controls.Add(this.btn_print_score);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.lbl_status);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.lbl_elapsed_time);
            this.Controls.Add(this.lbl_time);
            this.Controls.Add(this.lbl_exam_number);
            this.Controls.Add(this.lbl_date);
            this.Controls.Add(this.lbl_candidate_name);
            this.Controls.Add(this.dgv_show_breakdown);
            this.Controls.Add(this.chr_display_score);
            this.Controls.Add(this.btn_exit);
            this.Controls.Add(this.btn_retake);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Name = "Score_Sheet";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Score Sheet";
            ((System.ComponentModel.ISupportInitialize)(this.chr_display_score)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_show_breakdown)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine2   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 132D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 250D);
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 243D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 343D);
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.mainChart         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.linkLabel1        = new System.Windows.Forms.LinkLabel();
     this.statusStripBanner = new System.Windows.Forms.StatusStrip();
     this.panelBanner       = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.mainChart)).BeginInit();
     this.SuspendLayout();
     //
     // mainChart
     //
     this.mainChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     chartArea1.AlignmentOrientation = System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.None;
     chartArea1.AxisX.ArrowStyle     = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.SharpTriangle;
     customLabel1.ForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     customLabel1.FromPosition       = 0.5D;
     customLabel1.LabelMark          = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel1.MarkColor          = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     customLabel1.Text         = "North";
     customLabel1.ToPosition   = 1.5D;
     customLabel2.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     customLabel2.FromPosition = 1.5D;
     customLabel2.LabelMark    = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel2.MarkColor    = System.Drawing.Color.Yellow;
     customLabel2.Text         = "South";
     customLabel2.ToPosition   = 2.5D;
     customLabel3.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     customLabel3.FromPosition = 2.5D;
     customLabel3.LabelMark    = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel3.MarkColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     customLabel3.Text         = "East";
     customLabel3.ToPosition   = 3.5D;
     customLabel4.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     customLabel4.FromPosition = 3.5D;
     customLabel4.LabelMark    = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel4.MarkColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     customLabel4.Text         = "SAB";
     customLabel4.ToPosition   = 4.5D;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.InterlacedColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     chartArea1.AxisX.LineWidth       = 0;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.StripLines.Add(stripLine2);
     chartArea1.AxisX.Title       = "Províncias";
     chartArea1.AxisY.Title       = "Vote";
     chartArea1.BackColor         = System.Drawing.Color.WhiteSmoke;
     chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.LeftRight;
     chartArea1.BackHatchStyle    = System.Windows.Forms.DataVisualization.Charting.ChartHatchStyle.DottedDiamond;
     chartArea1.BorderColor       = System.Drawing.Color.Empty;
     chartArea1.Name = "ChartArea1";
     this.mainChart.ChartAreas.Add(chartArea1);
     legend1.Name           = "Legend1";
     legend1.Title          = "Partidos:";
     legend1.TitleBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.mainChart.Legends.Add(legend1);
     this.mainChart.Location   = new System.Drawing.Point(0, 31);
     this.mainChart.Margin     = new System.Windows.Forms.Padding(4);
     this.mainChart.Name       = "mainChart";
     series1.ChartArea         = "ChartArea1";
     series1.Legend            = "Legend1";
     series1.MarkerBorderColor = System.Drawing.Color.Red;
     series1.MarkerBorderWidth = 50;
     series1.MarkerColor       = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     series1.MarkerSize        = 50;
     series1.MarkerStep        = 3;
     series1.MarkerStyle       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross;
     series1.Name                 = "Series1";
     dataPoint1.BorderColor       = System.Drawing.Color.DarkGreen;
     dataPoint1.BorderWidth       = 50;
     dataPoint1.Font              = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataPoint2.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     dataPoint2.BorderDashStyle   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDot;
     dataPoint2.MarkerBorderColor = System.Drawing.Color.Sienna;
     dataPoint2.MarkerSize        = 50;
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series2.ChartArea = "ChartArea1";
     series2.Legend    = "Legend1";
     series2.Name      = "Series2";
     series2.Points.Add(dataPoint3);
     series2.Points.Add(dataPoint4);
     series3.ChartArea = "ChartArea1";
     series3.Legend    = "Legend1";
     series3.Name      = "Series3";
     this.mainChart.Series.Add(series1);
     this.mainChart.Series.Add(series2);
     this.mainChart.Series.Add(series3);
     this.mainChart.Size     = new System.Drawing.Size(1284, 665);
     this.mainChart.TabIndex = 5;
     this.mainChart.Text     = "Chart principal";
     title1.Name             = "Title1";
     title1.Text             = "Voting by province:";
     this.mainChart.Titles.Add(title1);
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.linkLabel1.AutoSize  = true;
     this.linkLabel1.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.linkLabel1.Location  = new System.Drawing.Point(13, 700);
     this.linkLabel1.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.linkLabel1.Name      = "linkLabel1";
     this.linkLabel1.Size      = new System.Drawing.Size(186, 16);
     this.linkLabel1.TabIndex  = 8;
     this.linkLabel1.TabStop   = true;
     this.linkLabel1.Text      = "Powered by: Big technologies";
     //
     // statusStripBanner
     //
     this.statusStripBanner.Location = new System.Drawing.Point(0, 719);
     this.statusStripBanner.Name     = "statusStripBanner";
     this.statusStripBanner.Size     = new System.Drawing.Size(1284, 22);
     this.statusStripBanner.TabIndex = 9;
     this.statusStripBanner.Text     = "statusStrip1";
     //
     // panelBanner
     //
     this.panelBanner.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelBanner.Location = new System.Drawing.Point(0, -3);
     this.panelBanner.Name     = "panelBanner";
     this.panelBanner.Size     = new System.Drawing.Size(1362, 27);
     this.panelBanner.TabIndex = 10;
     //
     // Statistics
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1284, 741);
     this.Controls.Add(this.panelBanner);
     this.Controls.Add(this.statusStripBanner);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.mainChart);
     this.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin        = new System.Windows.Forms.Padding(4);
     this.Name          = "Statistics";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Estatísticas";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.mainChart)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btnExportCAD = new DevComponents.DotNetBar.ButtonX();
     this.webBrowser1 = new System.Windows.Forms.WebBrowser();
     this.panel2 = new System.Windows.Forms.Panel();
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.btnExportCAD);
     this.panel1.Controls.Add(this.webBrowser1);
     this.panel1.Location = new System.Drawing.Point(0, 328);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(614, 142);
     this.panel1.TabIndex = 0;
     //
     // btnExportCAD
     //
     this.btnExportCAD.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExportCAD.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnExportCAD.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExportCAD.Location = new System.Drawing.Point(270, 107);
     this.btnExportCAD.Name = "btnExportCAD";
     this.btnExportCAD.Size = new System.Drawing.Size(75, 23);
     this.btnExportCAD.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnExportCAD.TabIndex = 1;
     this.btnExportCAD.Text = "导出CAD";
     this.btnExportCAD.Click += new System.EventHandler(this.btnExportCAD_Click);
     //
     // webBrowser1
     //
     this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser1.Location = new System.Drawing.Point(0, 0);
     this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser1.Name = "webBrowser1";
     this.webBrowser1.ScrollBarsEnabled = false;
     this.webBrowser1.Size = new System.Drawing.Size(614, 142);
     this.webBrowser1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.BackColor = System.Drawing.Color.White;
     this.panel2.Controls.Add(this.chart1);
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(614, 328);
     this.panel2.TabIndex = 1;
     //
     // chart1
     //
     chartArea1.AlignmentOrientation = System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.Horizontal;
     chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX.MajorGrid.Enabled = false;
     chartArea1.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Stacked;
     customLabel1.Text = "111";
     customLabel2.Text = "222";
     customLabel3.Text = "333";
     chartArea1.AxisY2.CustomLabels.Add(customLabel1);
     chartArea1.AxisY2.CustomLabels.Add(customLabel2);
     chartArea1.AxisY2.CustomLabels.Add(customLabel3);
     chartArea1.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name = "chart1";
     series1.ChartArea = "ChartArea1";
     series1.Name = "管线";
     this.chart1.Series.Add(series1);
     this.chart1.Size = new System.Drawing.Size(614, 328);
     this.chart1.TabIndex = 0;
     this.chart1.Text = "chart1";
     this.chart1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseClick);
     this.chart1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseMove);
     //
     // Frm_HDMAnalysis
     //
     this.ClientSize = new System.Drawing.Size(614, 470);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "Frm_HDMAnalysis";
     this.ShowIcon = false;
     this.Text = "横断面分析";
     this.Load += new System.EventHandler(this.Frm_HDMAnalysis_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_HDMAnalysis3_FormClosing);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.label1            = new System.Windows.Forms.Label();
     this.lblClass1         = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.lblClass2         = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.lblClass3         = new System.Windows.Forms.Label();
     this.label7            = new System.Windows.Forms.Label();
     this.lblClassTotal     = new System.Windows.Forms.Label();
     this.btnKor            = new System.Windows.Forms.Button();
     this.btnEng            = new System.Windows.Forms.Button();
     this.btnMat            = new System.Windows.Forms.Button();
     this.dataGridView1     = new System.Windows.Forms.DataGridView();
     this.lblLabel          = new System.Windows.Forms.Label();
     this.chart1            = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Controls.Add(this.lblClassTotal, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.label7, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblClass3, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.label5, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblClass2, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.label3, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblClass1, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(13, 110);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 4;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(376, 341);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("굴림", 12F);
     this.label1.Location = new System.Drawing.Point(3, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(40, 20);
     this.label1.TabIndex = 0;
     this.label1.Text     = "1반";
     //
     // lblClass1
     //
     this.lblClass1.AutoSize = true;
     this.lblClass1.Font     = new System.Drawing.Font("굴림", 12F);
     this.lblClass1.Location = new System.Drawing.Point(191, 0);
     this.lblClass1.Name     = "lblClass1";
     this.lblClass1.Size     = new System.Drawing.Size(20, 20);
     this.lblClass1.TabIndex = 1;
     this.lblClass1.Text     = "-";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("굴림", 12F);
     this.label3.Location = new System.Drawing.Point(3, 85);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(40, 20);
     this.label3.TabIndex = 2;
     this.label3.Text     = "2반";
     //
     // lblClass2
     //
     this.lblClass2.AutoSize = true;
     this.lblClass2.Font     = new System.Drawing.Font("굴림", 12F);
     this.lblClass2.Location = new System.Drawing.Point(191, 85);
     this.lblClass2.Name     = "lblClass2";
     this.lblClass2.Size     = new System.Drawing.Size(20, 20);
     this.lblClass2.TabIndex = 3;
     this.lblClass2.Text     = "-";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("굴림", 12F);
     this.label5.Location = new System.Drawing.Point(3, 170);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(40, 20);
     this.label5.TabIndex = 4;
     this.label5.Text     = "3반";
     //
     // lblClass3
     //
     this.lblClass3.AutoSize = true;
     this.lblClass3.Font     = new System.Drawing.Font("굴림", 12F);
     this.lblClass3.Location = new System.Drawing.Point(191, 170);
     this.lblClass3.Name     = "lblClass3";
     this.lblClass3.Size     = new System.Drawing.Size(20, 20);
     this.lblClass3.TabIndex = 5;
     this.lblClass3.Text     = "-";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("굴림", 12F);
     this.label7.Location = new System.Drawing.Point(3, 255);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(49, 20);
     this.label7.TabIndex = 6;
     this.label7.Text     = "전체";
     //
     // lblClassTotal
     //
     this.lblClassTotal.AutoSize = true;
     this.lblClassTotal.Font     = new System.Drawing.Font("굴림", 12F);
     this.lblClassTotal.Location = new System.Drawing.Point(191, 255);
     this.lblClassTotal.Name     = "lblClassTotal";
     this.lblClassTotal.Size     = new System.Drawing.Size(20, 20);
     this.lblClassTotal.TabIndex = 7;
     this.lblClassTotal.Text     = "-";
     //
     // btnKor
     //
     this.btnKor.Location = new System.Drawing.Point(126, 22);
     this.btnKor.Name     = "btnKor";
     this.btnKor.Size     = new System.Drawing.Size(143, 59);
     this.btnKor.TabIndex = 2;
     this.btnKor.Text     = "국어";
     this.btnKor.UseVisualStyleBackColor = true;
     this.btnKor.Click += new System.EventHandler(this.btnKor_Click);
     //
     // btnEng
     //
     this.btnEng.Location = new System.Drawing.Point(411, 22);
     this.btnEng.Name     = "btnEng";
     this.btnEng.Size     = new System.Drawing.Size(143, 59);
     this.btnEng.TabIndex = 3;
     this.btnEng.Text     = "영어";
     this.btnEng.UseVisualStyleBackColor = true;
     this.btnEng.Click += new System.EventHandler(this.btnEng_Click);
     //
     // btnMat
     //
     this.btnMat.Location = new System.Drawing.Point(699, 22);
     this.btnMat.Name     = "btnMat";
     this.btnMat.Size     = new System.Drawing.Size(143, 59);
     this.btnMat.TabIndex = 4;
     this.btnMat.Text     = "수학";
     this.btnMat.UseVisualStyleBackColor = true;
     this.btnMat.Click += new System.EventHandler(this.btnMat_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location           = new System.Drawing.Point(850, 22);
     this.dataGridView1.Name               = "dataGridView1";
     this.dataGridView1.RowHeadersWidth    = 51;
     this.dataGridView1.RowTemplate.Height = 27;
     this.dataGridView1.Size               = new System.Drawing.Size(141, 69);
     this.dataGridView1.TabIndex           = 5;
     this.dataGridView1.Visible            = false;
     //
     // lblLabel
     //
     this.lblLabel.AutoSize = true;
     this.lblLabel.Location = new System.Drawing.Point(673, 426);
     this.lblLabel.Name     = "lblLabel";
     this.lblLabel.Size     = new System.Drawing.Size(72, 15);
     this.lblLabel.TabIndex = 7;
     this.lblLabel.Text     = "성적 분포";
     //
     // chart1
     //
     customLabel1.Text = "0~20";
     customLabel2.Text = "21~40";
     customLabel3.Text = "41~60";
     customLabel4.Text = "61~80";
     customLabel5.Text = "81~100";
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.CustomLabels.Add(customLabel5);
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Location    = new System.Drawing.Point(411, 110);
     this.chart1.Name        = "chart1";
     series1.ChartArea       = "ChartArea1";
     series1.ChartType       = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series1.Name            = "Series1";
     series1.YValuesPerPoint = 4;
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(568, 296);
     this.chart1.TabIndex = 8;
     this.chart1.Text     = "chart1";
     //
     // Teacher3
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1003, 474);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.lblLabel);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.btnMat);
     this.Controls.Add(this.btnEng);
     this.Controls.Add(this.btnKor);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "Teacher3";
     this.Text            = "Teacher3";
     this.FormClosed     += new System.Windows.Forms.FormClosedEventHandler(this.Teacher3_FormClosed);
     this.Load           += new System.EventHandler(this.Teacher3_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #18
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 80);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 85);
     System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 65);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 60);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 75);
     System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 50);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 55);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 40);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 70);
     System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.ChartBackColor = new System.Windows.Forms.ComboBox();
     this.ShadowOffset = new System.Windows.Forms.ComboBox();
     this.ChartForeColor = new System.Windows.Forms.ComboBox();
     this.HatchStyle = new System.Windows.Forms.ComboBox();
     this.Gradient = new System.Windows.Forms.ComboBox();
     this.BorderColor = new System.Windows.Forms.ComboBox();
     this.BorderDashStyle = new System.Windows.Forms.ComboBox();
     this.BorderSize = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.Chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).BeginInit();
     this.SuspendLayout();
     //
     // ChartBackColor
     //
     this.ChartBackColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ChartBackColor.Items.AddRange(new object[] {
                                                         "Transparent",
                                                         "White",
                                                         "Blue",
                                                         "Red",
                                                         "Green",
                                                         "Yellow",
                                                         "Maroon",
                                                         "Gray",
                                                         "Gainsboro"});
     this.ChartBackColor.Location = new System.Drawing.Point(168, 8);
     this.ChartBackColor.Name = "ChartBackColor";
     this.ChartBackColor.TabIndex = 3;
     this.ChartBackColor.SelectedIndexChanged += new System.EventHandler(this.BackColor_SelectedIndexChanged);
     //
     // ShadowOffset
     //
     this.ShadowOffset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ShadowOffset.Items.AddRange(new object[] {
                                                       "0",
                                                       "1",
                                                       "2",
                                                       "3",
                                                       "4",
                                                       "5"});
     this.ShadowOffset.Location = new System.Drawing.Point(168, 248);
     this.ShadowOffset.Name = "ShadowOffset";
     this.ShadowOffset.TabIndex = 15;
     this.ShadowOffset.SelectedIndexChanged += new System.EventHandler(this.ShadowOffset_SelectedIndexChanged);
     //
     // ChartForeColor
     //
     this.ChartForeColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ChartForeColor.Items.AddRange(new object[] {
                                                         "Transparent",
                                                         "White",
                                                         "Blue",
                                                         "Red",
                                                         "Green",
                                                         "Yellow",
                                                         "Maroon",
                                                         "Gray",
                                                         "Gainsboro"});
     this.ChartForeColor.Location = new System.Drawing.Point(168, 104);
     this.ChartForeColor.Name = "ChartForeColor";
     this.ChartForeColor.TabIndex = 1;
     this.ChartForeColor.SelectedIndexChanged += new System.EventHandler(this.ChartForeColor_SelectedIndexChanged);
     //
     // HatchStyle
     //
     this.HatchStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.HatchStyle.Location = new System.Drawing.Point(168, 72);
     this.HatchStyle.Name = "HatchStyle";
     this.HatchStyle.TabIndex = 7;
     this.HatchStyle.SelectedIndexChanged += new System.EventHandler(this.HatchStyle_SelectedIndexChanged);
     //
     // Gradient
     //
     this.Gradient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Gradient.Location = new System.Drawing.Point(168, 40);
     this.Gradient.Name = "Gradient";
     this.Gradient.TabIndex = 5;
     this.Gradient.SelectedIndexChanged += new System.EventHandler(this.Gradient_SelectedIndexChanged);
     //
     // BorderColor
     //
     this.BorderColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderColor.Items.AddRange(new object[] {
                                                      "Transparent",
                                                      "Black",
                                                      "White",
                                                      "Blue",
                                                      "Red",
                                                      "Green",
                                                      "Yellow",
                                                      "Maroon",
                                                      "Gray",
                                                      "Gainsboro"});
     this.BorderColor.Location = new System.Drawing.Point(168, 144);
     this.BorderColor.Name = "BorderColor";
     this.BorderColor.TabIndex = 11;
     this.BorderColor.SelectedIndexChanged += new System.EventHandler(this.BorderColor_SelectedIndexChanged);
     //
     // BorderDashStyle
     //
     this.BorderDashStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderDashStyle.Location = new System.Drawing.Point(168, 176);
     this.BorderDashStyle.Name = "BorderDashStyle";
     this.BorderDashStyle.TabIndex = 9;
     this.BorderDashStyle.SelectedIndexChanged += new System.EventHandler(this.BorderDashStyle_SelectedIndexChanged);
     //
     // BorderSize
     //
     this.BorderSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderSize.Items.AddRange(new object[] {
                                                     "1",
                                                     "2",
                                                     "3",
                                                     "4",
                                                     "5"});
     this.BorderSize.Location = new System.Drawing.Point(168, 208);
     this.BorderSize.Name = "BorderSize";
     this.BorderSize.TabIndex = 13;
     this.BorderSize.SelectedIndexChanged += new System.EventHandler(this.BorderSize_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 253);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(156, 13);
     this.label1.TabIndex = 14;
     this.label1.Text = "Shadow &Offset:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 104);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(156, 19);
     this.label2.TabIndex = 0;
     this.label2.Text = "&Secondary Back Color:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(11, 10);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(156, 19);
     this.label3.TabIndex = 2;
     this.label3.Text = "&Back Color:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(12, 48);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(156, 13);
     this.label4.TabIndex = 4;
     this.label4.Text = "&Gradient:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12, 80);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(156, 13);
     this.label5.TabIndex = 6;
     this.label5.Text = "&Hatch Style:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(12, 184);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(156, 13);
     this.label6.TabIndex = 8;
     this.label6.Text = "&Border Style:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(12, 152);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(156, 13);
     this.label7.TabIndex = 10;
     this.label7.Text = "B&order Color:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(12, 216);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(156, 13);
     this.label8.TabIndex = 12;
     this.label8.Text = "Bo&rder Size:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label9.Location = new System.Drawing.Point(16, 8);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(702, 34);
     this.label9.TabIndex = 0;
     this.label9.Text = "This sample demonstrates how to set the appearance of the legend.";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.BorderDashStyle,
                                                                          this.label5,
                                                                          this.Gradient,
                                                                          this.label6,
                                                                          this.label4,
                                                                          this.HatchStyle,
                                                                          this.label7,
                                                                          this.label3,
                                                                          this.ShadowOffset,
                                                                          this.label1,
                                                                          this.label2,
                                                                          this.label8,
                                                                          this.BorderSize,
                                                                          this.ChartBackColor,
                                                                          this.ChartForeColor,
                                                                          this.BorderColor});
     this.panel1.Location = new System.Drawing.Point(432, 56);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(292, 296);
     this.panel1.TabIndex = 2;
     //
     // Chart1
     //
     this.Chart1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.Chart1.BackSecondaryColor = System.Drawing.Color.White;
     this.Chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.Chart1.BorderlineColor = System.Drawing.Color.FromArgb(((System.Byte)(26)), ((System.Byte)(59)), ((System.Byte)(105)));
     this.Chart1.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.Chart1.BorderlineWidth = 2;
     this.Chart1.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.IsClustered = true;
     chartArea1.Area3DStyle.Enable3D = true;
     chartArea1.Area3DStyle.Perspective = 10;
     chartArea1.Area3DStyle.PointGapDepth = 0;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.WallWidth = 0;
     chartArea1.Area3DStyle.Inclination = 15;
     chartArea1.Area3DStyle.Rotation = 5;
     customLabel1.FromPosition = 0.5;
     customLabel1.Text = "John";
     customLabel1.ToPosition = 1.5;
     customLabel2.FromPosition = 1.5;
     customLabel2.Text = "Mary";
     customLabel2.ToPosition = 2.5;
     customLabel3.FromPosition = 2.5;
     customLabel3.Text = "Jeff";
     customLabel3.ToPosition = 3.5;
     customLabel4.FromPosition = 3.5;
     customLabel4.Text = "Bob";
     customLabel4.ToPosition = 4.5;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.Interval = 1;
     chartArea1.AxisX.IsLabelAutoFit = false;
     chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F);
     chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.AxisY.IsLabelAutoFit = false;
     chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisY.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.BackColor = System.Drawing.Color.WhiteSmoke;
     chartArea1.BackSecondaryColor = System.Drawing.Color.White;
     chartArea1.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     chartArea1.Name = "Default";
     chartArea1.Position.Auto = false;
     chartArea1.Position.Height = 75F;
     chartArea1.Position.Width = 100F;
     chartArea1.Position.Y = 8F;
     chartArea1.ShadowColor = System.Drawing.Color.Transparent;
     this.Chart1.ChartAreas.Add(chartArea1);
     legend1.Alignment = System.Drawing.StringAlignment.Center;
     legend1.IsTextAutoFit = false;
     legend1.BackColor = System.Drawing.Color.Transparent;
     legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
     legend1.IsDockedInsideChartArea = false;
     legend1.DockedToChartArea = "Default";
     legend1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend1.Name = "Default";
     this.Chart1.Legends.Add(legend1);
     this.Chart1.Location = new System.Drawing.Point(16, 48);
     this.Chart1.Name = "Chart1";
     this.Chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(180)), ((System.Byte)(26)), ((System.Byte)(59)), ((System.Byte)(105)));
     series1.ChartArea = "Default";
     series1.Color = System.Drawing.Color.FromArgb(((System.Byte)(220)), ((System.Byte)(65)), ((System.Byte)(140)), ((System.Byte)(240)));
     series1.CustomProperties = "DrawingStyle=Cylinder";
     series1.Name = "Total";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     series1.ShadowColor = System.Drawing.Color.Transparent;
     series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     series2.ChartArea = "Default";
     series2.Color = System.Drawing.Color.FromArgb(((System.Byte)(220)), ((System.Byte)(252)), ((System.Byte)(180)), ((System.Byte)(65)));
     series2.CustomProperties = "DrawingStyle=Cylinder";
     series2.Name = "Last Week";
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.Points.Add(dataPoint8);
     series3.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     series3.ChartArea = "Default";
     series3.Color = System.Drawing.Color.FromArgb(((System.Byte)(220)), ((System.Byte)(224)), ((System.Byte)(64)), ((System.Byte)(10)));
     series3.CustomProperties = "DrawingStyle=Cylinder";
     series3.Name = "This Week";
     series3.Points.Add(dataPoint9);
     series3.Points.Add(dataPoint10);
     series3.Points.Add(dataPoint11);
     series3.Points.Add(dataPoint12);
     this.Chart1.Series.Add(series1);
     this.Chart1.Series.Add(series2);
     this.Chart1.Series.Add(series3);
     this.Chart1.Size = new System.Drawing.Size(412, 296);
     this.Chart1.TabIndex = 1;
     title1.Alignment = System.Drawing.ContentAlignment.TopCenter;
     title1.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(26)), ((System.Byte)(59)), ((System.Byte)(105)));
     title1.Font = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
     title1.Position.Auto = false;
     title1.Position.Height = 8.738057F;
     title1.Position.Width = 80F;
     title1.Position.X = 5F;
     title1.Position.Y = 4F;
     title1.ShadowColor = System.Drawing.Color.FromArgb(((System.Byte)(32)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     title1.ShadowOffset = 3;
     title1.Text = "Chart Control for .NET Framework";
     this.Chart1.Titles.Add(title1);
     //
     // LegendAppearance
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this.Chart1,
                                                                   this.panel1,
                                                                   this.label9});
     this.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name = "LegendAppearance";
     this.Size = new System.Drawing.Size(728, 480);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1    = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1       = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title1        = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2    = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine2    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine3    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine4    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine5    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel13 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel14 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine6    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2       = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint5    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint6    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint7    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.Title       title2        = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmModoAutonomo));
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.graficoCancelamento = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label3       = new System.Windows.Forms.Label();
     this.graficoVenda = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.toolTip1     = new System.Windows.Forms.ToolTip(this.components);
     this.button2      = new System.Windows.Forms.Button();
     this.pictureBox2  = new System.Windows.Forms.PictureBox();
     this.pictureBox1  = new System.Windows.Forms.PictureBox();
     this.txtLogin     = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.graficoCancelamento)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.graficoVenda)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.AutoSize     = true;
     this.label2.Font         = new System.Drawing.Font("Tw Cen MT Condensed", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location     = new System.Drawing.Point(10, 252);
     this.label2.Margin       = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name         = "label2";
     this.label2.Size         = new System.Drawing.Size(264, 51);
     this.label2.TabIndex     = 9;
     this.label2.Text         = "Visualizar Graficos";
     this.label2.Click       += new System.EventHandler(this.Label2_Click);
     this.label2.DoubleClick += new System.EventHandler(this.Label2_DoubleClick);
     this.label2.MouseLeave  += new System.EventHandler(this.Label2_MouseLeave);
     this.label2.MouseMove   += new System.Windows.Forms.MouseEventHandler(this.Label2_MouseMove);
     //
     // label1
     //
     this.label1.AutoSize    = true;
     this.label1.Font        = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location    = new System.Drawing.Point(10, 192);
     this.label1.Margin      = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(122, 29);
     this.label1.TabIndex    = 8;
     this.label1.Text        = "Autônomo";
     this.label1.MouseLeave += new System.EventHandler(this.Label1_MouseLeave);
     this.label1.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.Label1_MouseMove);
     //
     // graficoCancelamento
     //
     this.graficoCancelamento.BorderlineDashStyle  = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     this.graficoCancelamento.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.Enable3D = true;
     chartArea1.Name = "ChartArea1";
     this.graficoCancelamento.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.graficoCancelamento.Legends.Add(legend1);
     this.graficoCancelamento.Location = new System.Drawing.Point(20, 582);
     this.graficoCancelamento.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.graficoCancelamento.Name     = "graficoCancelamento";
     series1.ChartArea = "ChartArea1";
     series1.Legend    = "Legend1";
     series1.Name      = "Series1";
     this.graficoCancelamento.Series.Add(series1);
     this.graficoCancelamento.Size     = new System.Drawing.Size(450, 232);
     this.graficoCancelamento.TabIndex = 11;
     this.graficoCancelamento.Text     = "Cancelamentos";
     title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     title1.Name = "Title2";
     title1.Text = "Cancelamentos";
     this.graficoCancelamento.Titles.Add(title1);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(14, 306);
     this.label3.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(33, 20);
     this.label3.TabIndex = 10;
     this.label3.Text     = "Olá";
     //
     // graficoVenda
     //
     this.graficoVenda.BackSecondaryColor   = System.Drawing.Color.White;
     this.graficoVenda.BorderlineColor      = System.Drawing.Color.DarkGray;
     this.graficoVenda.BorderlineDashStyle  = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     this.graficoVenda.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea2.Area3DStyle.Enable3D        = true;
     customLabel1.ForeColor = System.Drawing.Color.Black;
     customLabel1.Text      = "Dom";
     customLabel2.ForeColor = System.Drawing.Color.White;
     customLabel2.Text      = "Seg";
     customLabel3.Text      = "Ter";
     customLabel4.Text      = "Qua";
     customLabel5.Text      = "Qui";
     customLabel6.ForeColor = System.Drawing.Color.White;
     customLabel6.Text      = "Sex";
     customLabel7.Text      = "Sáb";
     chartArea2.AxisX.CustomLabels.Add(customLabel1);
     chartArea2.AxisX.CustomLabels.Add(customLabel2);
     chartArea2.AxisX.CustomLabels.Add(customLabel3);
     chartArea2.AxisX.CustomLabels.Add(customLabel4);
     chartArea2.AxisX.CustomLabels.Add(customLabel5);
     chartArea2.AxisX.CustomLabels.Add(customLabel6);
     chartArea2.AxisX.CustomLabels.Add(customLabel7);
     stripLine1.Text = "Sáb";
     stripLine2.Text = "Seg";
     stripLine3.Text = "Ter";
     stripLine4.Text = "Qua";
     stripLine5.Text = "Qui";
     chartArea2.AxisX.StripLines.Add(stripLine1);
     chartArea2.AxisX.StripLines.Add(stripLine2);
     chartArea2.AxisX.StripLines.Add(stripLine3);
     chartArea2.AxisX.StripLines.Add(stripLine4);
     chartArea2.AxisX.StripLines.Add(stripLine5);
     chartArea2.AxisX.Title = "Semana";
     chartArea2.AxisY.Title = "Valor(R$)";
     customLabel8.Text      = "Sáb";
     customLabel9.Text      = "Seg";
     customLabel10.Text     = "Ter";
     customLabel11.Text     = "Qua";
     customLabel12.Text     = "Qui";
     customLabel13.Text     = "Sex";
     customLabel14.Text     = "Dom";
     chartArea2.AxisY2.CustomLabels.Add(customLabel8);
     chartArea2.AxisY2.CustomLabels.Add(customLabel9);
     chartArea2.AxisY2.CustomLabels.Add(customLabel10);
     chartArea2.AxisY2.CustomLabels.Add(customLabel11);
     chartArea2.AxisY2.CustomLabels.Add(customLabel12);
     chartArea2.AxisY2.CustomLabels.Add(customLabel13);
     chartArea2.AxisY2.CustomLabels.Add(customLabel14);
     stripLine6.Text = "Dom";
     chartArea2.AxisY2.StripLines.Add(stripLine6);
     chartArea2.Name = "ChartArea1";
     this.graficoVenda.ChartAreas.Add(chartArea2);
     this.graficoVenda.Cursor = System.Windows.Forms.Cursors.Default;
     legend2.Name             = "Legend1";
     legend2.Title            = "Total \\n de \\n vendas";
     this.graficoVenda.Legends.Add(legend2);
     this.graficoVenda.Location = new System.Drawing.Point(20, 329);
     this.graficoVenda.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.graficoVenda.Name     = "graficoVenda";
     this.graficoVenda.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Berry;
     series2.ChartArea          = "ChartArea1";
     series2.Legend             = "Legend1";
     series2.MarkerBorderColor  = System.Drawing.SystemColors.Control;
     series2.Name                 = "Series1";
     dataPoint1.AxisLabel         = "Dom";
     dataPoint1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint1.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint1.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Top;
     dataPoint2.AxisLabel          = "Seg\\n";
     dataPoint2.BackGradientStyle  = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint2.BackImage          = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                     "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint3.AxisLabel         = "Ter\\n";
     dataPoint3.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint3.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint4.AxisLabel         = "Qua\\n";
     dataPoint4.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint4.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint5.AxisLabel         = "Qui";
     dataPoint5.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint5.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint6.AxisLabel         = "Sex";
     dataPoint6.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint6.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint7.AxisLabel         = "Sab";
     dataPoint7.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint7.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     series2.Points.Add(dataPoint1);
     series2.Points.Add(dataPoint2);
     series2.Points.Add(dataPoint3);
     series2.Points.Add(dataPoint4);
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.XAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     this.graficoVenda.Series.Add(series2);
     this.graficoVenda.Size     = new System.Drawing.Size(450, 232);
     this.graficoVenda.TabIndex = 13;
     this.graficoVenda.Text     = "Vendas";
     title2.BorderDashStyle     = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     title2.Name = "Title1";
     title2.Text = "Vendas";
     this.graficoVenda.Titles.Add(title2);
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(464, 852);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(116, 35);
     this.button2.TabIndex = 15;
     this.button2.Text     = "Confirmar";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor       = System.Drawing.Color.DeepSkyBlue;
     this.pictureBox2.BackgroundImage = global::Vismo_New_.Properties.Resources.thumb2_blue_texture_background_blue_paint_texture_painted_wall_stone_texture;
     this.pictureBox2.Image           = global::Vismo_New_.Properties.Resources.Seta_direita_azul_200x200px1;
     this.pictureBox2.Location        = new System.Drawing.Point(10, 5);
     this.pictureBox2.Margin          = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.pictureBox2.Name            = "pictureBox2";
     this.pictureBox2.Size            = new System.Drawing.Size(82, 77);
     this.pictureBox2.SizeMode        = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex        = 12;
     this.pictureBox2.TabStop         = false;
     this.pictureBox2.Click          += new System.EventHandler(this.PictureBox2_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = global::Vismo_New_.Properties.Resources.thumb2_blue_texture_background_blue_paint_texture_painted_wall_stone_texture;
     this.pictureBox1.Location = new System.Drawing.Point(-34, -62);
     this.pictureBox1.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(670, 215);
     this.pictureBox1.TabIndex = 7;
     this.pictureBox1.TabStop  = false;
     //
     // txtLogin
     //
     this.txtLogin.Location = new System.Drawing.Point(426, 178);
     this.txtLogin.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.txtLogin.Name     = "txtLogin";
     this.txtLogin.Size     = new System.Drawing.Size(148, 26);
     this.txtLogin.TabIndex = 16;
     this.txtLogin.Visible  = false;
     //
     // FrmModoAutonomo
     //
     this.AccessibleRole      = System.Windows.Forms.AccessibleRole.None;
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor           = System.Drawing.SystemColors.ButtonHighlight;
     this.ClientSize          = new System.Drawing.Size(608, 749);
     this.Controls.Add(this.txtLogin);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.graficoVenda);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.graficoCancelamento);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.pictureBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FrmModoAutonomo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Modo Autonomo - Vismo";
     this.Load         += new System.EventHandler(this.FrmModoAutonomo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.graficoCancelamento)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.graficoVenda)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #20
0
    /// <summary> 
    /// Required method for Designer support - do not modify 
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
      System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
      System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
      System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
      System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
      System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
      System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
      System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
      System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
      System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
      System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
      this.taskChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
      this.coresChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
      this.label1 = new System.Windows.Forms.Label();
      this.txtSlaveState = new System.Windows.Forms.TextBox();
      this.mainSplitContainer = new System.Windows.Forms.SplitContainer();
      this.coresGroupBox = new System.Windows.Forms.GroupBox();
      this.groupBoxTaskChart = new System.Windows.Forms.GroupBox();
      ((System.ComponentModel.ISupportInitialize)(this.taskChart)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.coresChart)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).BeginInit();
      this.mainSplitContainer.Panel1.SuspendLayout();
      this.mainSplitContainer.Panel2.SuspendLayout();
      this.mainSplitContainer.SuspendLayout();
      this.coresGroupBox.SuspendLayout();
      this.groupBoxTaskChart.SuspendLayout();
      this.SuspendLayout();
      // 
      // taskChart
      // 
      this.taskChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      customLabel1.Text = "Jobs";
      customLabel2.Text = "Aborted Jobs";
      customLabel3.Text = "Finished Jobs";
      customLabel4.Text = "Fetched Jobs";
      chartArea1.AxisX.CustomLabels.Add(customLabel1);
      chartArea1.AxisX.CustomLabels.Add(customLabel2);
      chartArea1.AxisX.CustomLabels.Add(customLabel3);
      chartArea1.AxisX.CustomLabels.Add(customLabel4);
      chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
      chartArea1.AxisX.MajorGrid.Enabled = false;
      chartArea1.AxisX.MajorTickMark.Enabled = false;
      chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
      chartArea1.AxisY.Title = "Number of...";
      chartArea1.InnerPlotPosition.Auto = false;
      chartArea1.InnerPlotPosition.Height = 97F;
      chartArea1.InnerPlotPosition.Width = 97F;
      chartArea1.InnerPlotPosition.X = 3F;
      chartArea1.InnerPlotPosition.Y = 3F;
      chartArea1.Name = "ChartArea1";
      this.taskChart.ChartAreas.Add(chartArea1);
      legend1.Name = "Legend1";
      this.taskChart.Legends.Add(legend1);
      this.taskChart.Location = new System.Drawing.Point(6, 19);
      this.taskChart.Name = "taskChart";
      series1.ChartArea = "ChartArea1";
      series1.Legend = "Legend1";
      series1.Name = "Series1";
      series2.ChartArea = "ChartArea1";
      series2.Legend = "Legend1";
      series2.Name = "Series2";
      series3.ChartArea = "ChartArea1";
      series3.Legend = "Legend1";
      series3.Name = "Series3";
      series4.ChartArea = "ChartArea1";
      series4.Legend = "Legend1";
      series4.Name = "Series4";
      series5.ChartArea = "ChartArea1";
      series5.Legend = "Legend1";
      series5.Name = "Series5";
      this.taskChart.Series.Add(series1);
      this.taskChart.Series.Add(series2);
      this.taskChart.Series.Add(series3);
      this.taskChart.Series.Add(series4);
      this.taskChart.Series.Add(series5);
      this.taskChart.Size = new System.Drawing.Size(406, 178);
      this.taskChart.TabIndex = 7;
      // 
      // coresChart
      // 
      this.coresChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      chartArea2.Name = "ChartArea1";
      this.coresChart.ChartAreas.Add(chartArea2);
      legend2.Name = "Legend1";
      this.coresChart.Legends.Add(legend2);
      this.coresChart.Location = new System.Drawing.Point(6, 19);
      this.coresChart.Name = "coresChart";
      series6.ChartArea = "ChartArea1";
      series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
      series6.Legend = "Legend1";
      series6.Name = "Series1";
      this.coresChart.Series.Add(series6);
      this.coresChart.Size = new System.Drawing.Size(187, 72);
      this.coresChart.TabIndex = 9;
      // 
      // label1
      // 
      this.label1.AutoSize = true;
      this.label1.Location = new System.Drawing.Point(5, 6);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(65, 13);
      this.label1.TabIndex = 14;
      this.label1.Text = "Slave State:";
      // 
      // txtSlaveState
      // 
      this.txtSlaveState.Enabled = false;
      this.txtSlaveState.Location = new System.Drawing.Point(76, 3);
      this.txtSlaveState.Name = "txtSlaveState";
      this.txtSlaveState.Size = new System.Drawing.Size(100, 20);
      this.txtSlaveState.TabIndex = 15;
      // 
      // mainSplitContainer
      // 
      this.mainSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mainSplitContainer.Location = new System.Drawing.Point(3, 3);
      this.mainSplitContainer.Name = "mainSplitContainer";
      this.mainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
      // 
      // mainSplitContainer.Panel1
      // 
      this.mainSplitContainer.Panel1.Controls.Add(this.coresGroupBox);
      this.mainSplitContainer.Panel1.Controls.Add(this.txtSlaveState);
      this.mainSplitContainer.Panel1.Controls.Add(this.label1);
      // 
      // mainSplitContainer.Panel2
      // 
      this.mainSplitContainer.Panel2.Controls.Add(this.groupBoxTaskChart);
      this.mainSplitContainer.Size = new System.Drawing.Size(424, 319);
      this.mainSplitContainer.SplitterDistance = 106;
      this.mainSplitContainer.TabIndex = 16;
      // 
      // coresGroupBox
      // 
      this.coresGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.coresGroupBox.Controls.Add(this.coresChart);
      this.coresGroupBox.Location = new System.Drawing.Point(216, 6);
      this.coresGroupBox.Name = "coresGroupBox";
      this.coresGroupBox.Size = new System.Drawing.Size(199, 97);
      this.coresGroupBox.TabIndex = 0;
      this.coresGroupBox.TabStop = false;
      this.coresGroupBox.Text = "Cores";
      // 
      // groupBoxTaskChart
      // 
      this.groupBoxTaskChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.groupBoxTaskChart.Controls.Add(this.taskChart);
      this.groupBoxTaskChart.Location = new System.Drawing.Point(3, 3);
      this.groupBoxTaskChart.Name = "groupBoxTaskChart";
      this.groupBoxTaskChart.Size = new System.Drawing.Size(418, 203);
      this.groupBoxTaskChart.TabIndex = 0;
      this.groupBoxTaskChart.TabStop = false;
      this.groupBoxTaskChart.Text = "Tasks";
      // 
      // SlaveStats
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.Controls.Add(this.mainSplitContainer);
      this.Name = "SlaveStats";
      this.Size = new System.Drawing.Size(430, 325);
      ((System.ComponentModel.ISupportInitialize)(this.taskChart)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.coresChart)).EndInit();
      this.mainSplitContainer.Panel1.ResumeLayout(false);
      this.mainSplitContainer.Panel1.PerformLayout();
      this.mainSplitContainer.Panel2.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).EndInit();
      this.mainSplitContainer.ResumeLayout(false);
      this.coresGroupBox.ResumeLayout(false);
      this.groupBoxTaskChart.ResumeLayout(false);
      this.ResumeLayout(false);

    }
예제 #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.chartRoom   = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label1      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.label3      = new System.Windows.Forms.Label();
     this.chartRoom1  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label4      = new System.Windows.Forms.Label();
     this.panel1      = new System.Windows.Forms.Panel();
     this.btnBuilding = new FontAwesome.Sharp.IconButton();
     this.btnRooms    = new FontAwesome.Sharp.IconButton();
     ((System.ComponentModel.ISupportInitialize)(this.chartRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartRoom1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // chartRoom
     //
     chartArea1.Name = "ChartArea1";
     this.chartRoom.ChartAreas.Add(chartArea1);
     this.chartRoom.Cursor = System.Windows.Forms.Cursors.Default;
     legend1.Name          = "Legend1";
     this.chartRoom.Legends.Add(legend1);
     this.chartRoom.Location = new System.Drawing.Point(155, 119);
     this.chartRoom.Name     = "chartRoom";
     series1.ChartArea       = "ChartArea1";
     series1.Color           = System.Drawing.Color.Goldenrod;
     series1.IsXValueIndexed = true;
     series1.Legend          = "Legend1";
     series1.MarkerSize      = 1;
     series1.Name            = "Rooms";
     series1.XValueType      = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     this.chartRoom.Series.Add(series1);
     this.chartRoom.Size     = new System.Drawing.Size(266, 277);
     this.chartRoom.TabIndex = 1;
     this.chartRoom.Text     = "chart1";
     this.chartRoom.Click   += new System.EventHandler(this.chartRoom_Click);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.Font      = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(352, 38);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(96, 25);
     this.label1.TabIndex  = 15;
     this.label1.Text      = "Statistics";
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(208, 95);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(120, 19);
     this.label2.TabIndex  = 19;
     this.label2.Text      = "Registered Rooms";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.BackColor = System.Drawing.Color.White;
     this.label3.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location  = new System.Drawing.Point(472, 95);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(234, 19);
     this.label3.TabIndex  = 20;
     this.label3.Text      = "Registered Room Located in Building";
     //
     // chartRoom1
     //
     chartArea2.AxisX2.CustomLabels.Add(customLabel1);
     chartArea2.AxisX2.CustomLabels.Add(customLabel2);
     chartArea2.AxisX2.CustomLabels.Add(customLabel3);
     chartArea2.AxisX2.CustomLabels.Add(customLabel4);
     chartArea2.Name = "ChartArea1";
     this.chartRoom1.ChartAreas.Add(chartArea2);
     this.chartRoom1.Cursor = System.Windows.Forms.Cursors.Default;
     legend2.Name           = "Legend1";
     this.chartRoom1.Legends.Add(legend2);
     this.chartRoom1.Location = new System.Drawing.Point(454, 127);
     this.chartRoom1.Name     = "chartRoom1";
     series2.ChartArea        = "ChartArea1";
     series2.Color            = System.Drawing.Color.ForestGreen;
     series2.IsXValueIndexed  = true;
     series2.Legend           = "Legend1";
     series2.MarkerSize       = 1;
     series2.Name             = "Buildings";
     series2.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     this.chartRoom1.Series.Add(series2);
     this.chartRoom1.Size     = new System.Drawing.Size(266, 277);
     this.chartRoom1.TabIndex = 21;
     this.chartRoom1.Text     = "chart1";
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.BackColor = System.Drawing.Color.White;
     this.label4.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location  = new System.Drawing.Point(726, 228);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(152, 133);
     this.label4.TabIndex  = 22;
     this.label4.Text      = "1 - Business Building\r\n2 - Main Building\r\n3 - Engineering Building\r\n4 - New Build" +
                             "ing\r\n\r\n\r\n\r\n";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnBuilding);
     this.panel1.Controls.Add(this.btnRooms);
     this.panel1.Controls.Add(this.chartRoom1);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Font     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Margin   = new System.Windows.Forms.Padding(2);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(994, 609);
     this.panel1.TabIndex = 23;
     //
     // btnBuilding
     //
     this.btnBuilding.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(169)))), ((int)(((byte)(255)))));
     this.btnBuilding.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnBuilding.Font                    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBuilding.ForeColor               = System.Drawing.Color.White;
     this.btnBuilding.IconChar                = FontAwesome.Sharp.IconChar.Building;
     this.btnBuilding.IconColor               = System.Drawing.Color.White;
     this.btnBuilding.IconFont                = FontAwesome.Sharp.IconFont.Solid;
     this.btnBuilding.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnBuilding.Location                = new System.Drawing.Point(584, 509);
     this.btnBuilding.Margin                  = new System.Windows.Forms.Padding(2);
     this.btnBuilding.Name                    = "btnBuilding";
     this.btnBuilding.Size                    = new System.Drawing.Size(136, 46);
     this.btnBuilding.TabIndex                = 87;
     this.btnBuilding.Text                    = "Buildings";
     this.btnBuilding.TextAlign               = System.Drawing.ContentAlignment.MiddleRight;
     this.btnBuilding.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnBuilding.UseVisualStyleBackColor = false;
     this.btnBuilding.Click                  += new System.EventHandler(this.btnBuilding_Click);
     //
     // btnRooms
     //
     this.btnRooms.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(169)))), ((int)(((byte)(255)))));
     this.btnRooms.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnRooms.Font                    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRooms.ForeColor               = System.Drawing.Color.White;
     this.btnRooms.IconChar                = FontAwesome.Sharp.IconChar.Home;
     this.btnRooms.IconColor               = System.Drawing.Color.White;
     this.btnRooms.IconFont                = FontAwesome.Sharp.IconFont.Solid;
     this.btnRooms.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnRooms.Location                = new System.Drawing.Point(255, 509);
     this.btnRooms.Margin                  = new System.Windows.Forms.Padding(2);
     this.btnRooms.Name                    = "btnRooms";
     this.btnRooms.Size                    = new System.Drawing.Size(118, 46);
     this.btnRooms.TabIndex                = 86;
     this.btnRooms.Text                    = "Rooms";
     this.btnRooms.TextAlign               = System.Drawing.ContentAlignment.MiddleRight;
     this.btnRooms.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnRooms.UseVisualStyleBackColor = false;
     this.btnRooms.Click                  += new System.EventHandler(this.btnRooms_Click);
     //
     // Statistics
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(994, 609);
     this.Controls.Add(this.chartRoom);
     this.Controls.Add(this.panel1);
     this.Name  = "Statistics";
     this.Text  = " Statistics";
     this.Load += new System.EventHandler(this.Statistics_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chartRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartRoom1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Conventional Diesel");
            System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Residual Oil");
            System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Low Sulfur Diesel");
            System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Natural Gas");
            System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Biodiesel");
            System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Fischer Tropsch Diesel");
            System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Conventional Diesel");
            System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Residual Oil");
            System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Low Sulfur Diesel");
            System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Natural Gas");
            System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Biodiesel");
            System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Fischer Tropsch Diesel");
            System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("Conventional Diesel");
            System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("Residual Oil");
            System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("Low Sulfur Diesel");
            System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("Natural Gas");
            System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("Biodiesel");
            System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("Fischer Tropsch Diesel");
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GREETFormattedResults));
            this.panel_Results = new System.Windows.Forms.Panel();
            this.panel_Table = new System.Windows.Forms.Panel();
            this.label_Aux_VO = new System.Windows.Forms.Label();
            this.label_Aux_WTP = new System.Windows.Forms.Label();
            this.label_Total = new System.Windows.Forms.Label();
            this.label_Main_VO = new System.Windows.Forms.Label();
            this.label_Main_WTP = new System.Windows.Forms.Label();
            this.label_Results_Shown_Per_Trip = new System.Windows.Forms.Label();
            this.table_Results = new System.Windows.Forms.TableLayoutPanel();
            this.label_Aux_TE_VO = new System.Windows.Forms.Label();
            this.label_Aux_N2O_WTP = new System.Windows.Forms.Label();
            this.label_Aux_TE_WTP = new System.Windows.Forms.Label();
            this.label_Main_TE_VO = new System.Windows.Forms.Label();
            this.label_Total_Energy = new System.Windows.Forms.Label();
            this.label_Fossil_Fuels = new System.Windows.Forms.Label();
            this.label_VOC = new System.Windows.Forms.Label();
            this.label_CO = new System.Windows.Forms.Label();
            this.label_NOx = new System.Windows.Forms.Label();
            this.label_PM10 = new System.Windows.Forms.Label();
            this.label_PM25 = new System.Windows.Forms.Label();
            this.label_SOx = new System.Windows.Forms.Label();
            this.label_CH4 = new System.Windows.Forms.Label();
            this.label_CO2 = new System.Windows.Forms.Label();
            this.label_N2O = new System.Windows.Forms.Label();
            this.label_Main_TE_WTP = new System.Windows.Forms.Label();
            this.label_Main_VOC_WTP = new System.Windows.Forms.Label();
            this.label_Main_CO_WTP = new System.Windows.Forms.Label();
            this.label_Main_NOx_WTP = new System.Windows.Forms.Label();
            this.label_Main_PM10_WTP = new System.Windows.Forms.Label();
            this.label_Main_PM25_WTP = new System.Windows.Forms.Label();
            this.label_Main_SOx_WTP = new System.Windows.Forms.Label();
            this.label_Main_CH4_WTP = new System.Windows.Forms.Label();
            this.label_Main_CO2_WTP = new System.Windows.Forms.Label();
            this.label_Main_N2O_WTP = new System.Windows.Forms.Label();
            this.label_Main_N2O_VO = new System.Windows.Forms.Label();
            this.label_Main_CH4_VO = new System.Windows.Forms.Label();
            this.label_Main_PM25_VO = new System.Windows.Forms.Label();
            this.label_Main_NOx_VO = new System.Windows.Forms.Label();
            this.label_Main_VOC_VO = new System.Windows.Forms.Label();
            this.label_Main_CO_VO = new System.Windows.Forms.Label();
            this.label_Main_PM10_VO = new System.Windows.Forms.Label();
            this.label_Main_SOx_VO = new System.Windows.Forms.Label();
            this.label_Main_CO2_VO = new System.Windows.Forms.Label();
            this.label_TE_Total = new System.Windows.Forms.Label();
            this.label_VOC_Total = new System.Windows.Forms.Label();
            this.label_CO_Total = new System.Windows.Forms.Label();
            this.label_NOx_Total = new System.Windows.Forms.Label();
            this.label_PM10_Total = new System.Windows.Forms.Label();
            this.label_PM25_Total = new System.Windows.Forms.Label();
            this.label_SOx_Total = new System.Windows.Forms.Label();
            this.label_CH4_Total = new System.Windows.Forms.Label();
            this.label_CO2_Total = new System.Windows.Forms.Label();
            this.label_N2O_Total = new System.Windows.Forms.Label();
            this.label_Aux_VOC_WTP = new System.Windows.Forms.Label();
            this.label_Aux_CO_WTP = new System.Windows.Forms.Label();
            this.label_Aux_NOx_WTP = new System.Windows.Forms.Label();
            this.label_Aux_PM10_WTP = new System.Windows.Forms.Label();
            this.label_Aux_PM25_WTP = new System.Windows.Forms.Label();
            this.label_Aux_SOx_WTP = new System.Windows.Forms.Label();
            this.label_Aux_CH4_WTP = new System.Windows.Forms.Label();
            this.label_Aux_CO2_WTP = new System.Windows.Forms.Label();
            this.label_Aux_VOC_VO = new System.Windows.Forms.Label();
            this.label_Aux_CO_VO = new System.Windows.Forms.Label();
            this.label_Aux_NOx_VO = new System.Windows.Forms.Label();
            this.label_Aux_PM10_VO = new System.Windows.Forms.Label();
            this.label_Aux_PM25_VO = new System.Windows.Forms.Label();
            this.label_Aux_SOx_VO = new System.Windows.Forms.Label();
            this.label_Aux_CH4_VO = new System.Windows.Forms.Label();
            this.label_Aux_CO2_VO = new System.Windows.Forms.Label();
            this.label_Aux_N2O_VO = new System.Windows.Forms.Label();
            this.label_Petroleum_Fuel = new System.Windows.Forms.Label();
            this.label_Emissions = new System.Windows.Forms.Label();
            this.label_Main_FF_WTP = new System.Windows.Forms.Label();
            this.label_Main_PF_WTP = new System.Windows.Forms.Label();
            this.label_Aux_FF_WTP = new System.Windows.Forms.Label();
            this.label_Aux_PF_WTP = new System.Windows.Forms.Label();
            this.label_FF_Total = new System.Windows.Forms.Label();
            this.label_PF_Total = new System.Windows.Forms.Label();
            this.graph_VO_vs_WTP = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.panel_Header = new System.Windows.Forms.Panel();
            this.ResetButton = new System.Windows.Forms.Button();
            this.label_Aux_Fuel_Header = new System.Windows.Forms.Label();
            this.label_Aux_Fuel_Type = new System.Windows.Forms.Label();
            this.label_Main_Fuel_Header = new System.Windows.Forms.Label();
            this.label_Main_Fuel_Type = new System.Windows.Forms.Label();
            this.tree_Main_Fuel_Pathways = new System.Windows.Forms.TreeView();
            this.treeView3 = new System.Windows.Forms.TreeView();
            this.panel_Input = new System.Windows.Forms.Panel();
            this.label_Main_Fuel_Pathways = new System.Windows.Forms.Label();
            this.label_Aux_Fuel_Pathways = new System.Windows.Forms.Label();
            this.tree_Aux_Fuel_Pathways = new System.Windows.Forms.TreeView();
            this.ExportButton = new System.Windows.Forms.Button();
            this.SaveFile = new System.Windows.Forms.SaveFileDialog();
            this.panel_Results.SuspendLayout();
            this.panel_Table.SuspendLayout();
            this.table_Results.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.graph_VO_vs_WTP)).BeginInit();
            this.panel_Header.SuspendLayout();
            this.panel_Input.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel_Results
            // 
            this.panel_Results.AutoScroll = true;
            this.panel_Results.BackColor = System.Drawing.Color.Silver;
            this.panel_Results.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Results.Controls.Add(this.panel_Table);
            this.panel_Results.Controls.Add(this.graph_VO_vs_WTP);
            this.panel_Results.Controls.Add(this.panel_Header);
            this.panel_Results.Location = new System.Drawing.Point(204, 0);
            this.panel_Results.Name = "panel_Results";
            this.panel_Results.Size = new System.Drawing.Size(1221, 666);
            this.panel_Results.TabIndex = 1;
            // 
            // panel_Table
            // 
            this.panel_Table.BackColor = System.Drawing.SystemColors.ControlLight;
            this.panel_Table.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Table.Controls.Add(this.label_Aux_VO);
            this.panel_Table.Controls.Add(this.label_Aux_WTP);
            this.panel_Table.Controls.Add(this.label_Total);
            this.panel_Table.Controls.Add(this.label_Main_VO);
            this.panel_Table.Controls.Add(this.label_Main_WTP);
            this.panel_Table.Controls.Add(this.label_Results_Shown_Per_Trip);
            this.panel_Table.Controls.Add(this.table_Results);
            this.panel_Table.Location = new System.Drawing.Point(3, 62);
            this.panel_Table.Name = "panel_Table";
            this.panel_Table.Size = new System.Drawing.Size(1196, 595);
            this.panel_Table.TabIndex = 5;
            // 
            // label_Aux_VO
            // 
            this.label_Aux_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_VO.AutoSize = true;
            this.label_Aux_VO.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VO.Location = new System.Drawing.Point(738, 7);
            this.label_Aux_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_VO.Name = "label_Aux_VO";
            this.label_Aux_VO.Size = new System.Drawing.Size(207, 17);
            this.label_Aux_VO.TabIndex = 23;
            this.label_Aux_VO.Text = "Aux Engine: Vessel Operation";
            this.label_Aux_VO.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Aux_WTP
            // 
            this.label_Aux_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_WTP.AutoSize = true;
            this.label_Aux_WTP.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_WTP.Location = new System.Drawing.Point(552, 7);
            this.label_Aux_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_WTP.Name = "label_Aux_WTP";
            this.label_Aux_WTP.Size = new System.Drawing.Size(181, 17);
            this.label_Aux_WTP.TabIndex = 22;
            this.label_Aux_WTP.Text = "Aux Engine: Well to Pump";
            this.label_Aux_WTP.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Total
            // 
            this.label_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Total.AutoSize = true;
            this.label_Total.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Total.Location = new System.Drawing.Point(968, 7);
            this.label_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Total.Name = "label_Total";
            this.label_Total.Size = new System.Drawing.Size(41, 17);
            this.label_Total.TabIndex = 21;
            this.label_Total.Text = "Total";
            this.label_Total.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_VO
            // 
            this.label_Main_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_VO.AutoSize = true;
            this.label_Main_VO.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_VO.Location = new System.Drawing.Point(328, 7);
            this.label_Main_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_VO.Name = "label_Main_VO";
            this.label_Main_VO.Size = new System.Drawing.Size(214, 17);
            this.label_Main_VO.TabIndex = 20;
            this.label_Main_VO.Text = "Main Engine: Vessel Operation";
            this.label_Main_VO.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_WTP
            // 
            this.label_Main_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_WTP.AutoSize = true;
            this.label_Main_WTP.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_WTP.Location = new System.Drawing.Point(140, 7);
            this.label_Main_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_WTP.Name = "label_Main_WTP";
            this.label_Main_WTP.Size = new System.Drawing.Size(188, 17);
            this.label_Main_WTP.TabIndex = 19;
            this.label_Main_WTP.Text = "Main Engine: Well to Pump";
            this.label_Main_WTP.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Results_Shown_Per_Trip
            // 
            this.label_Results_Shown_Per_Trip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Results_Shown_Per_Trip.AutoSize = true;
            this.label_Results_Shown_Per_Trip.BackColor = System.Drawing.Color.Transparent;
            this.label_Results_Shown_Per_Trip.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Results_Shown_Per_Trip.Location = new System.Drawing.Point(2, -2);
            this.label_Results_Shown_Per_Trip.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Results_Shown_Per_Trip.Name = "label_Results_Shown_Per_Trip";
            this.label_Results_Shown_Per_Trip.Size = new System.Drawing.Size(98, 34);
            this.label_Results_Shown_Per_Trip.TabIndex = 18;
            this.label_Results_Shown_Per_Trip.Text = "Results Shown\r\nPer Trip";
            this.label_Results_Shown_Per_Trip.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // table_Results
            // 
            this.table_Results.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
            this.table_Results.ColumnCount = 6;
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.40506F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 57.59494F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 223F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 185F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 229F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 240F));
            this.table_Results.Controls.Add(this.label_Aux_TE_VO, 4, 0);
            this.table_Results.Controls.Add(this.label_Aux_N2O_WTP, 3, 12);
            this.table_Results.Controls.Add(this.label_Aux_TE_WTP, 3, 0);
            this.table_Results.Controls.Add(this.label_Main_TE_VO, 2, 0);
            this.table_Results.Controls.Add(this.label_Total_Energy, 0, 0);
            this.table_Results.Controls.Add(this.label_Fossil_Fuels, 0, 1);
            this.table_Results.Controls.Add(this.label_VOC, 0, 4);
            this.table_Results.Controls.Add(this.label_CO, 0, 5);
            this.table_Results.Controls.Add(this.label_NOx, 0, 6);
            this.table_Results.Controls.Add(this.label_PM10, 0, 7);
            this.table_Results.Controls.Add(this.label_PM25, 0, 8);
            this.table_Results.Controls.Add(this.label_SOx, 0, 9);
            this.table_Results.Controls.Add(this.label_CH4, 0, 10);
            this.table_Results.Controls.Add(this.label_CO2, 0, 11);
            this.table_Results.Controls.Add(this.label_N2O, 0, 12);
            this.table_Results.Controls.Add(this.label_Main_TE_WTP, 1, 0);
            this.table_Results.Controls.Add(this.label_Main_VOC_WTP, 1, 4);
            this.table_Results.Controls.Add(this.label_Main_CO_WTP, 1, 5);
            this.table_Results.Controls.Add(this.label_Main_NOx_WTP, 1, 6);
            this.table_Results.Controls.Add(this.label_Main_PM10_WTP, 1, 7);
            this.table_Results.Controls.Add(this.label_Main_PM25_WTP, 1, 8);
            this.table_Results.Controls.Add(this.label_Main_SOx_WTP, 1, 9);
            this.table_Results.Controls.Add(this.label_Main_CH4_WTP, 1, 10);
            this.table_Results.Controls.Add(this.label_Main_CO2_WTP, 1, 11);
            this.table_Results.Controls.Add(this.label_Main_N2O_WTP, 1, 12);
            this.table_Results.Controls.Add(this.label_Main_N2O_VO, 2, 12);
            this.table_Results.Controls.Add(this.label_Main_CH4_VO, 2, 10);
            this.table_Results.Controls.Add(this.label_Main_PM25_VO, 2, 8);
            this.table_Results.Controls.Add(this.label_Main_NOx_VO, 2, 6);
            this.table_Results.Controls.Add(this.label_Main_VOC_VO, 2, 4);
            this.table_Results.Controls.Add(this.label_Main_CO_VO, 2, 5);
            this.table_Results.Controls.Add(this.label_Main_PM10_VO, 2, 7);
            this.table_Results.Controls.Add(this.label_Main_SOx_VO, 2, 9);
            this.table_Results.Controls.Add(this.label_Main_CO2_VO, 2, 11);
            this.table_Results.Controls.Add(this.label_TE_Total, 5, 0);
            this.table_Results.Controls.Add(this.label_VOC_Total, 5, 4);
            this.table_Results.Controls.Add(this.label_CO_Total, 5, 5);
            this.table_Results.Controls.Add(this.label_NOx_Total, 5, 6);
            this.table_Results.Controls.Add(this.label_PM10_Total, 5, 7);
            this.table_Results.Controls.Add(this.label_PM25_Total, 5, 8);
            this.table_Results.Controls.Add(this.label_SOx_Total, 5, 9);
            this.table_Results.Controls.Add(this.label_CH4_Total, 5, 10);
            this.table_Results.Controls.Add(this.label_CO2_Total, 5, 11);
            this.table_Results.Controls.Add(this.label_N2O_Total, 5, 12);
            this.table_Results.Controls.Add(this.label_Aux_VOC_WTP, 3, 4);
            this.table_Results.Controls.Add(this.label_Aux_CO_WTP, 3, 5);
            this.table_Results.Controls.Add(this.label_Aux_NOx_WTP, 3, 6);
            this.table_Results.Controls.Add(this.label_Aux_PM10_WTP, 3, 7);
            this.table_Results.Controls.Add(this.label_Aux_PM25_WTP, 3, 8);
            this.table_Results.Controls.Add(this.label_Aux_SOx_WTP, 3, 9);
            this.table_Results.Controls.Add(this.label_Aux_CH4_WTP, 3, 10);
            this.table_Results.Controls.Add(this.label_Aux_CO2_WTP, 3, 11);
            this.table_Results.Controls.Add(this.label_Aux_VOC_VO, 4, 4);
            this.table_Results.Controls.Add(this.label_Aux_CO_VO, 4, 5);
            this.table_Results.Controls.Add(this.label_Aux_NOx_VO, 4, 6);
            this.table_Results.Controls.Add(this.label_Aux_PM10_VO, 4, 7);
            this.table_Results.Controls.Add(this.label_Aux_PM25_VO, 4, 8);
            this.table_Results.Controls.Add(this.label_Aux_SOx_VO, 4, 9);
            this.table_Results.Controls.Add(this.label_Aux_CH4_VO, 4, 10);
            this.table_Results.Controls.Add(this.label_Aux_CO2_VO, 4, 11);
            this.table_Results.Controls.Add(this.label_Aux_N2O_VO, 4, 12);
            this.table_Results.Controls.Add(this.label_Petroleum_Fuel, 0, 2);
            this.table_Results.Controls.Add(this.label_Emissions, 0, 3);
            this.table_Results.Controls.Add(this.label_Main_FF_WTP, 1, 1);
            this.table_Results.Controls.Add(this.label_Main_PF_WTP, 1, 2);
            this.table_Results.Controls.Add(this.label_Aux_FF_WTP, 3, 1);
            this.table_Results.Controls.Add(this.label_Aux_PF_WTP, 3, 2);
            this.table_Results.Controls.Add(this.label_FF_Total, 5, 1);
            this.table_Results.Controls.Add(this.label_PF_Total, 5, 2);
            this.table_Results.Location = new System.Drawing.Point(-2, 32);
            this.table_Results.Margin = new System.Windows.Forms.Padding(2);
            this.table_Results.Name = "table_Results";
            this.table_Results.RowCount = 13;
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 64.64646F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 35.35353F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 34F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 34F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 18F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 19F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            this.table_Results.Size = new System.Drawing.Size(1196, 540);
            this.table_Results.TabIndex = 0;
            // 
            // label_Aux_TE_VO
            // 
            this.label_Aux_TE_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_TE_VO.AutoSize = true;
            this.label_Aux_TE_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_TE_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_TE_VO.Location = new System.Drawing.Point(726, 109);
            this.label_Aux_TE_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_TE_VO.Name = "label_Aux_TE_VO";
            this.label_Aux_TE_VO.Size = new System.Drawing.Size(70, 15);
            this.label_Aux_TE_VO.TabIndex = 83;
            this.label_Aux_TE_VO.Text = "Aux_TE_VO";
            // 
            // label_Aux_N2O_WTP
            // 
            this.label_Aux_N2O_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_N2O_WTP.AutoSize = true;
            this.label_Aux_N2O_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_N2O_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_N2O_WTP.Location = new System.Drawing.Point(540, 524);
            this.label_Aux_N2O_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_N2O_WTP.Name = "label_Aux_N2O_WTP";
            this.label_Aux_N2O_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_N2O_WTP.TabIndex = 82;
            this.label_Aux_N2O_WTP.Text = "Aux_N2O_WTP";
            // 
            // label_Aux_TE_WTP
            // 
            this.label_Aux_TE_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_TE_WTP.AutoSize = true;
            this.label_Aux_TE_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_TE_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_TE_WTP.Location = new System.Drawing.Point(540, 109);
            this.label_Aux_TE_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_TE_WTP.Name = "label_Aux_TE_WTP";
            this.label_Aux_TE_WTP.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_TE_WTP.TabIndex = 19;
            this.label_Aux_TE_WTP.Text = "Aux_TE_WTP";
            // 
            // label_Main_TE_VO
            // 
            this.label_Main_TE_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_TE_VO.AutoSize = true;
            this.label_Main_TE_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_TE_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_TE_VO.Location = new System.Drawing.Point(316, 109);
            this.label_Main_TE_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_TE_VO.Name = "label_Main_TE_VO";
            this.label_Main_TE_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Main_TE_VO.TabIndex = 36;
            this.label_Main_TE_VO.Text = "Main_TE_VO";
            // 
            // label_Total_Energy
            // 
            this.label_Total_Energy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Total_Energy.AutoSize = true;
            this.label_Total_Energy.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Total_Energy.Location = new System.Drawing.Point(3, 107);
            this.label_Total_Energy.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Total_Energy.Name = "label_Total_Energy";
            this.label_Total_Energy.Size = new System.Drawing.Size(83, 17);
            this.label_Total_Energy.TabIndex = 0;
            this.label_Total_Energy.Text = "Total Energy";
            this.label_Total_Energy.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Fossil_Fuels
            // 
            this.label_Fossil_Fuels.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Fossil_Fuels.AutoSize = true;
            this.label_Fossil_Fuels.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Fossil_Fuels.Location = new System.Drawing.Point(3, 175);
            this.label_Fossil_Fuels.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Fossil_Fuels.Name = "label_Fossil_Fuels";
            this.label_Fossil_Fuels.Size = new System.Drawing.Size(76, 17);
            this.label_Fossil_Fuels.TabIndex = 1;
            this.label_Fossil_Fuels.Text = "Fossil Fuels";
            this.label_Fossil_Fuels.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_VOC
            // 
            this.label_VOC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_VOC.AutoSize = true;
            this.label_VOC.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_VOC.Location = new System.Drawing.Point(3, 272);
            this.label_VOC.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_VOC.Name = "label_VOC";
            this.label_VOC.Size = new System.Drawing.Size(40, 17);
            this.label_VOC.TabIndex = 6;
            this.label_VOC.Text = "VOC";
            this.label_VOC.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_CO
            // 
            this.label_CO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO.AutoSize = true;
            this.label_CO.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO.Location = new System.Drawing.Point(3, 307);
            this.label_CO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO.Name = "label_CO";
            this.label_CO.Size = new System.Drawing.Size(29, 17);
            this.label_CO.TabIndex = 7;
            this.label_CO.Text = "CO";
            this.label_CO.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_NOx
            // 
            this.label_NOx.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_NOx.AutoSize = true;
            this.label_NOx.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_NOx.Location = new System.Drawing.Point(3, 342);
            this.label_NOx.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_NOx.Name = "label_NOx";
            this.label_NOx.Size = new System.Drawing.Size(37, 17);
            this.label_NOx.TabIndex = 8;
            this.label_NOx.Text = "NOx";
            this.label_NOx.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_PM10
            // 
            this.label_PM10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM10.AutoSize = true;
            this.label_PM10.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM10.Location = new System.Drawing.Point(3, 374);
            this.label_PM10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM10.Name = "label_PM10";
            this.label_PM10.Size = new System.Drawing.Size(44, 17);
            this.label_PM10.TabIndex = 9;
            this.label_PM10.Text = "PM10";
            this.label_PM10.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_PM25
            // 
            this.label_PM25.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM25.AutoSize = true;
            this.label_PM25.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM25.Location = new System.Drawing.Point(3, 407);
            this.label_PM25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM25.Name = "label_PM25";
            this.label_PM25.Size = new System.Drawing.Size(48, 17);
            this.label_PM25.TabIndex = 10;
            this.label_PM25.Text = "PM2.5";
            this.label_PM25.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_SOx
            // 
            this.label_SOx.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_SOx.AutoSize = true;
            this.label_SOx.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_SOx.Location = new System.Drawing.Point(3, 436);
            this.label_SOx.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_SOx.Name = "label_SOx";
            this.label_SOx.Size = new System.Drawing.Size(34, 17);
            this.label_SOx.TabIndex = 11;
            this.label_SOx.Text = "SOx";
            this.label_SOx.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_CH4
            // 
            this.label_CH4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CH4.AutoSize = true;
            this.label_CH4.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CH4.Location = new System.Drawing.Point(3, 465);
            this.label_CH4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CH4.Name = "label_CH4";
            this.label_CH4.Size = new System.Drawing.Size(36, 17);
            this.label_CH4.TabIndex = 12;
            this.label_CH4.Text = "CH4";
            this.label_CH4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_CO2
            // 
            this.label_CO2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO2.AutoSize = true;
            this.label_CO2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO2.Location = new System.Drawing.Point(3, 493);
            this.label_CO2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO2.Name = "label_CO2";
            this.label_CO2.Size = new System.Drawing.Size(36, 17);
            this.label_CO2.TabIndex = 13;
            this.label_CO2.Text = "CO2";
            this.label_CO2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_N2O
            // 
            this.label_N2O.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_N2O.AutoSize = true;
            this.label_N2O.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_N2O.Location = new System.Drawing.Point(3, 522);
            this.label_N2O.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_N2O.Name = "label_N2O";
            this.label_N2O.Size = new System.Drawing.Size(37, 17);
            this.label_N2O.TabIndex = 14;
            this.label_N2O.Text = "N2O";
            this.label_N2O.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_TE_WTP
            // 
            this.label_Main_TE_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_TE_WTP.AutoSize = true;
            this.label_Main_TE_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_TE_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_TE_WTP.Location = new System.Drawing.Point(136, 109);
            this.label_Main_TE_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_TE_WTP.Name = "label_Main_TE_WTP";
            this.label_Main_TE_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Main_TE_WTP.TabIndex = 18;
            this.label_Main_TE_WTP.Text = "Main_TE_WTP";
            // 
            // label_Main_VOC_WTP
            // 
            this.label_Main_VOC_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_VOC_WTP.AutoSize = true;
            this.label_Main_VOC_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_VOC_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_VOC_WTP.Location = new System.Drawing.Point(136, 274);
            this.label_Main_VOC_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_VOC_WTP.Name = "label_Main_VOC_WTP";
            this.label_Main_VOC_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Main_VOC_WTP.TabIndex = 24;
            this.label_Main_VOC_WTP.Text = "Main_VOC_WTP";
            // 
            // label_Main_CO_WTP
            // 
            this.label_Main_CO_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO_WTP.AutoSize = true;
            this.label_Main_CO_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO_WTP.Location = new System.Drawing.Point(136, 309);
            this.label_Main_CO_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO_WTP.Name = "label_Main_CO_WTP";
            this.label_Main_CO_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Main_CO_WTP.TabIndex = 25;
            this.label_Main_CO_WTP.Text = "Main_CO_WTP";
            // 
            // label_Main_NOx_WTP
            // 
            this.label_Main_NOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_NOx_WTP.AutoSize = true;
            this.label_Main_NOx_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_NOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_NOx_WTP.Location = new System.Drawing.Point(136, 344);
            this.label_Main_NOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_NOx_WTP.Name = "label_Main_NOx_WTP";
            this.label_Main_NOx_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Main_NOx_WTP.TabIndex = 26;
            this.label_Main_NOx_WTP.Text = "Main_NOx_WTP";
            // 
            // label_Main_PM10_WTP
            // 
            this.label_Main_PM10_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM10_WTP.AutoSize = true;
            this.label_Main_PM10_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM10_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM10_WTP.Location = new System.Drawing.Point(136, 376);
            this.label_Main_PM10_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM10_WTP.Name = "label_Main_PM10_WTP";
            this.label_Main_PM10_WTP.Size = new System.Drawing.Size(98, 15);
            this.label_Main_PM10_WTP.TabIndex = 27;
            this.label_Main_PM10_WTP.Text = "Main_PM10_WTP";
            // 
            // label_Main_PM25_WTP
            // 
            this.label_Main_PM25_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM25_WTP.AutoSize = true;
            this.label_Main_PM25_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM25_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM25_WTP.Location = new System.Drawing.Point(136, 409);
            this.label_Main_PM25_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM25_WTP.Name = "label_Main_PM25_WTP";
            this.label_Main_PM25_WTP.Size = new System.Drawing.Size(98, 15);
            this.label_Main_PM25_WTP.TabIndex = 28;
            this.label_Main_PM25_WTP.Text = "Main_PM25_WTP";
            // 
            // label_Main_SOx_WTP
            // 
            this.label_Main_SOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_SOx_WTP.AutoSize = true;
            this.label_Main_SOx_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_SOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_SOx_WTP.Location = new System.Drawing.Point(136, 438);
            this.label_Main_SOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_SOx_WTP.Name = "label_Main_SOx_WTP";
            this.label_Main_SOx_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Main_SOx_WTP.TabIndex = 29;
            this.label_Main_SOx_WTP.Text = "Main_SOx_WTP";
            // 
            // label_Main_CH4_WTP
            // 
            this.label_Main_CH4_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CH4_WTP.AutoSize = true;
            this.label_Main_CH4_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CH4_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CH4_WTP.Location = new System.Drawing.Point(136, 467);
            this.label_Main_CH4_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CH4_WTP.Name = "label_Main_CH4_WTP";
            this.label_Main_CH4_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Main_CH4_WTP.TabIndex = 30;
            this.label_Main_CH4_WTP.Text = "Main_CH4_WTP";
            // 
            // label_Main_CO2_WTP
            // 
            this.label_Main_CO2_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO2_WTP.AutoSize = true;
            this.label_Main_CO2_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO2_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO2_WTP.Location = new System.Drawing.Point(136, 495);
            this.label_Main_CO2_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO2_WTP.Name = "label_Main_CO2_WTP";
            this.label_Main_CO2_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Main_CO2_WTP.TabIndex = 31;
            this.label_Main_CO2_WTP.Text = "Main_CO2_WTP";
            // 
            // label_Main_N2O_WTP
            // 
            this.label_Main_N2O_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_N2O_WTP.AutoSize = true;
            this.label_Main_N2O_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_N2O_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_N2O_WTP.Location = new System.Drawing.Point(136, 524);
            this.label_Main_N2O_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_N2O_WTP.Name = "label_Main_N2O_WTP";
            this.label_Main_N2O_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Main_N2O_WTP.TabIndex = 32;
            this.label_Main_N2O_WTP.Text = "Main_N2O_WTP";
            // 
            // label_Main_N2O_VO
            // 
            this.label_Main_N2O_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_N2O_VO.AutoSize = true;
            this.label_Main_N2O_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_N2O_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_N2O_VO.Location = new System.Drawing.Point(316, 524);
            this.label_Main_N2O_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_N2O_VO.Name = "label_Main_N2O_VO";
            this.label_Main_N2O_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Main_N2O_VO.TabIndex = 50;
            this.label_Main_N2O_VO.Text = "Main_N2O_VO";
            // 
            // label_Main_CH4_VO
            // 
            this.label_Main_CH4_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CH4_VO.AutoSize = true;
            this.label_Main_CH4_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CH4_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CH4_VO.Location = new System.Drawing.Point(316, 467);
            this.label_Main_CH4_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CH4_VO.Name = "label_Main_CH4_VO";
            this.label_Main_CH4_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Main_CH4_VO.TabIndex = 48;
            this.label_Main_CH4_VO.Text = "Main_CH4_VO";
            // 
            // label_Main_PM25_VO
            // 
            this.label_Main_PM25_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM25_VO.AutoSize = true;
            this.label_Main_PM25_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM25_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM25_VO.Location = new System.Drawing.Point(316, 409);
            this.label_Main_PM25_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM25_VO.Name = "label_Main_PM25_VO";
            this.label_Main_PM25_VO.Size = new System.Drawing.Size(91, 15);
            this.label_Main_PM25_VO.TabIndex = 46;
            this.label_Main_PM25_VO.Text = "Main_PM25_VO";
            // 
            // label_Main_NOx_VO
            // 
            this.label_Main_NOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_NOx_VO.AutoSize = true;
            this.label_Main_NOx_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_NOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_NOx_VO.Location = new System.Drawing.Point(316, 344);
            this.label_Main_NOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_NOx_VO.Name = "label_Main_NOx_VO";
            this.label_Main_NOx_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Main_NOx_VO.TabIndex = 44;
            this.label_Main_NOx_VO.Text = "Main_NOx_VO";
            // 
            // label_Main_VOC_VO
            // 
            this.label_Main_VOC_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_VOC_VO.AutoSize = true;
            this.label_Main_VOC_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_VOC_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_VOC_VO.Location = new System.Drawing.Point(316, 274);
            this.label_Main_VOC_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_VOC_VO.Name = "label_Main_VOC_VO";
            this.label_Main_VOC_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Main_VOC_VO.TabIndex = 42;
            this.label_Main_VOC_VO.Text = "Main_VOC_VO";
            // 
            // label_Main_CO_VO
            // 
            this.label_Main_CO_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO_VO.AutoSize = true;
            this.label_Main_CO_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO_VO.Location = new System.Drawing.Point(316, 309);
            this.label_Main_CO_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO_VO.Name = "label_Main_CO_VO";
            this.label_Main_CO_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Main_CO_VO.TabIndex = 43;
            this.label_Main_CO_VO.Text = "Main_CO_VO";
            // 
            // label_Main_PM10_VO
            // 
            this.label_Main_PM10_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM10_VO.AutoSize = true;
            this.label_Main_PM10_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM10_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM10_VO.Location = new System.Drawing.Point(316, 376);
            this.label_Main_PM10_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM10_VO.Name = "label_Main_PM10_VO";
            this.label_Main_PM10_VO.Size = new System.Drawing.Size(91, 15);
            this.label_Main_PM10_VO.TabIndex = 45;
            this.label_Main_PM10_VO.Text = "Main_PM10_VO";
            // 
            // label_Main_SOx_VO
            // 
            this.label_Main_SOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_SOx_VO.AutoSize = true;
            this.label_Main_SOx_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_SOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_SOx_VO.Location = new System.Drawing.Point(316, 438);
            this.label_Main_SOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_SOx_VO.Name = "label_Main_SOx_VO";
            this.label_Main_SOx_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Main_SOx_VO.TabIndex = 47;
            this.label_Main_SOx_VO.Text = "Main_SOx_VO";
            // 
            // label_Main_CO2_VO
            // 
            this.label_Main_CO2_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO2_VO.AutoSize = true;
            this.label_Main_CO2_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO2_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO2_VO.Location = new System.Drawing.Point(316, 495);
            this.label_Main_CO2_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO2_VO.Name = "label_Main_CO2_VO";
            this.label_Main_CO2_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Main_CO2_VO.TabIndex = 49;
            this.label_Main_CO2_VO.Text = "Main_CO2_VO";
            // 
            // label_TE_Total
            // 
            this.label_TE_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_TE_Total.AutoSize = true;
            this.label_TE_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_TE_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_TE_Total.Location = new System.Drawing.Point(956, 109);
            this.label_TE_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_TE_Total.Name = "label_TE_Total";
            this.label_TE_Total.Size = new System.Drawing.Size(63, 15);
            this.label_TE_Total.TabIndex = 54;
            this.label_TE_Total.Text = "TE_Total";
            // 
            // label_VOC_Total
            // 
            this.label_VOC_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_VOC_Total.AutoSize = true;
            this.label_VOC_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_VOC_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_VOC_Total.Location = new System.Drawing.Point(956, 274);
            this.label_VOC_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_VOC_Total.Name = "label_VOC_Total";
            this.label_VOC_Total.Size = new System.Drawing.Size(70, 15);
            this.label_VOC_Total.TabIndex = 60;
            this.label_VOC_Total.Text = "VOC_Total";
            // 
            // label_CO_Total
            // 
            this.label_CO_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO_Total.AutoSize = true;
            this.label_CO_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_CO_Total.Location = new System.Drawing.Point(956, 309);
            this.label_CO_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO_Total.Name = "label_CO_Total";
            this.label_CO_Total.Size = new System.Drawing.Size(63, 15);
            this.label_CO_Total.TabIndex = 61;
            this.label_CO_Total.Text = "CO_Total";
            // 
            // label_NOx_Total
            // 
            this.label_NOx_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_NOx_Total.AutoSize = true;
            this.label_NOx_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_NOx_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_NOx_Total.Location = new System.Drawing.Point(956, 344);
            this.label_NOx_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_NOx_Total.Name = "label_NOx_Total";
            this.label_NOx_Total.Size = new System.Drawing.Size(70, 15);
            this.label_NOx_Total.TabIndex = 62;
            this.label_NOx_Total.Text = "NOx_Total";
            // 
            // label_PM10_Total
            // 
            this.label_PM10_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM10_Total.AutoSize = true;
            this.label_PM10_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM10_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_PM10_Total.Location = new System.Drawing.Point(956, 376);
            this.label_PM10_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM10_Total.Name = "label_PM10_Total";
            this.label_PM10_Total.Size = new System.Drawing.Size(77, 15);
            this.label_PM10_Total.TabIndex = 63;
            this.label_PM10_Total.Text = "PM10_Total";
            // 
            // label_PM25_Total
            // 
            this.label_PM25_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM25_Total.AutoSize = true;
            this.label_PM25_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM25_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_PM25_Total.Location = new System.Drawing.Point(956, 409);
            this.label_PM25_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM25_Total.Name = "label_PM25_Total";
            this.label_PM25_Total.Size = new System.Drawing.Size(77, 15);
            this.label_PM25_Total.TabIndex = 64;
            this.label_PM25_Total.Text = "PM25_Total";
            // 
            // label_SOx_Total
            // 
            this.label_SOx_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_SOx_Total.AutoSize = true;
            this.label_SOx_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_SOx_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_SOx_Total.Location = new System.Drawing.Point(956, 438);
            this.label_SOx_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_SOx_Total.Name = "label_SOx_Total";
            this.label_SOx_Total.Size = new System.Drawing.Size(70, 15);
            this.label_SOx_Total.TabIndex = 65;
            this.label_SOx_Total.Text = "SOx_Total";
            // 
            // label_CH4_Total
            // 
            this.label_CH4_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CH4_Total.AutoSize = true;
            this.label_CH4_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CH4_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_CH4_Total.Location = new System.Drawing.Point(956, 467);
            this.label_CH4_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CH4_Total.Name = "label_CH4_Total";
            this.label_CH4_Total.Size = new System.Drawing.Size(70, 15);
            this.label_CH4_Total.TabIndex = 66;
            this.label_CH4_Total.Text = "CH4_Total";
            // 
            // label_CO2_Total
            // 
            this.label_CO2_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO2_Total.AutoSize = true;
            this.label_CO2_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO2_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_CO2_Total.Location = new System.Drawing.Point(956, 495);
            this.label_CO2_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO2_Total.Name = "label_CO2_Total";
            this.label_CO2_Total.Size = new System.Drawing.Size(70, 15);
            this.label_CO2_Total.TabIndex = 67;
            this.label_CO2_Total.Text = "CO2_Total";
            // 
            // label_N2O_Total
            // 
            this.label_N2O_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_N2O_Total.AutoSize = true;
            this.label_N2O_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_N2O_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_N2O_Total.Location = new System.Drawing.Point(956, 524);
            this.label_N2O_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_N2O_Total.Name = "label_N2O_Total";
            this.label_N2O_Total.Size = new System.Drawing.Size(70, 15);
            this.label_N2O_Total.TabIndex = 68;
            this.label_N2O_Total.Text = "N2O_Total";
            // 
            // label_Aux_VOC_WTP
            // 
            this.label_Aux_VOC_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_VOC_WTP.AutoSize = true;
            this.label_Aux_VOC_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VOC_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_VOC_WTP.Location = new System.Drawing.Point(540, 274);
            this.label_Aux_VOC_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_VOC_WTP.Name = "label_Aux_VOC_WTP";
            this.label_Aux_VOC_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_VOC_WTP.TabIndex = 74;
            this.label_Aux_VOC_WTP.Text = "Aux_VOC_WTP";
            // 
            // label_Aux_CO_WTP
            // 
            this.label_Aux_CO_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO_WTP.AutoSize = true;
            this.label_Aux_CO_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO_WTP.Location = new System.Drawing.Point(540, 309);
            this.label_Aux_CO_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO_WTP.Name = "label_Aux_CO_WTP";
            this.label_Aux_CO_WTP.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_CO_WTP.TabIndex = 75;
            this.label_Aux_CO_WTP.Text = "Aux_CO_WTP";
            // 
            // label_Aux_NOx_WTP
            // 
            this.label_Aux_NOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_NOx_WTP.AutoSize = true;
            this.label_Aux_NOx_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_NOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_NOx_WTP.Location = new System.Drawing.Point(540, 344);
            this.label_Aux_NOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_NOx_WTP.Name = "label_Aux_NOx_WTP";
            this.label_Aux_NOx_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_NOx_WTP.TabIndex = 76;
            this.label_Aux_NOx_WTP.Text = "Aux_NOx_WTP";
            // 
            // label_Aux_PM10_WTP
            // 
            this.label_Aux_PM10_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM10_WTP.AutoSize = true;
            this.label_Aux_PM10_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM10_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM10_WTP.Location = new System.Drawing.Point(540, 376);
            this.label_Aux_PM10_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM10_WTP.Name = "label_Aux_PM10_WTP";
            this.label_Aux_PM10_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Aux_PM10_WTP.TabIndex = 77;
            this.label_Aux_PM10_WTP.Text = "Aux_PM10_WTP";
            // 
            // label_Aux_PM25_WTP
            // 
            this.label_Aux_PM25_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM25_WTP.AutoSize = true;
            this.label_Aux_PM25_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM25_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM25_WTP.Location = new System.Drawing.Point(540, 409);
            this.label_Aux_PM25_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM25_WTP.Name = "label_Aux_PM25_WTP";
            this.label_Aux_PM25_WTP.Size = new System.Drawing.Size(91, 15);
            this.label_Aux_PM25_WTP.TabIndex = 78;
            this.label_Aux_PM25_WTP.Text = "Aux_PM25_WTP";
            // 
            // label_Aux_SOx_WTP
            // 
            this.label_Aux_SOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_SOx_WTP.AutoSize = true;
            this.label_Aux_SOx_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_SOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_SOx_WTP.Location = new System.Drawing.Point(540, 438);
            this.label_Aux_SOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_SOx_WTP.Name = "label_Aux_SOx_WTP";
            this.label_Aux_SOx_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_SOx_WTP.TabIndex = 79;
            this.label_Aux_SOx_WTP.Text = "Aux_SOx_WTP";
            // 
            // label_Aux_CH4_WTP
            // 
            this.label_Aux_CH4_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CH4_WTP.AutoSize = true;
            this.label_Aux_CH4_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CH4_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CH4_WTP.Location = new System.Drawing.Point(540, 467);
            this.label_Aux_CH4_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CH4_WTP.Name = "label_Aux_CH4_WTP";
            this.label_Aux_CH4_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_CH4_WTP.TabIndex = 80;
            this.label_Aux_CH4_WTP.Text = "Aux_CH4_WTP";
            // 
            // label_Aux_CO2_WTP
            // 
            this.label_Aux_CO2_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO2_WTP.AutoSize = true;
            this.label_Aux_CO2_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO2_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO2_WTP.Location = new System.Drawing.Point(540, 495);
            this.label_Aux_CO2_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO2_WTP.Name = "label_Aux_CO2_WTP";
            this.label_Aux_CO2_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_CO2_WTP.TabIndex = 81;
            this.label_Aux_CO2_WTP.Text = "Aux_CO2_WTP";
            // 
            // label_Aux_VOC_VO
            // 
            this.label_Aux_VOC_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_VOC_VO.AutoSize = true;
            this.label_Aux_VOC_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VOC_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_VOC_VO.Location = new System.Drawing.Point(726, 274);
            this.label_Aux_VOC_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_VOC_VO.Name = "label_Aux_VOC_VO";
            this.label_Aux_VOC_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_VOC_VO.TabIndex = 90;
            this.label_Aux_VOC_VO.Text = "Aux_VOC_VO";
            // 
            // label_Aux_CO_VO
            // 
            this.label_Aux_CO_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO_VO.AutoSize = true;
            this.label_Aux_CO_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO_VO.Location = new System.Drawing.Point(726, 309);
            this.label_Aux_CO_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO_VO.Name = "label_Aux_CO_VO";
            this.label_Aux_CO_VO.Size = new System.Drawing.Size(70, 15);
            this.label_Aux_CO_VO.TabIndex = 91;
            this.label_Aux_CO_VO.Text = "Aux_CO_VO";
            // 
            // label_Aux_NOx_VO
            // 
            this.label_Aux_NOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_NOx_VO.AutoSize = true;
            this.label_Aux_NOx_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_NOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_NOx_VO.Location = new System.Drawing.Point(726, 344);
            this.label_Aux_NOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_NOx_VO.Name = "label_Aux_NOx_VO";
            this.label_Aux_NOx_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_NOx_VO.TabIndex = 92;
            this.label_Aux_NOx_VO.Text = "Aux_NOx_VO";
            // 
            // label_Aux_PM10_VO
            // 
            this.label_Aux_PM10_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM10_VO.AutoSize = true;
            this.label_Aux_PM10_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM10_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM10_VO.Location = new System.Drawing.Point(726, 376);
            this.label_Aux_PM10_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM10_VO.Name = "label_Aux_PM10_VO";
            this.label_Aux_PM10_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_PM10_VO.TabIndex = 93;
            this.label_Aux_PM10_VO.Text = "Aux_PM10_VO";
            // 
            // label_Aux_PM25_VO
            // 
            this.label_Aux_PM25_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM25_VO.AutoSize = true;
            this.label_Aux_PM25_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM25_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM25_VO.Location = new System.Drawing.Point(726, 409);
            this.label_Aux_PM25_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM25_VO.Name = "label_Aux_PM25_VO";
            this.label_Aux_PM25_VO.Size = new System.Drawing.Size(84, 15);
            this.label_Aux_PM25_VO.TabIndex = 94;
            this.label_Aux_PM25_VO.Text = "Aux_PM25_VO";
            // 
            // label_Aux_SOx_VO
            // 
            this.label_Aux_SOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_SOx_VO.AutoSize = true;
            this.label_Aux_SOx_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_SOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_SOx_VO.Location = new System.Drawing.Point(726, 438);
            this.label_Aux_SOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_SOx_VO.Name = "label_Aux_SOx_VO";
            this.label_Aux_SOx_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_SOx_VO.TabIndex = 95;
            this.label_Aux_SOx_VO.Text = "Aux_SOx_VO";
            // 
            // label_Aux_CH4_VO
            // 
            this.label_Aux_CH4_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CH4_VO.AutoSize = true;
            this.label_Aux_CH4_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CH4_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CH4_VO.Location = new System.Drawing.Point(726, 467);
            this.label_Aux_CH4_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CH4_VO.Name = "label_Aux_CH4_VO";
            this.label_Aux_CH4_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_CH4_VO.TabIndex = 96;
            this.label_Aux_CH4_VO.Text = "Aux_CH4_VO";
            // 
            // label_Aux_CO2_VO
            // 
            this.label_Aux_CO2_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO2_VO.AutoSize = true;
            this.label_Aux_CO2_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO2_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO2_VO.Location = new System.Drawing.Point(726, 495);
            this.label_Aux_CO2_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO2_VO.Name = "label_Aux_CO2_VO";
            this.label_Aux_CO2_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_CO2_VO.TabIndex = 97;
            this.label_Aux_CO2_VO.Text = "Aux_CO2_VO";
            // 
            // label_Aux_N2O_VO
            // 
            this.label_Aux_N2O_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_N2O_VO.AutoSize = true;
            this.label_Aux_N2O_VO.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_N2O_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_N2O_VO.Location = new System.Drawing.Point(726, 524);
            this.label_Aux_N2O_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_N2O_VO.Name = "label_Aux_N2O_VO";
            this.label_Aux_N2O_VO.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_N2O_VO.TabIndex = 98;
            this.label_Aux_N2O_VO.Text = "Aux_N2O_VO";
            // 
            // label_Petroleum_Fuel
            // 
            this.label_Petroleum_Fuel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Petroleum_Fuel.AutoSize = true;
            this.label_Petroleum_Fuel.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Petroleum_Fuel.Location = new System.Drawing.Point(3, 206);
            this.label_Petroleum_Fuel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Petroleum_Fuel.Name = "label_Petroleum_Fuel";
            this.label_Petroleum_Fuel.Size = new System.Drawing.Size(97, 17);
            this.label_Petroleum_Fuel.TabIndex = 4;
            this.label_Petroleum_Fuel.Text = "Petroleum Fuel";
            this.label_Petroleum_Fuel.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Emissions
            // 
            this.label_Emissions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Emissions.AutoSize = true;
            this.label_Emissions.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Emissions.Location = new System.Drawing.Point(3, 239);
            this.label_Emissions.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Emissions.Name = "label_Emissions";
            this.label_Emissions.Size = new System.Drawing.Size(75, 17);
            this.label_Emissions.TabIndex = 5;
            this.label_Emissions.Text = "Emissions";
            this.label_Emissions.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_FF_WTP
            // 
            this.label_Main_FF_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_FF_WTP.AutoSize = true;
            this.label_Main_FF_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_FF_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_FF_WTP.Location = new System.Drawing.Point(136, 177);
            this.label_Main_FF_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_FF_WTP.Name = "label_Main_FF_WTP";
            this.label_Main_FF_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Main_FF_WTP.TabIndex = 55;
            this.label_Main_FF_WTP.Text = "Main_FF_WTP";
            // 
            // label_Main_PF_WTP
            // 
            this.label_Main_PF_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PF_WTP.AutoSize = true;
            this.label_Main_PF_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PF_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PF_WTP.Location = new System.Drawing.Point(136, 208);
            this.label_Main_PF_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PF_WTP.Name = "label_Main_PF_WTP";
            this.label_Main_PF_WTP.Size = new System.Drawing.Size(84, 15);
            this.label_Main_PF_WTP.TabIndex = 58;
            this.label_Main_PF_WTP.Text = "Main_PF_WTP";
            // 
            // label_Aux_FF_WTP
            // 
            this.label_Aux_FF_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_FF_WTP.AutoSize = true;
            this.label_Aux_FF_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_FF_WTP.Location = new System.Drawing.Point(541, 177);
            this.label_Aux_FF_WTP.Name = "label_Aux_FF_WTP";
            this.label_Aux_FF_WTP.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_FF_WTP.TabIndex = 101;
            this.label_Aux_FF_WTP.Text = "Aux_FF_WTP";
            this.label_Aux_FF_WTP.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Aux_PF_WTP
            // 
            this.label_Aux_PF_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PF_WTP.AutoSize = true;
            this.label_Aux_PF_WTP.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PF_WTP.Location = new System.Drawing.Point(541, 208);
            this.label_Aux_PF_WTP.Name = "label_Aux_PF_WTP";
            this.label_Aux_PF_WTP.Size = new System.Drawing.Size(77, 15);
            this.label_Aux_PF_WTP.TabIndex = 102;
            this.label_Aux_PF_WTP.Text = "Aux_PF_WTP";
            // 
            // label_FF_Total
            // 
            this.label_FF_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_FF_Total.AutoSize = true;
            this.label_FF_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_FF_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_FF_Total.Location = new System.Drawing.Point(956, 177);
            this.label_FF_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_FF_Total.Name = "label_FF_Total";
            this.label_FF_Total.Size = new System.Drawing.Size(63, 15);
            this.label_FF_Total.TabIndex = 99;
            this.label_FF_Total.Text = "FF_Total";
            // 
            // label_PF_Total
            // 
            this.label_PF_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PF_Total.AutoSize = true;
            this.label_PF_Total.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PF_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_PF_Total.Location = new System.Drawing.Point(956, 208);
            this.label_PF_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PF_Total.Name = "label_PF_Total";
            this.label_PF_Total.Size = new System.Drawing.Size(63, 15);
            this.label_PF_Total.TabIndex = 100;
            this.label_PF_Total.Text = "PF_Total";
            // 
            // graph_VO_vs_WTP
            // 
            customLabel1.Text = "Total \nEnergy";
            customLabel1.ToPosition = 2D;
            customLabel2.FromPosition = 1D;
            customLabel2.Text = "CO2";
            customLabel2.ToPosition = 3D;
            customLabel3.FromPosition = 2D;
            customLabel3.Text = "CH4";
            customLabel3.ToPosition = 4D;
            customLabel4.FromPosition = 3D;
            customLabel4.Text = "N2O";
            customLabel4.ToPosition = 5D;
            customLabel5.FromPosition = 4D;
            customLabel5.Text = "GHGs";
            customLabel5.ToPosition = 6D;
            customLabel6.FromPosition = 5D;
            customLabel6.Text = "VOC";
            customLabel6.ToPosition = 7D;
            customLabel7.FromPosition = 6D;
            customLabel7.Text = "CO";
            customLabel7.ToPosition = 8D;
            customLabel8.FromPosition = 7D;
            customLabel8.Text = "NOx";
            customLabel8.ToPosition = 9D;
            customLabel9.FromPosition = 8D;
            customLabel9.Text = "PM10";
            customLabel9.ToPosition = 10D;
            customLabel10.FromPosition = 9D;
            customLabel10.Text = "SOx";
            customLabel10.ToPosition = 11D;
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.CustomLabels.Add(customLabel3);
            chartArea1.AxisX.CustomLabels.Add(customLabel4);
            chartArea1.AxisX.CustomLabels.Add(customLabel5);
            chartArea1.AxisX.CustomLabels.Add(customLabel6);
            chartArea1.AxisX.CustomLabels.Add(customLabel7);
            chartArea1.AxisX.CustomLabels.Add(customLabel8);
            chartArea1.AxisX.CustomLabels.Add(customLabel9);
            chartArea1.AxisX.CustomLabels.Add(customLabel10);
            chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisX.IsLabelAutoFit = false;
            chartArea1.AxisX.LabelStyle.Angle = 90;
            chartArea1.AxisY.LabelStyle.Format = "#\'%\'";
            chartArea1.Name = "ChartArea";
            this.graph_VO_vs_WTP.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend";
            this.graph_VO_vs_WTP.Legends.Add(legend1);
            this.graph_VO_vs_WTP.Location = new System.Drawing.Point(196, 663);
            this.graph_VO_vs_WTP.Name = "graph_VO_vs_WTP";
            this.graph_VO_vs_WTP.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
            series1.ChartArea = "ChartArea";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series1.Legend = "Legend";
            series1.LegendText = "Well To Pump";
            series1.Name = "WellToPump";
            series2.ChartArea = "ChartArea";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series2.Legend = "Legend";
            series2.LegendText = "Vessel Operation";
            series2.Name = "VesselOperation";
            this.graph_VO_vs_WTP.Series.Add(series1);
            this.graph_VO_vs_WTP.Series.Add(series2);
            this.graph_VO_vs_WTP.Size = new System.Drawing.Size(795, 502);
            this.graph_VO_vs_WTP.TabIndex = 4;
            this.graph_VO_vs_WTP.Text = "Graph_VO_vs_WTP";
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title1.Name = "title";
            title1.Text = "Title";
            this.graph_VO_vs_WTP.Titles.Add(title1);
            // 
            // panel_Header
            // 
            this.panel_Header.BackColor = System.Drawing.Color.Silver;
            this.panel_Header.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Header.Controls.Add(this.ResetButton);
            this.panel_Header.Controls.Add(this.label_Aux_Fuel_Header);
            this.panel_Header.Controls.Add(this.label_Aux_Fuel_Type);
            this.panel_Header.Controls.Add(this.label_Main_Fuel_Header);
            this.panel_Header.Controls.Add(this.label_Main_Fuel_Type);
            this.panel_Header.Location = new System.Drawing.Point(-1, -1);
            this.panel_Header.Name = "panel_Header";
            this.panel_Header.Size = new System.Drawing.Size(1200, 57);
            this.panel_Header.TabIndex = 2;
            // 
            // ResetButton
            // 
            this.ResetButton.Location = new System.Drawing.Point(1099, 16);
            this.ResetButton.Name = "ResetButton";
            this.ResetButton.Size = new System.Drawing.Size(75, 23);
            this.ResetButton.TabIndex = 4;
            this.ResetButton.Text = "Reset Form";
            this.ResetButton.UseVisualStyleBackColor = true;
            this.ResetButton.Click += new System.EventHandler(this.ResetButton_Click);
            // 
            // label_Aux_Fuel_Header
            // 
            this.label_Aux_Fuel_Header.AutoSize = true;
            this.label_Aux_Fuel_Header.Font = new System.Drawing.Font("Times New Roman", 25.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Fuel_Header.Location = new System.Drawing.Point(524, 8);
            this.label_Aux_Fuel_Header.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_Fuel_Header.Name = "label_Aux_Fuel_Header";
            this.label_Aux_Fuel_Header.Size = new System.Drawing.Size(166, 40);
            this.label_Aux_Fuel_Header.TabIndex = 3;
            this.label_Aux_Fuel_Header.Text = "Aux Fuel:";
            // 
            // label_Aux_Fuel_Type
            // 
            this.label_Aux_Fuel_Type.AutoSize = true;
            this.label_Aux_Fuel_Type.Font = new System.Drawing.Font("Times New Roman", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Fuel_Type.Location = new System.Drawing.Point(702, 16);
            this.label_Aux_Fuel_Type.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_Fuel_Type.Name = "label_Aux_Fuel_Type";
            this.label_Aux_Fuel_Type.Size = new System.Drawing.Size(173, 31);
            this.label_Aux_Fuel_Type.TabIndex = 2;
            this.label_Aux_Fuel_Type.Text = "None Selected";
            // 
            // label_Main_Fuel_Header
            // 
            this.label_Main_Fuel_Header.AutoSize = true;
            this.label_Main_Fuel_Header.Font = new System.Drawing.Font("Times New Roman", 25.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Fuel_Header.Location = new System.Drawing.Point(2, 8);
            this.label_Main_Fuel_Header.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_Fuel_Header.Name = "label_Main_Fuel_Header";
            this.label_Main_Fuel_Header.Size = new System.Drawing.Size(184, 40);
            this.label_Main_Fuel_Header.TabIndex = 1;
            this.label_Main_Fuel_Header.Text = "Main Fuel:";
            // 
            // label_Main_Fuel_Type
            // 
            this.label_Main_Fuel_Type.AutoSize = true;
            this.label_Main_Fuel_Type.Font = new System.Drawing.Font("Times New Roman", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Fuel_Type.Location = new System.Drawing.Point(190, 16);
            this.label_Main_Fuel_Type.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_Fuel_Type.Name = "label_Main_Fuel_Type";
            this.label_Main_Fuel_Type.Size = new System.Drawing.Size(173, 31);
            this.label_Main_Fuel_Type.TabIndex = 0;
            this.label_Main_Fuel_Type.Text = "None Selected";
            // 
            // tree_Main_Fuel_Pathways
            // 
            this.tree_Main_Fuel_Pathways.BackColor = System.Drawing.Color.Silver;
            this.tree_Main_Fuel_Pathways.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.tree_Main_Fuel_Pathways.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tree_Main_Fuel_Pathways.Indent = 10;
            this.tree_Main_Fuel_Pathways.Location = new System.Drawing.Point(2, 67);
            this.tree_Main_Fuel_Pathways.Margin = new System.Windows.Forms.Padding(2);
            this.tree_Main_Fuel_Pathways.Name = "tree_Main_Fuel_Pathways";
            treeNode1.Name = "Main_CD_Node";
            treeNode1.Text = "Conventional Diesel";
            treeNode2.Name = "Main_RO_Node";
            treeNode2.Text = "Residual Oil";
            treeNode3.Name = "Main_LSD_Node";
            treeNode3.Text = "Low Sulfur Diesel";
            treeNode4.Name = "Main_NG_Node";
            treeNode4.Text = "Natural Gas";
            treeNode5.Name = "Main_BD_Node";
            treeNode5.Text = "Biodiesel";
            treeNode6.Name = "Main_FTD_Node";
            treeNode6.Text = "Fischer Tropsch Diesel";
            this.tree_Main_Fuel_Pathways.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode1,
            treeNode2,
            treeNode3,
            treeNode4,
            treeNode5,
            treeNode6});
            this.tree_Main_Fuel_Pathways.Size = new System.Drawing.Size(190, 249);
            this.tree_Main_Fuel_Pathways.TabIndex = 0;
            this.tree_Main_Fuel_Pathways.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
            // 
            // treeView3
            // 
            this.treeView3.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.treeView3.BackColor = System.Drawing.Color.Silver;
            this.treeView3.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.treeView3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.treeView3.Indent = 10;
            this.treeView3.Location = new System.Drawing.Point(132, 3712);
            this.treeView3.Margin = new System.Windows.Forms.Padding(2);
            this.treeView3.Name = "treeView3";
            treeNode7.Name = "Node0";
            treeNode7.Text = "Conventional Diesel";
            treeNode8.Name = "Node1";
            treeNode8.Text = "Residual Oil";
            treeNode9.Name = "Node2";
            treeNode9.Text = "Low Sulfur Diesel";
            treeNode10.Name = "Node3";
            treeNode10.Text = "Natural Gas";
            treeNode11.Name = "Node4";
            treeNode11.Text = "Biodiesel";
            treeNode12.Name = "Node6";
            treeNode12.Text = "Fischer Tropsch Diesel";
            this.treeView3.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode7,
            treeNode8,
            treeNode9,
            treeNode10,
            treeNode11,
            treeNode12});
            this.treeView3.Size = new System.Drawing.Size(165, 142);
            this.treeView3.TabIndex = 7;
            // 
            // panel_Input
            // 
            this.panel_Input.BackColor = System.Drawing.Color.Silver;
            this.panel_Input.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Input.Controls.Add(this.label_Main_Fuel_Pathways);
            this.panel_Input.Controls.Add(this.label_Aux_Fuel_Pathways);
            this.panel_Input.Controls.Add(this.tree_Main_Fuel_Pathways);
            this.panel_Input.Controls.Add(this.tree_Aux_Fuel_Pathways);
            this.panel_Input.Controls.Add(this.ExportButton);
            this.panel_Input.Location = new System.Drawing.Point(2, 0);
            this.panel_Input.Name = "panel_Input";
            this.panel_Input.Size = new System.Drawing.Size(196, 1185);
            this.panel_Input.TabIndex = 8;
            // 
            // label_Main_Fuel_Pathways
            // 
            this.label_Main_Fuel_Pathways.AutoSize = true;
            this.label_Main_Fuel_Pathways.Font = new System.Drawing.Font("Times New Roman", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Fuel_Pathways.Location = new System.Drawing.Point(4, 34);
            this.label_Main_Fuel_Pathways.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_Fuel_Pathways.Name = "label_Main_Fuel_Pathways";
            this.label_Main_Fuel_Pathways.Size = new System.Drawing.Size(127, 31);
            this.label_Main_Fuel_Pathways.TabIndex = 9;
            this.label_Main_Fuel_Pathways.Text = "Main Fuel";
            // 
            // label_Aux_Fuel_Pathways
            // 
            this.label_Aux_Fuel_Pathways.AutoSize = true;
            this.label_Aux_Fuel_Pathways.Font = new System.Drawing.Font("Times New Roman", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Fuel_Pathways.Location = new System.Drawing.Point(4, 318);
            this.label_Aux_Fuel_Pathways.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_Fuel_Pathways.Name = "label_Aux_Fuel_Pathways";
            this.label_Aux_Fuel_Pathways.Size = new System.Drawing.Size(172, 31);
            this.label_Aux_Fuel_Pathways.TabIndex = 4;
            this.label_Aux_Fuel_Pathways.Text = "Auxiliary Fuel";
            // 
            // tree_Aux_Fuel_Pathways
            // 
            this.tree_Aux_Fuel_Pathways.BackColor = System.Drawing.Color.Silver;
            this.tree_Aux_Fuel_Pathways.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.tree_Aux_Fuel_Pathways.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tree_Aux_Fuel_Pathways.Indent = 10;
            this.tree_Aux_Fuel_Pathways.Location = new System.Drawing.Point(2, 351);
            this.tree_Aux_Fuel_Pathways.Margin = new System.Windows.Forms.Padding(2);
            this.tree_Aux_Fuel_Pathways.Name = "tree_Aux_Fuel_Pathways";
            treeNode13.Name = "Aux_CD_Node";
            treeNode13.Text = "Conventional Diesel";
            treeNode14.Name = "Aux_RO_Node";
            treeNode14.Text = "Residual Oil";
            treeNode15.Name = "Aux_LSD_Node";
            treeNode15.Text = "Low Sulfur Diesel";
            treeNode16.Name = "Aux_NG_Node";
            treeNode16.Text = "Natural Gas";
            treeNode17.Name = "Aux_BD_Node";
            treeNode17.Text = "Biodiesel";
            treeNode18.Name = "Aux_FTD_Node";
            treeNode18.Text = "Fischer Tropsch Diesel";
            this.tree_Aux_Fuel_Pathways.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode13,
            treeNode14,
            treeNode15,
            treeNode16,
            treeNode17,
            treeNode18});
            this.tree_Aux_Fuel_Pathways.Size = new System.Drawing.Size(190, 247);
            this.tree_Aux_Fuel_Pathways.TabIndex = 2;
            this.tree_Aux_Fuel_Pathways.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView2_AfterSelect);
            // 
            // ExportButton
            // 
            this.ExportButton.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ExportButton.Location = new System.Drawing.Point(10, 603);
            this.ExportButton.Name = "ExportButton";
            this.ExportButton.Size = new System.Drawing.Size(166, 47);
            this.ExportButton.TabIndex = 1;
            this.ExportButton.Text = "Save to Excel";
            this.ExportButton.UseVisualStyleBackColor = true;
            this.ExportButton.Click += new System.EventHandler(this.ExportButton_Click);
            // 
            // GREETFormattedResults
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.ClientSize = new System.Drawing.Size(1424, 662);
            this.Controls.Add(this.treeView3);
            this.Controls.Add(this.panel_Results);
            this.Controls.Add(this.panel_Input);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(22, 49);
            this.Name = "GREETFormattedResults";
            this.Text = "GREETFormattedResults";
            this.panel_Results.ResumeLayout(false);
            this.panel_Table.ResumeLayout(false);
            this.panel_Table.PerformLayout();
            this.table_Results.ResumeLayout(false);
            this.table_Results.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.graph_VO_vs_WTP)).EndInit();
            this.panel_Header.ResumeLayout(false);
            this.panel_Header.PerformLayout();
            this.panel_Input.ResumeLayout(false);
            this.panel_Input.PerformLayout();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine2   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2        = new System.Windows.Forms.DataGridViewCellStyle();
     this.factorX_label    = new System.Windows.Forms.Label();
     this.factorY_label    = new System.Windows.Forms.Label();
     this.factorX          = new System.Windows.Forms.ComboBox();
     this.factorY          = new System.Windows.Forms.ComboBox();
     this.getListProvince  = new System.Windows.Forms.Button();
     this.paintDendrogram  = new System.Windows.Forms.Button();
     this.chart1           = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.paintCrab        = new System.Windows.Forms.Button();
     this.infoOutPut       = new System.Windows.Forms.TextBox();
     this.countCrab        = new System.Windows.Forms.TextBox();
     this.selectCountCrab  = new System.Windows.Forms.Button();
     this.paintForel       = new System.Windows.Forms.Button();
     this.dataGridView1    = new System.Windows.Forms.DataGridView();
     this.NumGrid          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NameRows         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Faq1             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Faq2             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numberForel      = new System.Windows.Forms.TextBox();
     this.radiusForel      = new System.Windows.Forms.TextBox();
     this.Radius_label     = new System.Windows.Forms.Label();
     this.NumberP_label    = new System.Windows.Forms.Label();
     this.showPoints       = new System.Windows.Forms.Button();
     this.Xmax             = new System.Windows.Forms.TextBox();
     this.Ymax             = new System.Windows.Forms.TextBox();
     this.intervalXY       = new System.Windows.Forms.TextBox();
     this.setScale         = new System.Windows.Forms.Button();
     this.Xmax_label       = new System.Windows.Forms.Label();
     this.Ymax_label       = new System.Windows.Forms.Label();
     this.intervalXY_label = new System.Windows.Forms.Label();
     this.initData         = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // factorX_label
     //
     this.factorX_label.AutoSize = true;
     this.factorX_label.Location = new System.Drawing.Point(6, 11);
     this.factorX_label.Name     = "factorX_label";
     this.factorX_label.Size     = new System.Drawing.Size(72, 13);
     this.factorX_label.TabIndex = 1;
     this.factorX_label.Text     = "Фактор 1 [X]";
     //
     // factorY_label
     //
     this.factorY_label.AutoSize = true;
     this.factorY_label.Location = new System.Drawing.Point(252, 11);
     this.factorY_label.Name     = "factorY_label";
     this.factorY_label.Size     = new System.Drawing.Size(72, 13);
     this.factorY_label.TabIndex = 2;
     this.factorY_label.Text     = "Фактор 2 [Y]";
     //
     // factorX
     //
     this.factorX.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.factorX.Font              = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.factorX.ForeColor         = System.Drawing.Color.Black;
     this.factorX.FormattingEnabled = true;
     this.factorX.Items.AddRange(new object[] {
         "[1] Происшествий.ДТП",
         "[2] Пострадавшие.ДТП",
         "[3] Погибшие.ДТП",
         "[4] Происшествия.Пожары",
         "[5] Пострадавшие.Пожары",
         "[6] Погибшие.Пожары",
         "[7] Энергоснабжение"
     });
     this.factorX.Location = new System.Drawing.Point(84, 8);
     this.factorX.Name     = "factorX";
     this.factorX.Size     = new System.Drawing.Size(162, 21);
     this.factorX.TabIndex = 3;
     //
     // factorY
     //
     this.factorY.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.factorY.FormattingEnabled = true;
     this.factorY.Items.AddRange(new object[] {
         "[1] Происшествий.ДТП",
         "[2] Пострадавшие.ДТП",
         "[3] Погибшие.ДТП",
         "[4] Происшествия.Пожары",
         "[5] Пострадавшие.Пожары",
         "[6] Погибшие.Пожары",
         "[7] Энергоснабжение"
     });
     this.factorY.Location = new System.Drawing.Point(335, 8);
     this.factorY.Name     = "factorY";
     this.factorY.Size     = new System.Drawing.Size(162, 21);
     this.factorY.TabIndex = 4;
     //
     // getListProvince
     //
     this.getListProvince.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.getListProvince.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.getListProvince.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.getListProvince.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.getListProvince.Location  = new System.Drawing.Point(597, 8);
     this.getListProvince.Name      = "getListProvince";
     this.getListProvince.Size      = new System.Drawing.Size(75, 23);
     this.getListProvince.TabIndex  = 6;
     this.getListProvince.Text      = "Список";
     this.getListProvince.UseVisualStyleBackColor = true;
     this.getListProvince.Click += new System.EventHandler(this.getListProvince_Click);
     //
     // paintDendrogram
     //
     this.paintDendrogram.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.paintDendrogram.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.paintDendrogram.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.paintDendrogram.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.paintDendrogram.Location  = new System.Drawing.Point(335, 37);
     this.paintDendrogram.Name      = "paintDendrogram";
     this.paintDendrogram.Size      = new System.Drawing.Size(133, 23);
     this.paintDendrogram.TabIndex  = 8;
     this.paintDendrogram.Text      = "Дендрограмма";
     this.paintDendrogram.UseVisualStyleBackColor = true;
     this.paintDendrogram.Click += new System.EventHandler(this.paintDendrogram_Click);
     //
     // chart1
     //
     chartArea2.AxisX.ArrowStyle              = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
     chartArea2.AxisX.MajorGrid.Interval      = 0D;
     chartArea2.AxisX.MajorGrid.LineColor     = System.Drawing.Color.DarkGray;
     chartArea2.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisX.MajorTickMark.Interval  = 0D;
     chartArea2.AxisX.MinorGrid.Enabled       = true;
     chartArea2.AxisX.MinorGrid.LineColor     = System.Drawing.Color.LightGray;
     chartArea2.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisX.MinorTickMark.Enabled   = true;
     chartArea2.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Silver;
     chartArea2.AxisX2.CustomLabels.Add(customLabel2);
     chartArea2.AxisY.ArrowStyle              = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
     chartArea2.AxisY.MajorGrid.LineColor     = System.Drawing.Color.Gray;
     chartArea2.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisY.MinorGrid.Enabled       = true;
     chartArea2.AxisY.MinorGrid.LineColor     = System.Drawing.Color.LightGray;
     chartArea2.AxisY.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisY.MinorTickMark.Enabled   = true;
     chartArea2.AxisY.MinorTickMark.LineColor = System.Drawing.Color.Silver;
     chartArea2.AxisY.StripLines.Add(stripLine2);
     chartArea2.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea2);
     this.chart1.Cursor = System.Windows.Forms.Cursors.Arrow;
     legend2.Name       = "Legend1";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location = new System.Drawing.Point(6, 72);
     this.chart1.Name     = "chart1";
     series2.ChartArea    = "ChartArea1";
     series2.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
     series2.Color        = System.Drawing.Color.Black;
     series2.Legend       = "Legend1";
     series2.MarkerStyle  = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
     series2.Name         = "Начальный график";
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(769, 639);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // paintCrab
     //
     this.paintCrab.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.paintCrab.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.paintCrab.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.paintCrab.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.paintCrab.Location  = new System.Drawing.Point(503, 38);
     this.paintCrab.Name      = "paintCrab";
     this.paintCrab.Size      = new System.Drawing.Size(75, 23);
     this.paintCrab.TabIndex  = 9;
     this.paintCrab.Text      = "Краб";
     this.paintCrab.UseVisualStyleBackColor = true;
     this.paintCrab.Click += new System.EventHandler(this.paintCrab_Click);
     //
     // infoOutPut
     //
     this.infoOutPut.Location   = new System.Drawing.Point(781, 7);
     this.infoOutPut.Multiline  = true;
     this.infoOutPut.Name       = "infoOutPut";
     this.infoOutPut.ReadOnly   = true;
     this.infoOutPut.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.infoOutPut.Size       = new System.Drawing.Size(404, 177);
     this.infoOutPut.TabIndex   = 10;
     //
     // countCrab
     //
     this.countCrab.AcceptsReturn = true;
     this.countCrab.Location      = new System.Drawing.Point(597, 40);
     this.countCrab.Name          = "countCrab";
     this.countCrab.Size          = new System.Drawing.Size(39, 20);
     this.countCrab.TabIndex      = 12;
     this.countCrab.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.countCrab_KeyPress);
     //
     // selectCountCrab
     //
     this.selectCountCrab.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.selectCountCrab.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.selectCountCrab.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.selectCountCrab.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.selectCountCrab.Location  = new System.Drawing.Point(639, 38);
     this.selectCountCrab.Name      = "selectCountCrab";
     this.selectCountCrab.Size      = new System.Drawing.Size(33, 23);
     this.selectCountCrab.TabIndex  = 13;
     this.selectCountCrab.Text      = "OK";
     this.selectCountCrab.UseVisualStyleBackColor = true;
     this.selectCountCrab.Click += new System.EventHandler(this.selectCountCrab_Click);
     //
     // paintForel
     //
     this.paintForel.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.paintForel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.paintForel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.paintForel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.paintForel.Location  = new System.Drawing.Point(164, 38);
     this.paintForel.Name      = "paintForel";
     this.paintForel.Size      = new System.Drawing.Size(121, 23);
     this.paintForel.TabIndex  = 14;
     this.paintForel.Text      = "Форель";
     this.paintForel.UseVisualStyleBackColor = true;
     this.paintForel.Click += new System.EventHandler(this.paintForel_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView1.BackgroundColor             = System.Drawing.Color.White;
     this.dataGridView1.BorderStyle                 = System.Windows.Forms.BorderStyle.None;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.NumGrid,
         this.NameRows,
         this.Faq1,
         this.Faq2
     });
     dataGridViewCellStyle2.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor          = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.DarkGray;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode           = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.DefaultCellStyle       = dataGridViewCellStyle2;
     this.dataGridView1.Location               = new System.Drawing.Point(781, 269);
     this.dataGridView1.Name     = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.Size     = new System.Drawing.Size(404, 442);
     this.dataGridView1.TabIndex = 15;
     //
     // NumGrid
     //
     this.NumGrid.HeaderText = "№";
     this.NumGrid.Name       = "NumGrid";
     this.NumGrid.ReadOnly   = true;
     this.NumGrid.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // NameRows
     //
     this.NameRows.HeaderText = "Район";
     this.NameRows.Name       = "NameRows";
     this.NameRows.ReadOnly   = true;
     this.NameRows.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Faq1
     //
     this.Faq1.FillWeight = 35.7868F;
     this.Faq1.HeaderText = "NameФактор1";
     this.Faq1.Name       = "Faq1";
     this.Faq1.ReadOnly   = true;
     this.Faq1.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Faq2
     //
     this.Faq2.FillWeight = 35.7868F;
     this.Faq2.HeaderText = "NameФактор2";
     this.Faq2.Name       = "Faq2";
     this.Faq2.ReadOnly   = true;
     this.Faq2.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // numberForel
     //
     this.numberForel.Location  = new System.Drawing.Point(103, 40);
     this.numberForel.Name      = "numberForel";
     this.numberForel.Size      = new System.Drawing.Size(50, 20);
     this.numberForel.TabIndex  = 16;
     this.numberForel.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numberForel_KeyPress);
     this.numberForel.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.numberForel_KeyUp);
     //
     // radiusForel
     //
     this.radiusForel.Location  = new System.Drawing.Point(30, 40);
     this.radiusForel.Name      = "radiusForel";
     this.radiusForel.Size      = new System.Drawing.Size(38, 20);
     this.radiusForel.TabIndex  = 17;
     this.radiusForel.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.radiusForel_KeyPress);
     this.radiusForel.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.radiusForel_KeyUp);
     //
     // Radius_label
     //
     this.Radius_label.AutoSize = true;
     this.Radius_label.Location = new System.Drawing.Point(6, 43);
     this.Radius_label.Name     = "Radius_label";
     this.Radius_label.Size     = new System.Drawing.Size(21, 13);
     this.Radius_label.TabIndex = 18;
     this.Radius_label.Text     = "R=";
     //
     // NumberP_label
     //
     this.NumberP_label.AutoSize = true;
     this.NumberP_label.Location = new System.Drawing.Point(76, 43);
     this.NumberP_label.Name     = "NumberP_label";
     this.NumberP_label.Size     = new System.Drawing.Size(27, 13);
     this.NumberP_label.TabIndex = 19;
     this.NumberP_label.Text     = "№ =";
     //
     // showPoints
     //
     this.showPoints.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.showPoints.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.showPoints.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.showPoints.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.showPoints.Location  = new System.Drawing.Point(503, 8);
     this.showPoints.Name      = "showPoints";
     this.showPoints.Size      = new System.Drawing.Size(75, 23);
     this.showPoints.TabIndex  = 20;
     this.showPoints.Text      = "OK";
     this.showPoints.UseVisualStyleBackColor = true;
     this.showPoints.Click += new System.EventHandler(this.showPoints_Click);
     //
     // Xmax
     //
     this.Xmax.Location  = new System.Drawing.Point(851, 190);
     this.Xmax.Name      = "Xmax";
     this.Xmax.Size      = new System.Drawing.Size(100, 20);
     this.Xmax.TabIndex  = 21;
     this.Xmax.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Xmax_KeyPress);
     //
     // Ymax
     //
     this.Ymax.Location  = new System.Drawing.Point(851, 216);
     this.Ymax.Name      = "Ymax";
     this.Ymax.Size      = new System.Drawing.Size(100, 20);
     this.Ymax.TabIndex  = 22;
     this.Ymax.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Ymax_KeyPress);
     //
     // intervalXY
     //
     this.intervalXY.Location  = new System.Drawing.Point(851, 243);
     this.intervalXY.Name      = "intervalXY";
     this.intervalXY.Size      = new System.Drawing.Size(100, 20);
     this.intervalXY.TabIndex  = 23;
     this.intervalXY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.intervalXY_KeyPress);
     //
     // setScale
     //
     this.setScale.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.setScale.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.setScale.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.setScale.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.setScale.Location  = new System.Drawing.Point(973, 214);
     this.setScale.Name      = "setScale";
     this.setScale.Size      = new System.Drawing.Size(75, 23);
     this.setScale.TabIndex  = 24;
     this.setScale.Text      = "Масштаб";
     this.setScale.UseVisualStyleBackColor = true;
     this.setScale.Click += new System.EventHandler(this.setScale_Click);
     //
     // Xmax_label
     //
     this.Xmax_label.AutoSize = true;
     this.Xmax_label.Location = new System.Drawing.Point(781, 190);
     this.Xmax_label.Name     = "Xmax_label";
     this.Xmax_label.Size     = new System.Drawing.Size(36, 13);
     this.Xmax_label.TabIndex = 25;
     this.Xmax_label.Text     = "X max";
     //
     // Ymax_label
     //
     this.Ymax_label.AutoSize = true;
     this.Ymax_label.Location = new System.Drawing.Point(781, 216);
     this.Ymax_label.Name     = "Ymax_label";
     this.Ymax_label.Size     = new System.Drawing.Size(36, 13);
     this.Ymax_label.TabIndex = 26;
     this.Ymax_label.Text     = "Y max";
     //
     // intervalXY_label
     //
     this.intervalXY_label.AutoSize = true;
     this.intervalXY_label.Location = new System.Drawing.Point(781, 243);
     this.intervalXY_label.Name     = "intervalXY_label";
     this.intervalXY_label.Size     = new System.Drawing.Size(56, 13);
     this.intervalXY_label.TabIndex = 27;
     this.intervalXY_label.Text     = "Интервал";
     //
     // initData
     //
     this.initData.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.initData.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.initData.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.initData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.initData.Location  = new System.Drawing.Point(692, 8);
     this.initData.Name      = "initData";
     this.initData.Size      = new System.Drawing.Size(83, 52);
     this.initData.TabIndex  = 28;
     this.initData.Text      = "Исходные данные";
     this.initData.UseVisualStyleBackColor = true;
     this.initData.Click += new System.EventHandler(this.initData_Click);
     //
     // ClusterOut
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.LightGray;
     this.ClientSize          = new System.Drawing.Size(1190, 714);
     this.Controls.Add(this.initData);
     this.Controls.Add(this.intervalXY_label);
     this.Controls.Add(this.Ymax_label);
     this.Controls.Add(this.Xmax_label);
     this.Controls.Add(this.setScale);
     this.Controls.Add(this.intervalXY);
     this.Controls.Add(this.Ymax);
     this.Controls.Add(this.Xmax);
     this.Controls.Add(this.showPoints);
     this.Controls.Add(this.NumberP_label);
     this.Controls.Add(this.Radius_label);
     this.Controls.Add(this.radiusForel);
     this.Controls.Add(this.numberForel);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.paintForel);
     this.Controls.Add(this.selectCountCrab);
     this.Controls.Add(this.countCrab);
     this.Controls.Add(this.infoOutPut);
     this.Controls.Add(this.paintCrab);
     this.Controls.Add(this.paintDendrogram);
     this.Controls.Add(this.getListProvince);
     this.Controls.Add(this.factorY);
     this.Controls.Add(this.factorX);
     this.Controls.Add(this.factorY_label);
     this.Controls.Add(this.factorX_label);
     this.Controls.Add(this.chart1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "ClusterOut";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Кластерный Анализ";
     this.Load           += new System.EventHandler(this.Cluster_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #24
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel13 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel14 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel15 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel16 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel17 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel18 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel19 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel20 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel21 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel22 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel23 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel24 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.button2 = new System.Windows.Forms.Button();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.graphsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.barchartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.bikeTheftsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pieChartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.byColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.byBrandToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.lineChartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.bikeTheftsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.bikeTheftsPerNeighborhoodToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.neighborhoodsWithMostBikeContainersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.groupedBarchartOfTheftsAndContainersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // chart1
            // 
            this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            customLabel13.FromPosition = 0.5D;
            customLabel13.Text = "Jan";
            customLabel13.ToPosition = 1.5D;
            customLabel14.FromPosition = 1.5D;
            customLabel14.Text = "Feb";
            customLabel14.ToPosition = 2.5D;
            customLabel15.FromPosition = 2.5D;
            customLabel15.Text = "Mar";
            customLabel15.ToPosition = 3.5D;
            customLabel16.FromPosition = 3.5D;
            customLabel16.Text = "Apr";
            customLabel16.ToPosition = 4.5D;
            customLabel17.FromPosition = 4.5D;
            customLabel17.Text = "May";
            customLabel17.ToPosition = 5.5D;
            customLabel18.FromPosition = 5.5D;
            customLabel18.Text = "Jun";
            customLabel18.ToPosition = 6.5D;
            customLabel19.FromPosition = 6.5D;
            customLabel19.Text = "Jul";
            customLabel19.ToPosition = 7.5D;
            customLabel20.FromPosition = 7.5D;
            customLabel20.Text = "Aug";
            customLabel20.ToPosition = 8.5D;
            customLabel21.FromPosition = 8.5D;
            customLabel21.Text = "Sep";
            customLabel21.ToPosition = 9.5D;
            customLabel22.FromPosition = 9.5D;
            customLabel22.Text = "Oct";
            customLabel22.ToPosition = 10.5D;
            customLabel23.FromPosition = 10.5D;
            customLabel23.Text = "Nov";
            customLabel23.ToPosition = 11.5D;
            customLabel24.FromPosition = 11.5D;
            customLabel24.Text = "Dec";
            customLabel24.ToPosition = 12.5D;
            chartArea2.AxisX.CustomLabels.Add(customLabel13);
            chartArea2.AxisX.CustomLabels.Add(customLabel14);
            chartArea2.AxisX.CustomLabels.Add(customLabel15);
            chartArea2.AxisX.CustomLabels.Add(customLabel16);
            chartArea2.AxisX.CustomLabels.Add(customLabel17);
            chartArea2.AxisX.CustomLabels.Add(customLabel18);
            chartArea2.AxisX.CustomLabels.Add(customLabel19);
            chartArea2.AxisX.CustomLabels.Add(customLabel20);
            chartArea2.AxisX.CustomLabels.Add(customLabel21);
            chartArea2.AxisX.CustomLabels.Add(customLabel22);
            chartArea2.AxisX.CustomLabels.Add(customLabel23);
            chartArea2.AxisX.CustomLabels.Add(customLabel24);
            chartArea2.Name = "Default";
            this.chart1.ChartAreas.Add(chartArea2);
            legend2.Name = "Legend1";
            this.chart1.Legends.Add(legend2);
            this.chart1.Location = new System.Drawing.Point(12, 31);
            this.chart1.Name = "chart1";
            this.chart1.Size = new System.Drawing.Size(745, 434);
            this.chart1.TabIndex = 0;
            this.chart1.Text = "chart1";
            title2.Name = "Title1";
            this.chart1.Titles.Add(title2);
            this.chart1.Click += new System.EventHandler(this.chart1_Click);
            // 
            // button2
            // 
            this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.button2.Enabled = false;
            this.button2.Location = new System.Drawing.Point(574, 473);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(183, 21);
            this.button2.TabIndex = 5;
            this.button2.Text = "Add/Remove Neighborhood";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.graphsToolStripMenuItem,
            this.aboutToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(769, 24);
            this.menuStrip1.TabIndex = 6;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // graphsToolStripMenuItem
            // 
            this.graphsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.barchartToolStripMenuItem,
            this.pieChartToolStripMenuItem,
            this.lineChartToolStripMenuItem});
            this.graphsToolStripMenuItem.Name = "graphsToolStripMenuItem";
            this.graphsToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
            this.graphsToolStripMenuItem.Text = "Graphs";
            // 
            // barchartToolStripMenuItem
            // 
            this.barchartToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bikeTheftsToolStripMenuItem,
            this.neighborhoodsWithMostBikeContainersToolStripMenuItem,
            this.groupedBarchartOfTheftsAndContainersToolStripMenuItem});
            this.barchartToolStripMenuItem.Name = "barchartToolStripMenuItem";
            this.barchartToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.barchartToolStripMenuItem.Text = "Barchart";
            // 
            // bikeTheftsToolStripMenuItem
            // 
            this.bikeTheftsToolStripMenuItem.Name = "bikeTheftsToolStripMenuItem";
            this.bikeTheftsToolStripMenuItem.Size = new System.Drawing.Size(296, 22);
            this.bikeTheftsToolStripMenuItem.Text = "Bike thefts per Neighborhood";
            this.bikeTheftsToolStripMenuItem.Click += new System.EventHandler(this.bikeTheftsToolStripMenuItem_Click);
            // 
            // pieChartToolStripMenuItem
            // 
            this.pieChartToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.byColorToolStripMenuItem,
            this.byBrandToolStripMenuItem});
            this.pieChartToolStripMenuItem.Name = "pieChartToolStripMenuItem";
            this.pieChartToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.pieChartToolStripMenuItem.Text = "Pie chart";
            // 
            // byColorToolStripMenuItem
            // 
            this.byColorToolStripMenuItem.Name = "byColorToolStripMenuItem";
            this.byColorToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
            this.byColorToolStripMenuItem.Text = "By Color";
            this.byColorToolStripMenuItem.Click += new System.EventHandler(this.byColorToolStripMenuItem_Click);
            // 
            // byBrandToolStripMenuItem
            // 
            this.byBrandToolStripMenuItem.Name = "byBrandToolStripMenuItem";
            this.byBrandToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
            this.byBrandToolStripMenuItem.Text = "By Brand";
            this.byBrandToolStripMenuItem.Click += new System.EventHandler(this.byBrandToolStripMenuItem_Click);
            // 
            // lineChartToolStripMenuItem
            // 
            this.lineChartToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bikeTheftsToolStripMenuItem1,
            this.bikeTheftsPerNeighborhoodToolStripMenuItem});
            this.lineChartToolStripMenuItem.Name = "lineChartToolStripMenuItem";
            this.lineChartToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.lineChartToolStripMenuItem.Text = "Line chart";
            // 
            // bikeTheftsToolStripMenuItem1
            // 
            this.bikeTheftsToolStripMenuItem1.Name = "bikeTheftsToolStripMenuItem1";
            this.bikeTheftsToolStripMenuItem1.Size = new System.Drawing.Size(228, 22);
            this.bikeTheftsToolStripMenuItem1.Text = "Overall bike thefts per year";
            this.bikeTheftsToolStripMenuItem1.Click += new System.EventHandler(this.bikeTheftsToolStripMenuItem1_Click);
            // 
            // bikeTheftsPerNeighborhoodToolStripMenuItem
            // 
            this.bikeTheftsPerNeighborhoodToolStripMenuItem.Name = "bikeTheftsPerNeighborhoodToolStripMenuItem";
            this.bikeTheftsPerNeighborhoodToolStripMenuItem.Size = new System.Drawing.Size(228, 22);
            this.bikeTheftsPerNeighborhoodToolStripMenuItem.Text = "Bike thefts per neighborhood";
            this.bikeTheftsPerNeighborhoodToolStripMenuItem.Click += new System.EventHandler(this.bikeTheftsPerNeighborhoodToolStripMenuItem_Click);
            // 
            // aboutToolStripMenuItem
            // 
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
            this.aboutToolStripMenuItem.Text = "About";
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            // 
            // comboBox1
            // 
            this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Location = new System.Drawing.Point(12, 473);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(556, 21);
            this.comboBox1.TabIndex = 7;
            // 
            // neighborhoodsWithMostBikeContainersToolStripMenuItem
            // 
            this.neighborhoodsWithMostBikeContainersToolStripMenuItem.Name = "neighborhoodsWithMostBikeContainersToolStripMenuItem";
            this.neighborhoodsWithMostBikeContainersToolStripMenuItem.Size = new System.Drawing.Size(296, 22);
            this.neighborhoodsWithMostBikeContainersToolStripMenuItem.Text = "Neighborhoods with most Bike containers";
            this.neighborhoodsWithMostBikeContainersToolStripMenuItem.Click += new System.EventHandler(this.neighborhoodsWithMostBikeContainersToolStripMenuItem_Click);
            // 
            // groupedBarchartOfTheftsAndContainersToolStripMenuItem
            // 
            this.groupedBarchartOfTheftsAndContainersToolStripMenuItem.Name = "groupedBarchartOfTheftsAndContainersToolStripMenuItem";
            this.groupedBarchartOfTheftsAndContainersToolStripMenuItem.Size = new System.Drawing.Size(300, 22);
            this.groupedBarchartOfTheftsAndContainersToolStripMenuItem.Text = "Grouped Barchart of Thefts and Containers";
            this.groupedBarchartOfTheftsAndContainersToolStripMenuItem.Click += new System.EventHandler(this.groupedBarchartOfTheftsAndContainersToolStripMenuItem_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(769, 506);
            this.Controls.Add(this.comboBox1);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.MinimumSize = new System.Drawing.Size(350, 350);
            this.Name = "Form1";
            this.Text = "Bike Crime \'n Storage";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

		}
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea3   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea4   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series4      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.button1        = new System.Windows.Forms.Button();
     this.chart1         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.timer1         = new System.Windows.Forms.Timer(this.components);
     this.button2        = new System.Windows.Forms.Button();
     this.button3        = new System.Windows.Forms.Button();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.label1         = new System.Windows.Forms.Label();
     this.label2         = new System.Windows.Forms.Label();
     this.chart2         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label3         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(23, 37);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(79, 23);
     this.button1.TabIndex = 0;
     this.button1.Text     = "Старт";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // chart1
     //
     chartArea3.AxisY.CustomLabels.Add(customLabel3);
     chartArea3.AxisY.Maximum = 4D;
     chartArea3.AxisY.Minimum = 0D;
     chartArea3.Name          = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea3);
     this.chart1.Location = new System.Drawing.Point(275, 12);
     this.chart1.Name     = "chart1";
     series3.ChartArea    = "ChartArea1";
     series3.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series3.Name         = "Series1";
     this.chart1.Series.Add(series3);
     this.chart1.Size     = new System.Drawing.Size(482, 202);
     this.chart1.TabIndex = 1;
     this.chart1.Text     = "chart1";
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(23, 89);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(79, 23);
     this.button2.TabIndex = 2;
     this.button2.Text     = "Стоп";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(23, 139);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(79, 23);
     this.button3.TabIndex = 3;
     this.button3.Text     = "Очистить";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(188, 38);
     this.numericUpDown1.Maximum  = new decimal(new int[] {
         10000,
         0,
         0,
         0
     });
     this.numericUpDown1.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDown1.Name     = "numericUpDown1";
     this.numericUpDown1.Size     = new System.Drawing.Size(68, 22);
     this.numericUpDown1.TabIndex = 4;
     this.numericUpDown1.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(118, 40);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 17);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Время  х";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label2.Location = new System.Drawing.Point(118, 89);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(0, 20);
     this.label2.TabIndex = 6;
     //
     // chart2
     //
     chartArea4.AxisX.Maximum = 4D;
     chartArea4.AxisX.Minimum = 0D;
     chartArea4.AxisY.CustomLabels.Add(customLabel4);
     chartArea4.AxisY.Maximum = 1D;
     chartArea4.AxisY.Minimum = 0D;
     chartArea4.Name          = "ChartArea1";
     this.chart2.ChartAreas.Add(chartArea4);
     this.chart2.Location = new System.Drawing.Point(275, 236);
     this.chart2.Name     = "chart2";
     this.chart2.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
     series4.ChartArea    = "ChartArea1";
     series4.Name         = "Series1";
     this.chart2.Series.Add(series4);
     this.chart2.Size     = new System.Drawing.Size(482, 202);
     this.chart2.TabIndex = 7;
     this.chart2.Text     = "chart2";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(20, 236);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(0, 17);
     this.label3.TabIndex = 8;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.chart2);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.numericUpDown1);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.button1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			System.Windows.Forms.TableLayoutPanel mainTableLayoutPanel;
			System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel13 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel14 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel15 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel16 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel17 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel18 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel19 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel20 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel21 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel22 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel23 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel24 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
			System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
			System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
			System.Windows.Forms.DataVisualization.Charting.Title title3 = new System.Windows.Forms.DataVisualization.Charting.Title();
			System.Windows.Forms.DataVisualization.Charting.Title title4 = new System.Windows.Forms.DataVisualization.Charting.Title();
			System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea4 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
			System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
			System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.Title title5 = new System.Windows.Forms.DataVisualization.Charting.Title();
			this.chartTrajectory = new System.Windows.Forms.DataVisualization.Charting.Chart();
			this.chartHandshape = new System.Windows.Forms.DataVisualization.Charting.Chart();
			this.btnUpdate = new System.Windows.Forms.Button();
			this.tabControl = new System.Windows.Forms.TabControl();
			this.tabPageFeatureVisualization = new System.Windows.Forms.TabPage();
			this.tabPageFeatureVectorComparison = new System.Windows.Forms.TabPage();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this.checkedListBoxFeatureVector = new System.Windows.Forms.CheckedListBox();
			this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
			this.btnLoadData = new System.Windows.Forms.Button();
			this.btnCompare = new System.Windows.Forms.Button();
			mainTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			mainTableLayoutPanel.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.chartTrajectory)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.chartHandshape)).BeginInit();
			this.tabControl.SuspendLayout();
			this.tabPageFeatureVisualization.SuspendLayout();
			this.tabPageFeatureVectorComparison.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this.flowLayoutPanel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// mainTableLayoutPanel
			// 
			mainTableLayoutPanel.ColumnCount = 2;
			mainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			mainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			mainTableLayoutPanel.Controls.Add(this.chartTrajectory, 0, 1);
			mainTableLayoutPanel.Controls.Add(this.chartHandshape, 0, 1);
			mainTableLayoutPanel.Controls.Add(this.btnUpdate, 0, 0);
			mainTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			mainTableLayoutPanel.Location = new System.Drawing.Point(0, 0);
			mainTableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
			mainTableLayoutPanel.Name = "mainTableLayoutPanel";
			mainTableLayoutPanel.RowCount = 2;
			mainTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			mainTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			mainTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
			mainTableLayoutPanel.Size = new System.Drawing.Size(1110, 516);
			mainTableLayoutPanel.TabIndex = 1;
			// 
			// chartTrajectory
			// 
			this.chartTrajectory.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(223)))), ((int)(((byte)(193)))));
			this.chartTrajectory.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
			this.chartTrajectory.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(64)))), ((int)(((byte)(1)))));
			this.chartTrajectory.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
			this.chartTrajectory.BorderlineWidth = 2;
			this.chartTrajectory.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
			chartArea1.Area3DStyle.Inclination = 15;
			chartArea1.Area3DStyle.IsClustered = true;
			chartArea1.Area3DStyle.IsRightAngleAxes = false;
			chartArea1.Area3DStyle.Perspective = 10;
			chartArea1.Area3DStyle.Rotation = 10;
			chartArea1.Area3DStyle.WallWidth = 0;
			chartArea1.AxisX.CustomLabels.Add(customLabel1);
			chartArea1.AxisX.CustomLabels.Add(customLabel2);
			chartArea1.AxisX.CustomLabels.Add(customLabel3);
			chartArea1.AxisX.CustomLabels.Add(customLabel4);
			chartArea1.AxisX.CustomLabels.Add(customLabel5);
			chartArea1.AxisX.CustomLabels.Add(customLabel6);
			chartArea1.AxisX.CustomLabels.Add(customLabel7);
			chartArea1.AxisX.CustomLabels.Add(customLabel8);
			chartArea1.AxisX.LabelAutoFitMaxFontSize = 8;
			chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea1.AxisX.LabelStyle.IsEndLabelVisible = false;
			chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
			chartArea1.AxisX.MajorGrid.Enabled = false;
			chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea1.AxisY.LabelAutoFitMaxFontSize = 8;
			chartArea1.AxisY.LabelStyle.Enabled = false;
			chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea1.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea1.AxisY.MajorGrid.Enabled = false;
			chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea1.AxisY.MajorTickMark.Enabled = false;
			chartArea1.BackColor = System.Drawing.Color.OldLace;
			chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
			chartArea1.BackSecondaryColor = System.Drawing.Color.White;
			chartArea1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea1.Name = "charArea1stHalf";
			chartArea1.Position.Auto = false;
			chartArea1.Position.Height = 80F;
			chartArea1.Position.Width = 33F;
			chartArea1.Position.Y = 15F;
			chartArea1.ShadowColor = System.Drawing.Color.Transparent;
			chartArea2.Area3DStyle.Inclination = 15;
			chartArea2.Area3DStyle.IsClustered = true;
			chartArea2.Area3DStyle.IsRightAngleAxes = false;
			chartArea2.Area3DStyle.Perspective = 10;
			chartArea2.Area3DStyle.Rotation = 10;
			chartArea2.Area3DStyle.WallWidth = 0;
			chartArea2.AxisX.CustomLabels.Add(customLabel9);
			chartArea2.AxisX.CustomLabels.Add(customLabel10);
			chartArea2.AxisX.CustomLabels.Add(customLabel11);
			chartArea2.AxisX.CustomLabels.Add(customLabel12);
			chartArea2.AxisX.CustomLabels.Add(customLabel13);
			chartArea2.AxisX.CustomLabels.Add(customLabel14);
			chartArea2.AxisX.CustomLabels.Add(customLabel15);
			chartArea2.AxisX.CustomLabels.Add(customLabel16);
			chartArea2.AxisX.LabelAutoFitMaxFontSize = 8;
			chartArea2.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea2.AxisX.LabelStyle.IsEndLabelVisible = false;
			chartArea2.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea2.AxisX.MajorGrid.Enabled = false;
			chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea2.AxisY.LabelAutoFitMaxFontSize = 8;
			chartArea2.AxisY.LabelStyle.Enabled = false;
			chartArea2.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea2.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea2.AxisY.MajorGrid.Enabled = false;
			chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea2.AxisY.MajorTickMark.Enabled = false;
			chartArea2.BackColor = System.Drawing.Color.OldLace;
			chartArea2.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
			chartArea2.BackSecondaryColor = System.Drawing.Color.White;
			chartArea2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea2.Name = "charAreaAll";
			chartArea2.Position.Auto = false;
			chartArea2.Position.Height = 80F;
			chartArea2.Position.Width = 33F;
			chartArea2.Position.X = 33F;
			chartArea2.Position.Y = 15F;
			chartArea2.ShadowColor = System.Drawing.Color.Transparent;
			chartArea3.Area3DStyle.Inclination = 15;
			chartArea3.Area3DStyle.IsClustered = true;
			chartArea3.Area3DStyle.IsRightAngleAxes = false;
			chartArea3.Area3DStyle.Perspective = 10;
			chartArea3.Area3DStyle.Rotation = 10;
			chartArea3.Area3DStyle.WallWidth = 0;
			chartArea3.AxisX.CustomLabels.Add(customLabel17);
			chartArea3.AxisX.CustomLabels.Add(customLabel18);
			chartArea3.AxisX.CustomLabels.Add(customLabel19);
			chartArea3.AxisX.CustomLabels.Add(customLabel20);
			chartArea3.AxisX.CustomLabels.Add(customLabel21);
			chartArea3.AxisX.CustomLabels.Add(customLabel22);
			chartArea3.AxisX.CustomLabels.Add(customLabel23);
			chartArea3.AxisX.CustomLabels.Add(customLabel24);
			chartArea3.AxisX.LabelAutoFitMaxFontSize = 8;
			chartArea3.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea3.AxisX.LabelStyle.IsEndLabelVisible = false;
			chartArea3.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea3.AxisX.MajorGrid.Enabled = false;
			chartArea3.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea3.AxisY.LabelAutoFitMaxFontSize = 8;
			chartArea3.AxisY.LabelStyle.Enabled = false;
			chartArea3.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea3.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea3.AxisY.MajorGrid.Enabled = false;
			chartArea3.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea3.AxisY.MajorTickMark.Enabled = false;
			chartArea3.BackColor = System.Drawing.Color.OldLace;
			chartArea3.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
			chartArea3.BackSecondaryColor = System.Drawing.Color.White;
			chartArea3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea3.Name = "charArea2ndHalf";
			chartArea3.Position.Auto = false;
			chartArea3.Position.Height = 80F;
			chartArea3.Position.Width = 33F;
			chartArea3.Position.X = 66F;
			chartArea3.Position.Y = 15F;
			chartArea3.ShadowColor = System.Drawing.Color.Transparent;
			this.chartTrajectory.ChartAreas.Add(chartArea1);
			this.chartTrajectory.ChartAreas.Add(chartArea2);
			this.chartTrajectory.ChartAreas.Add(chartArea3);
			this.chartTrajectory.Dock = System.Windows.Forms.DockStyle.Fill;
			legend1.BackColor = System.Drawing.Color.Transparent;
			legend1.Enabled = false;
			legend1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			legend1.IsTextAutoFit = false;
			legend1.Name = "Default";
			this.chartTrajectory.Legends.Add(legend1);
			this.chartTrajectory.Location = new System.Drawing.Point(558, 261);
			this.chartTrajectory.Name = "chartTrajectory";
			this.chartTrajectory.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
			this.chartTrajectory.PaletteCustomColors = new System.Drawing.Color[] {
        System.Drawing.Color.Red,
        System.Drawing.Color.Red,
        System.Drawing.Color.Red,
        System.Drawing.Color.Lime,
        System.Drawing.Color.Blue,
        System.Drawing.Color.Lime,
        System.Drawing.Color.Blue};
			series1.ChartArea = "charAreaAll";
			series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series1.CustomProperties = "AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series1.Legend = "Default";
			series1.Name = "All";
			series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
			series2.ChartArea = "charArea1stHalf";
			series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series2.CustomProperties = "AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series2.Legend = "Default";
			series2.Name = "1st Half";
			series3.ChartArea = "charArea2ndHalf";
			series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series3.CustomProperties = "AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series3.Legend = "Default";
			series3.Name = "2nd Half";
			series4.BorderWidth = 5;
			series4.ChartArea = "charArea1stHalf";
			series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series4.CustomProperties = "RadarDrawingStyle=Line, AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series4.Legend = "Default";
			series4.Name = "1st Quarter";
			series5.BorderWidth = 5;
			series5.ChartArea = "charArea1stHalf";
			series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series5.CustomProperties = "RadarDrawingStyle=Line, AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series5.Legend = "Default";
			series5.Name = "2nd Quarter";
			series6.BorderWidth = 5;
			series6.ChartArea = "charArea2ndHalf";
			series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series6.CustomProperties = "RadarDrawingStyle=Line, AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series6.Legend = "Default";
			series6.Name = "3rd Quarter";
			series7.BorderWidth = 5;
			series7.ChartArea = "charArea2ndHalf";
			series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Radar;
			series7.CustomProperties = "RadarDrawingStyle=Line, AreaDrawingStyle=Polygon, EmptyPointValue=Zero";
			series7.Legend = "Default";
			series7.Name = "4th Quarter";
			this.chartTrajectory.Series.Add(series1);
			this.chartTrajectory.Series.Add(series2);
			this.chartTrajectory.Series.Add(series3);
			this.chartTrajectory.Series.Add(series4);
			this.chartTrajectory.Series.Add(series5);
			this.chartTrajectory.Series.Add(series6);
			this.chartTrajectory.Series.Add(series7);
			this.chartTrajectory.Size = new System.Drawing.Size(549, 252);
			this.chartTrajectory.TabIndex = 4;
			title1.Font = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
			title1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
			title1.Name = "title";
			title1.ShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
			title1.ShadowOffset = 3;
			title1.Text = "Trajectory Probability Distrbution";
			title2.DockedToChartArea = "charArea1stHalf";
			title2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
			title2.DockingOffset = 5;
			title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			title2.Name = "title1stHalf";
			title2.Text = "1st Half";
			title3.DockedToChartArea = "charAreaAll";
			title3.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
			title3.DockingOffset = 5;
			title3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			title3.Name = "titleAll";
			title3.Text = "All";
			title4.DockedToChartArea = "charArea2ndHalf";
			title4.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
			title4.DockingOffset = 5;
			title4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			title4.Name = "title2ndHalf";
			title4.Text = "2nd Half";
			this.chartTrajectory.Titles.Add(title1);
			this.chartTrajectory.Titles.Add(title2);
			this.chartTrajectory.Titles.Add(title3);
			this.chartTrajectory.Titles.Add(title4);
			// 
			// chartHandshape
			// 
			this.chartHandshape.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(223)))), ((int)(((byte)(193)))));
			this.chartHandshape.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
			this.chartHandshape.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(64)))), ((int)(((byte)(1)))));
			this.chartHandshape.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
			this.chartHandshape.BorderlineWidth = 2;
			this.chartHandshape.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
			chartArea4.Area3DStyle.Inclination = 15;
			chartArea4.Area3DStyle.IsClustered = true;
			chartArea4.Area3DStyle.IsRightAngleAxes = false;
			chartArea4.Area3DStyle.Perspective = 10;
			chartArea4.Area3DStyle.Rotation = 10;
			chartArea4.Area3DStyle.WallWidth = 0;
			chartArea4.AxisX.LabelAutoFitMaxFontSize = 8;
			chartArea4.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea4.AxisX.LabelStyle.IsEndLabelVisible = false;
			chartArea4.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea4.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea4.AxisY.LabelAutoFitMaxFontSize = 8;
			chartArea4.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			chartArea4.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea4.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea4.BackColor = System.Drawing.Color.OldLace;
			chartArea4.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
			chartArea4.BackSecondaryColor = System.Drawing.Color.White;
			chartArea4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
			chartArea4.Name = "Default";
			chartArea4.ShadowColor = System.Drawing.Color.Transparent;
			this.chartHandshape.ChartAreas.Add(chartArea4);
			this.chartHandshape.Dock = System.Windows.Forms.DockStyle.Fill;
			legend2.BackColor = System.Drawing.Color.Transparent;
			legend2.Enabled = false;
			legend2.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
			legend2.IsTextAutoFit = false;
			legend2.Name = "Default";
			this.chartHandshape.Legends.Add(legend2);
			this.chartHandshape.Location = new System.Drawing.Point(3, 261);
			this.chartHandshape.Name = "chartHandshape";
			series8.ChartArea = "Default";
			series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
			series8.Legend = "Default";
			series8.Name = "Series3";
			series8.YValuesPerPoint = 6;
			series8.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
			this.chartHandshape.Series.Add(series8);
			this.chartHandshape.Size = new System.Drawing.Size(549, 252);
			this.chartHandshape.TabIndex = 3;
			title5.Font = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
			title5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
			title5.Name = "Title1";
			title5.ShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
			title5.ShadowOffset = 3;
			title5.Text = "Handshape Probability Distrbution";
			this.chartHandshape.Titles.Add(title5);
			// 
			// btnUpdate
			// 
			this.btnUpdate.Location = new System.Drawing.Point(3, 3);
			this.btnUpdate.Name = "btnUpdate";
			this.btnUpdate.Size = new System.Drawing.Size(75, 23);
			this.btnUpdate.TabIndex = 5;
			this.btnUpdate.Text = "Update";
			this.btnUpdate.UseVisualStyleBackColor = true;
			this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
			// 
			// tabControl
			// 
			this.tabControl.Controls.Add(this.tabPageFeatureVisualization);
			this.tabControl.Controls.Add(this.tabPageFeatureVectorComparison);
			this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tabControl.Location = new System.Drawing.Point(0, 0);
			this.tabControl.Margin = new System.Windows.Forms.Padding(0);
			this.tabControl.Name = "tabControl";
			this.tabControl.SelectedIndex = 0;
			this.tabControl.Size = new System.Drawing.Size(1118, 542);
			this.tabControl.TabIndex = 1;
			// 
			// tabPageFeatureVisualization
			// 
			this.tabPageFeatureVisualization.Controls.Add(mainTableLayoutPanel);
			this.tabPageFeatureVisualization.Location = new System.Drawing.Point(4, 22);
			this.tabPageFeatureVisualization.Margin = new System.Windows.Forms.Padding(0);
			this.tabPageFeatureVisualization.Name = "tabPageFeatureVisualization";
			this.tabPageFeatureVisualization.Size = new System.Drawing.Size(1110, 516);
			this.tabPageFeatureVisualization.TabIndex = 0;
			this.tabPageFeatureVisualization.Text = "Feature Visualization";
			this.tabPageFeatureVisualization.UseVisualStyleBackColor = true;
			// 
			// tabPageFeatureVectorComparison
			// 
			this.tabPageFeatureVectorComparison.Controls.Add(this.tableLayoutPanel1);
			this.tabPageFeatureVectorComparison.Location = new System.Drawing.Point(4, 22);
			this.tabPageFeatureVectorComparison.Margin = new System.Windows.Forms.Padding(0);
			this.tabPageFeatureVectorComparison.Name = "tabPageFeatureVectorComparison";
			this.tabPageFeatureVectorComparison.Size = new System.Drawing.Size(1110, 516);
			this.tabPageFeatureVectorComparison.TabIndex = 1;
			this.tabPageFeatureVectorComparison.Text = "Feature Vector Comparison";
			this.tabPageFeatureVectorComparison.UseVisualStyleBackColor = true;
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.ColumnCount = 2;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.Controls.Add(this.checkedListBoxFeatureVector, 0, 0);
			this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 2;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.Size = new System.Drawing.Size(1110, 516);
			this.tableLayoutPanel1.TabIndex = 0;
			// 
			// checkedListBoxFeatureVector
			// 
			this.checkedListBoxFeatureVector.CheckOnClick = true;
			this.checkedListBoxFeatureVector.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxFeatureVector.FormattingEnabled = true;
			this.checkedListBoxFeatureVector.Location = new System.Drawing.Point(3, 3);
			this.checkedListBoxFeatureVector.MultiColumn = true;
			this.checkedListBoxFeatureVector.Name = "checkedListBoxFeatureVector";
			this.checkedListBoxFeatureVector.Size = new System.Drawing.Size(549, 252);
			this.checkedListBoxFeatureVector.TabIndex = 1;
			this.checkedListBoxFeatureVector.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBoxFeatureVector_ItemCheck);
			// 
			// flowLayoutPanel1
			// 
			this.flowLayoutPanel1.Controls.Add(this.btnLoadData);
			this.flowLayoutPanel1.Controls.Add(this.btnCompare);
			this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
			this.flowLayoutPanel1.Location = new System.Drawing.Point(555, 0);
			this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
			this.flowLayoutPanel1.Name = "flowLayoutPanel1";
			this.flowLayoutPanel1.Size = new System.Drawing.Size(555, 258);
			this.flowLayoutPanel1.TabIndex = 2;
			// 
			// btnLoadData
			// 
			this.btnLoadData.Location = new System.Drawing.Point(3, 3);
			this.btnLoadData.Name = "btnLoadData";
			this.btnLoadData.Size = new System.Drawing.Size(75, 23);
			this.btnLoadData.TabIndex = 0;
			this.btnLoadData.Text = "Load Data";
			this.btnLoadData.UseVisualStyleBackColor = true;
			this.btnLoadData.Click += new System.EventHandler(this.btnLoadData_Click);
			// 
			// btnCompare
			// 
			this.btnCompare.Enabled = false;
			this.btnCompare.Location = new System.Drawing.Point(3, 32);
			this.btnCompare.Name = "btnCompare";
			this.btnCompare.Size = new System.Drawing.Size(75, 23);
			this.btnCompare.TabIndex = 2;
			this.btnCompare.Text = "Compare";
			this.btnCompare.UseVisualStyleBackColor = true;
			this.btnCompare.Click += new System.EventHandler(this.btnCompare_Click);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(1118, 542);
			this.Controls.Add(this.tabControl);
			this.Name = "MainForm";
			this.Text = "Hand Shape Visualization Plaform";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.Load += new System.EventHandler(this.MainForm_Load);
			mainTableLayoutPanel.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.chartTrajectory)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.chartHandshape)).EndInit();
			this.tabControl.ResumeLayout(false);
			this.tabPageFeatureVisualization.ResumeLayout(false);
			this.tabPageFeatureVectorComparison.ResumeLayout(false);
			this.tableLayoutPanel1.ResumeLayout(false);
			this.flowLayoutPanel1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
예제 #27
0
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.pictureBox1         = new System.Windows.Forms.PictureBox();
     this.label1              = new System.Windows.Forms.Label();
     this.timer1              = new System.Windows.Forms.Timer(this.components);
     this.pictureBox2         = new System.Windows.Forms.PictureBox();
     this.tableLayoutPanel1   = new System.Windows.Forms.TableLayoutPanel();
     this.panel1              = new System.Windows.Forms.Panel();
     this.label8              = new System.Windows.Forms.Label();
     this.numericUpDown1      = new System.Windows.Forms.NumericUpDown();
     this.label6              = new System.Windows.Forms.Label();
     this.label5              = new System.Windows.Forms.Label();
     this.button3             = new System.Windows.Forms.Button();
     this.label4              = new System.Windows.Forms.Label();
     this.label3              = new System.Windows.Forms.Label();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.comboBox2           = new System.Windows.Forms.ComboBox();
     this.buttonCameraSetting = new System.Windows.Forms.Button();
     this.label7              = new System.Windows.Forms.Label();
     this.comboBox1           = new System.Windows.Forms.ComboBox();
     this.checkBox1           = new System.Windows.Forms.CheckBox();
     this.checkBox2           = new System.Windows.Forms.CheckBox();
     this.trackBar1           = new System.Windows.Forms.TrackBar();
     this.dateTimePicker1     = new System.Windows.Forms.DateTimePicker();
     this.button1             = new System.Windows.Forms.Button();
     this.label2              = new System.Windows.Forms.Label();
     this.panel2              = new System.Windows.Forms.Panel();
     this.button2             = new System.Windows.Forms.Button();
     this.chart1              = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.textBox1            = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Cursor   = System.Windows.Forms.Cursors.Cross;
     this.pictureBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(366, 316);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location  = new System.Drawing.Point(233, 9);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(27, 29);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "0";
     //
     // timer1
     //
     this.timer1.Interval = 1000;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.Brown;
     this.pictureBox2.Location  = new System.Drawing.Point(3, 9);
     this.pictureBox2.Name      = "pictureBox2";
     this.pictureBox2.Size      = new System.Drawing.Size(224, 123);
     this.pictureBox2.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox2.TabIndex  = 2;
     this.pictureBox2.TabStop   = false;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 372F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.panel1, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 1);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 322F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(778, 502);
     this.tableLayoutPanel1.TabIndex = 3;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ButtonShadow;
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.numericUpDown1);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.button3);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.dateTimePicker1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.pictureBox2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(375, 3);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(400, 316);
     this.panel1.TabIndex = 3;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(127, 240);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(93, 26);
     this.label8.TabIndex = 17;
     this.label8.Text     = "Mean confidence \r\n(>=) success % ";
     //
     // numericUpDown1
     //
     this.numericUpDown1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.numericUpDown1.Location = new System.Drawing.Point(124, 269);
     this.numericUpDown1.Name     = "numericUpDown1";
     this.numericUpDown1.Size     = new System.Drawing.Size(86, 29);
     this.numericUpDown1.TabIndex = 3;
     this.numericUpDown1.Value    = new decimal(new int[] {
         70,
         0,
         0,
         0
     });
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(336, 71);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(0, 13);
     this.label6.TabIndex = 15;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(235, 71);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(94, 13);
     this.label5.TabIndex = 14;
     this.label5.Text     = "Mean Confidence:";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(356, 9);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(47, 23);
     this.button3.TabIndex = 13;
     this.button3.Text     = "HELP";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label4.Location = new System.Drawing.Point(233, 111);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(47, 20);
     this.label4.TabIndex = 10;
     this.label4.Text     = "Time:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label3.Location = new System.Drawing.Point(277, 112);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(44, 20);
     this.label3.TabIndex = 9;
     this.label3.Text     = "0.0.0";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboBox2);
     this.groupBox1.Controls.Add(this.buttonCameraSetting);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.checkBox2);
     this.groupBox1.Controls.Add(this.trackBar1);
     this.groupBox1.Location = new System.Drawing.Point(6, 135);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(371, 102);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Settings";
     //
     // comboBox2
     //
     this.comboBox2.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location          = new System.Drawing.Point(244, 48);
     this.comboBox2.Name                  = "comboBox2";
     this.comboBox2.Size                  = new System.Drawing.Size(121, 21);
     this.comboBox2.TabIndex              = 9;
     this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
     //
     // buttonCameraSetting
     //
     this.buttonCameraSetting.Location = new System.Drawing.Point(244, 70);
     this.buttonCameraSetting.Name     = "buttonCameraSetting";
     this.buttonCameraSetting.Size     = new System.Drawing.Size(121, 26);
     this.buttonCameraSetting.TabIndex = 8;
     this.buttonCameraSetting.Text     = "Camera Setting";
     this.buttonCameraSetting.UseVisualStyleBackColor = true;
     this.buttonCameraSetting.Click += new System.EventHandler(this.buttonCameraSetting_Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(19, 76);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(33, 13);
     this.label7.TabIndex = 7;
     this.label7.Text     = "Fonts";
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(58, 70);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(121, 21);
     this.comboBox1.TabIndex              = 3;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(17, 24);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(84, 17);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text     = "Black White";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(17, 50);
     this.checkBox2.Name     = "checkBox2";
     this.checkBox2.Size     = new System.Drawing.Size(53, 17);
     this.checkBox2.TabIndex = 2;
     this.checkBox2.Text     = "Invert";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // trackBar1
     //
     this.trackBar1.Enabled  = false;
     this.trackBar1.Location = new System.Drawing.Point(102, 19);
     this.trackBar1.Maximum  = 255;
     this.trackBar1.Name     = "trackBar1";
     this.trackBar1.Size     = new System.Drawing.Size(263, 45);
     this.trackBar1.TabIndex = 1;
     this.trackBar1.Scroll  += new System.EventHandler(this.trackBar1_Scroll);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Checked       = false;
     this.dateTimePicker1.Font          = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.dateTimePicker1.Format        = System.Windows.Forms.DateTimePickerFormat.Time;
     this.dateTimePicker1.Location      = new System.Drawing.Point(10, 269);
     this.dateTimePicker1.MinDate       = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     this.dateTimePicker1.Name          = "dateTimePicker1";
     this.dateTimePicker1.ShowUpDown    = true;
     this.dateTimePicker1.Size          = new System.Drawing.Size(108, 29);
     this.dateTimePicker1.TabIndex      = 2;
     this.dateTimePicker1.Value         = new System.DateTime(2017, 2, 11, 0, 0, 0, 0);
     this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Green;
     this.button1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.button1.Location  = new System.Drawing.Point(216, 267);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(175, 35);
     this.button1.TabIndex  = 0;
     this.button1.Text      = "Start";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 253);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(79, 13);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Update interval";
     //
     // panel2
     //
     this.tableLayoutPanel1.SetColumnSpan(this.panel2, 2);
     this.panel2.Controls.Add(this.button2);
     this.panel2.Controls.Add(this.chart1);
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 325);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(772, 174);
     this.panel2.TabIndex = 4;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(9, 146);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(105, 23);
     this.button2.TabIndex = 4;
     this.button2.Text     = "Excel";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // chart1
     //
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Location      = new System.Drawing.Point(120, 2);
     this.chart1.Name          = "chart1";
     this.chart1.Palette       = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
     series1.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     series1.ChartArea         = "ChartArea1";
     series1.ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Color             = System.Drawing.Color.Red;
     series1.LabelForeColor    = System.Drawing.Color.Maroon;
     series1.Name        = "Series1";
     series1.ShadowColor = System.Drawing.Color.Gray;
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(664, 158);
     this.chart1.TabIndex = 1;
     this.chart1.Text     = "chart1";
     //
     // textBox1
     //
     this.textBox1.Location   = new System.Drawing.Point(9, 3);
     this.textBox1.Multiline  = true;
     this.textBox1.Name       = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBox1.Size       = new System.Drawing.Size(105, 137);
     this.textBox1.TabIndex   = 5;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(778, 502);
     this.Controls.Add(this.tableLayoutPanel1);
     this.MaximizeBox  = false;
     this.MaximumSize  = new System.Drawing.Size(794, 541);
     this.MinimizeBox  = false;
     this.MinimumSize  = new System.Drawing.Size(794, 541);
     this.Name         = "Form1";
     this.ShowIcon     = false;
     this.Text         = "WebCam number detect";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.Load        += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1         = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2         = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1    = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1       = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series3       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series4       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series5       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormView));
     this.contextMenuStripView      = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.gpsToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.bdsToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.gloToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.galToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.allToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainerControlView = new DevExpress.XtraEditors.SplitContainerControl();
     this.dataGridViewGga           = new System.Windows.Forms.DataGridView();
     this.Column1   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.chartView = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.contextMenuStripView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlView)).BeginInit();
     this.splitContainerControlView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewGga)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartView)).BeginInit();
     this.SuspendLayout();
     //
     // contextMenuStripView
     //
     this.contextMenuStripView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.gpsToolStripMenuItem,
         this.bdsToolStripMenuItem,
         this.gloToolStripMenuItem,
         this.galToolStripMenuItem,
         this.allToolStripMenuItem
     });
     this.contextMenuStripView.Name         = "contextMenuStripView";
     this.contextMenuStripView.Size         = new System.Drawing.Size(102, 114);
     this.contextMenuStripView.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.contextMenuStripView_ItemClicked);
     //
     // gpsToolStripMenuItem
     //
     this.gpsToolStripMenuItem.Checked    = true;
     this.gpsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.gpsToolStripMenuItem.Name       = "gpsToolStripMenuItem";
     this.gpsToolStripMenuItem.Size       = new System.Drawing.Size(101, 22);
     this.gpsToolStripMenuItem.Text       = "GPS";
     //
     // bdsToolStripMenuItem
     //
     this.bdsToolStripMenuItem.Checked    = true;
     this.bdsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.bdsToolStripMenuItem.Name       = "bdsToolStripMenuItem";
     this.bdsToolStripMenuItem.Size       = new System.Drawing.Size(101, 22);
     this.bdsToolStripMenuItem.Text       = "BDS";
     //
     // gloToolStripMenuItem
     //
     this.gloToolStripMenuItem.Checked    = true;
     this.gloToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.gloToolStripMenuItem.Name       = "gloToolStripMenuItem";
     this.gloToolStripMenuItem.Size       = new System.Drawing.Size(101, 22);
     this.gloToolStripMenuItem.Text       = "GLO";
     //
     // galToolStripMenuItem
     //
     this.galToolStripMenuItem.Checked    = true;
     this.galToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.galToolStripMenuItem.Name       = "galToolStripMenuItem";
     this.galToolStripMenuItem.Size       = new System.Drawing.Size(101, 22);
     this.galToolStripMenuItem.Text       = "GAL";
     //
     // allToolStripMenuItem
     //
     this.allToolStripMenuItem.Checked    = true;
     this.allToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.allToolStripMenuItem.Name       = "allToolStripMenuItem";
     this.allToolStripMenuItem.Size       = new System.Drawing.Size(101, 22);
     this.allToolStripMenuItem.Text       = "ALL";
     //
     // splitContainerControlView
     //
     this.splitContainerControlView.Appearance.BackColor            = System.Drawing.Color.Black;
     this.splitContainerControlView.Appearance.Options.UseBackColor = true;
     this.splitContainerControlView.BorderStyle   = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.splitContainerControlView.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel1;
     this.splitContainerControlView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControlView.Location      = new System.Drawing.Point(0, 0);
     this.splitContainerControlView.Name          = "splitContainerControlView";
     this.splitContainerControlView.Panel1.Controls.Add(this.dataGridViewGga);
     this.splitContainerControlView.Panel1.Text = "Panel1";
     this.splitContainerControlView.Panel2.Controls.Add(this.chartView);
     this.splitContainerControlView.Panel2.Text      = "Panel2";
     this.splitContainerControlView.Size             = new System.Drawing.Size(881, 531);
     this.splitContainerControlView.SplitterPosition = 244;
     this.splitContainerControlView.TabIndex         = 1;
     this.splitContainerControlView.Paint           += new System.Windows.Forms.PaintEventHandler(this.splitContainerControlView_Paint);
     //
     // dataGridViewGga
     //
     this.dataGridViewGga.AllowUserToAddRows          = false;
     this.dataGridViewGga.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewGga.BackgroundColor             = System.Drawing.Color.Black;
     this.dataGridViewGga.ColumnHeadersBorderStyle    = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     this.dataGridViewGga.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewGga.ColumnHeadersVisible        = false;
     this.dataGridViewGga.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column1,
         this.Column2
     });
     this.dataGridViewGga.GridColor          = System.Drawing.Color.Black;
     this.dataGridViewGga.Location           = new System.Drawing.Point(21, 86);
     this.dataGridViewGga.Name               = "dataGridViewGga";
     this.dataGridViewGga.RowHeadersVisible  = false;
     this.dataGridViewGga.RowTemplate.Height = 23;
     this.dataGridViewGga.SelectionMode      = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dataGridViewGga.Size               = new System.Drawing.Size(203, 355);
     this.dataGridViewGga.TabIndex           = 2;
     //
     // Column1
     //
     dataGridViewCellStyle1.BackColor          = System.Drawing.SystemColors.Desktop;
     dataGridViewCellStyle1.Font               = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(187)))), ((int)(((byte)(89)))));
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Desktop;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(187)))), ((int)(((byte)(89)))));
     this.Column1.DefaultCellStyle             = dataGridViewCellStyle1;
     this.Column1.FillWeight = 30F;
     this.Column1.HeaderText = "Column1";
     this.Column1.Name       = "Column1";
     this.Column1.ReadOnly   = true;
     //
     // Column2
     //
     dataGridViewCellStyle2.BackColor          = System.Drawing.SystemColors.Desktop;
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(187)))), ((int)(((byte)(89)))));
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Desktop;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(187)))), ((int)(((byte)(89)))));
     this.Column2.DefaultCellStyle             = dataGridViewCellStyle2;
     this.Column2.FillWeight = 70F;
     this.Column2.HeaderText = "Column2";
     this.Column2.Name       = "Column2";
     //
     // chartView
     //
     this.chartView.BackColor = System.Drawing.Color.Black;
     customLabel1.Text        = "0";
     customLabel2.Text        = "45";
     customLabel3.Text        = "90";
     customLabel4.Text        = "135";
     customLabel5.Text        = "180";
     customLabel6.Text        = "225";
     customLabel7.Text        = "270";
     customLabel8.Text        = "315";
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.CustomLabels.Add(customLabel5);
     chartArea1.AxisX.CustomLabels.Add(customLabel6);
     chartArea1.AxisX.CustomLabels.Add(customLabel7);
     chartArea1.AxisX.CustomLabels.Add(customLabel8);
     chartArea1.AxisX.CustomLabels.Add(customLabel9);
     chartArea1.AxisX.Interval                = 45D;
     chartArea1.AxisX.IsLabelAutoFit          = false;
     chartArea1.AxisX.LabelStyle.Font         = new System.Drawing.Font("Consolas", 8F);
     chartArea1.AxisX.LabelStyle.ForeColor    = System.Drawing.Color.White;
     chartArea1.AxisX.LineColor               = System.Drawing.Color.White;
     chartArea1.AxisX.LineDashStyle           = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisX.MajorGrid.LineColor     = System.Drawing.Color.White;
     chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisX.MajorTickMark.Enabled   = false;
     chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.White;
     chartArea1.AxisX.Maximum        = 360D;
     chartArea1.AxisX.Minimum        = 0D;
     chartArea1.AxisX.TitleForeColor = System.Drawing.Color.White;
     customLabel10.FromPosition      = 30D;
     customLabel10.Text         = "30";
     customLabel10.ToPosition   = 32D;
     customLabel11.FromPosition = 60D;
     customLabel11.Text         = "60";
     customLabel11.ToPosition   = 62D;
     customLabel12.FromPosition = 90D;
     customLabel12.Text         = "90";
     customLabel12.ToPosition   = 92D;
     chartArea1.AxisY.CustomLabels.Add(customLabel10);
     chartArea1.AxisY.CustomLabels.Add(customLabel11);
     chartArea1.AxisY.CustomLabels.Add(customLabel12);
     chartArea1.AxisY.Interval                    = 30D;
     chartArea1.AxisY.IsLabelAutoFit              = false;
     chartArea1.AxisY.IsReversed                  = true;
     chartArea1.AxisY.LabelStyle.Font             = new System.Drawing.Font("Consolas", 8F);
     chartArea1.AxisY.LabelStyle.ForeColor        = System.Drawing.Color.White;
     chartArea1.AxisY.LineColor                   = System.Drawing.Color.White;
     chartArea1.AxisY.LineDashStyle               = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisY.MajorGrid.LineColor         = System.Drawing.Color.White;
     chartArea1.AxisY.MajorGrid.LineDashStyle     = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisY.MajorTickMark.Enabled       = false;
     chartArea1.AxisY.MajorTickMark.LineColor     = System.Drawing.Color.White;
     chartArea1.AxisY.MajorTickMark.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisY.Maximum            = 90D;
     chartArea1.AxisY.Minimum            = 0D;
     chartArea1.AxisY.TitleForeColor     = System.Drawing.Color.White;
     chartArea1.BackColor                = System.Drawing.Color.Black;
     chartArea1.BorderColor              = System.Drawing.Color.Empty;
     chartArea1.IsSameFontSizeForAllAxes = true;
     chartArea1.Name = "ChartArea1";
     this.chartView.ChartAreas.Add(chartArea1);
     this.chartView.ContextMenuStrip = this.contextMenuStripView;
     this.chartView.Dock             = System.Windows.Forms.DockStyle.Fill;
     legend1.BackColor         = System.Drawing.Color.Black;
     legend1.BorderColor       = System.Drawing.SystemColors.Desktop;
     legend1.BorderDashStyle   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     legend1.DockedToChartArea = "ChartArea1";
     legend1.Font      = new System.Drawing.Font("Consolas", 8F);
     legend1.ForeColor = System.Drawing.Color.White;
     legend1.IsDockedInsideChartArea = false;
     legend1.IsTextAutoFit           = false;
     legend1.Name = "Legend1";
     this.chartView.Legends.Add(legend1);
     this.chartView.Location                   = new System.Drawing.Point(0, 0);
     this.chartView.Name                       = "chartView";
     this.chartView.Palette                    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series1.BorderDashStyle                   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series1.ChartArea                         = "ChartArea1";
     series1.ChartType                         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series1.CustomProperties                  = "PolarDrawingStyle=Marker, LabelStyle=Center";
     series1.Font                              = new System.Drawing.Font("Consolas", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.LabelBorderDashStyle              = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series1.LabelBorderWidth                  = 15;
     series1.LabelForeColor                    = System.Drawing.Color.White;
     series1.Legend                            = "Legend1";
     series1.MarkerColor                       = System.Drawing.Color.Blue;
     series1.MarkerSize                        = 20;
     series1.MarkerStyle                       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series1.Name                              = "GPS";
     series1.SmartLabelStyle.CalloutBackColor  = System.Drawing.Color.White;
     series1.SmartLabelStyle.CalloutLineColor  = System.Drawing.Color.White;
     series1.SmartLabelStyle.Enabled           = false;
     series1.SmartLabelStyle.MaxMovingDistance = 20D;
     series1.ToolTip                           = "卫星号:#LABEL";
     series1.XValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series1.YValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.BorderDashStyle                   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series2.ChartArea                         = "ChartArea1";
     series2.ChartType                         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series2.CustomProperties                  = "PolarDrawingStyle=Marker, LabelStyle=Center";
     series2.Font                              = new System.Drawing.Font("Consolas", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.LabelBorderDashStyle              = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series2.LabelBorderWidth                  = 15;
     series2.LabelForeColor                    = System.Drawing.Color.White;
     series2.Legend                            = "Legend1";
     series2.MarkerColor                       = System.Drawing.Color.Red;
     series2.MarkerSize                        = 20;
     series2.MarkerStyle                       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series2.Name                              = "BDS";
     series2.SmartLabelStyle.CalloutBackColor  = System.Drawing.Color.White;
     series2.SmartLabelStyle.CalloutLineColor  = System.Drawing.Color.White;
     series2.SmartLabelStyle.Enabled           = false;
     series2.ToolTip                           = "卫星号:#LABEL";
     series2.XValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.YValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series3.BorderDashStyle                   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series3.ChartArea                         = "ChartArea1";
     series3.ChartType                         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series3.CustomProperties                  = "PolarDrawingStyle=Marker, LabelStyle=Center";
     series3.Font                              = new System.Drawing.Font("Consolas", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series3.LabelBorderDashStyle              = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series3.LabelBorderWidth                  = 15;
     series3.LabelForeColor                    = System.Drawing.Color.White;
     series3.Legend                            = "Legend1";
     series3.MarkerColor                       = System.Drawing.Color.Green;
     series3.MarkerSize                        = 20;
     series3.MarkerStyle                       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series3.Name                              = "GLO";
     series3.SmartLabelStyle.CalloutBackColor  = System.Drawing.Color.White;
     series3.SmartLabelStyle.CalloutLineColor  = System.Drawing.Color.White;
     series3.SmartLabelStyle.Enabled           = false;
     series3.ToolTip                           = "卫星号:#LABEL";
     series3.XValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series3.YValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series4.BorderDashStyle                   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series4.ChartArea                         = "ChartArea1";
     series4.ChartType                         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series4.CustomProperties                  = "PolarDrawingStyle=Marker, LabelStyle=Center";
     series4.Font                              = new System.Drawing.Font("Consolas", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series4.LabelBorderDashStyle              = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series4.LabelBorderWidth                  = 15;
     series4.Legend                            = "Legend1";
     series4.MarkerColor                       = System.Drawing.Color.Yellow;
     series4.MarkerSize                        = 20;
     series4.MarkerStyle                       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series4.Name                              = "GAL";
     series4.SmartLabelStyle.CalloutBackColor  = System.Drawing.Color.White;
     series4.SmartLabelStyle.CalloutLineColor  = System.Drawing.Color.White;
     series4.SmartLabelStyle.Enabled           = false;
     series4.ToolTip                           = "卫星号:#LABEL";
     series4.XValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series4.YValueType                        = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series5.BorderDashStyle                   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series5.ChartArea                         = "ChartArea1";
     series5.ChartType                         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series5.CustomProperties                  = "PolarDrawingStyle=Marker, LabelStyle=Center";
     series5.Font                              = new System.Drawing.Font("Consolas", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series5.IsVisibleInLegend                 = false;
     series5.LabelBorderDashStyle              = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     series5.LabelBorderWidth                  = 15;
     series5.Legend                            = "Legend1";
     series5.MarkerColor                       = System.Drawing.Color.LightGray;
     series5.MarkerSize                        = 20;
     series5.MarkerStyle                       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series5.Name                              = "IDEL";
     dataPoint1.IsEmpty                        = true;
     dataPoint1.ToolTip                        = "";
     series5.Points.Add(dataPoint1);
     series5.SmartLabelStyle.CalloutBackColor = System.Drawing.Color.White;
     series5.SmartLabelStyle.CalloutLineColor = System.Drawing.Color.White;
     series5.SmartLabelStyle.Enabled          = false;
     series5.ToolTip    = "卫星号:#LABEL";
     series5.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series5.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     this.chartView.Series.Add(series1);
     this.chartView.Series.Add(series2);
     this.chartView.Series.Add(series3);
     this.chartView.Series.Add(series4);
     this.chartView.Series.Add(series5);
     this.chartView.Size     = new System.Drawing.Size(623, 527);
     this.chartView.TabIndex = 2;
     this.chartView.Text     = "View";
     //
     // FormView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(881, 531);
     this.Controls.Add(this.splitContainerControlView);
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name           = "FormView";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.Manual;
     this.Text           = "视野";
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.FormView_FormClosing);
     this.Load          += new System.EventHandler(this.FormView_Load);
     this.contextMenuStripView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlView)).EndInit();
     this.splitContainerControlView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewGga)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartView)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.richTextBox_console = new System.Windows.Forms.RichTextBox();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.chartActivations    = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.aquaGauge_epochs    = new AquaControls.AquaGauge();
     this.aquaGauge_accuracy  = new AquaControls.AquaGauge();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartActivations)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.richTextBox_console);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(800, 450);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "groupBox1";
     //
     // richTextBox_console
     //
     this.richTextBox_console.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.richTextBox_console.Location = new System.Drawing.Point(3, 16);
     this.richTextBox_console.Name     = "richTextBox_console";
     this.richTextBox_console.Size     = new System.Drawing.Size(794, 267);
     this.richTextBox_console.TabIndex = 2;
     this.richTextBox_console.Text     = "";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.aquaGauge_accuracy);
     this.groupBox2.Controls.Add(this.chartActivations);
     this.groupBox2.Controls.Add(this.aquaGauge_epochs);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox2.Location = new System.Drawing.Point(3, 283);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(794, 164);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "groupBox2";
     //
     // chartActivations
     //
     customLabel1.Text = "Activations";
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.Title = "Activations";
     chartArea1.Name        = "ChartArea1";
     this.chartActivations.ChartAreas.Add(chartArea1);
     this.chartActivations.Dock     = System.Windows.Forms.DockStyle.Right;
     this.chartActivations.Location = new System.Drawing.Point(384, 16);
     this.chartActivations.Name     = "chartActivations";
     series1.ChartArea = "ChartArea1";
     series1.Legend    = "Legend1";
     series1.Name      = "Series1";
     this.chartActivations.Series.Add(series1);
     this.chartActivations.Size     = new System.Drawing.Size(407, 145);
     this.chartActivations.TabIndex = 4;
     this.chartActivations.Text     = "chart1";
     //
     // aquaGauge_epochs
     //
     this.aquaGauge_epochs.BackColor        = System.Drawing.Color.Transparent;
     this.aquaGauge_epochs.DialColor        = System.Drawing.Color.Lavender;
     this.aquaGauge_epochs.DialText         = "Epoch";
     this.aquaGauge_epochs.Dock             = System.Windows.Forms.DockStyle.Left;
     this.aquaGauge_epochs.Glossiness       = 11.36364F;
     this.aquaGauge_epochs.Location         = new System.Drawing.Point(3, 16);
     this.aquaGauge_epochs.MaxValue         = 0F;
     this.aquaGauge_epochs.MinValue         = 0F;
     this.aquaGauge_epochs.Name             = "aquaGauge_epochs";
     this.aquaGauge_epochs.RecommendedValue = 0F;
     this.aquaGauge_epochs.Size             = new System.Drawing.Size(150, 150);
     this.aquaGauge_epochs.TabIndex         = 0;
     this.aquaGauge_epochs.ThresholdPercent = 0F;
     this.aquaGauge_epochs.Value            = 0F;
     //
     // aquaGauge_accuracy
     //
     this.aquaGauge_accuracy.BackColor        = System.Drawing.Color.Transparent;
     this.aquaGauge_accuracy.DialColor        = System.Drawing.Color.Lavender;
     this.aquaGauge_accuracy.DialText         = "Accuracy";
     this.aquaGauge_accuracy.Dock             = System.Windows.Forms.DockStyle.Left;
     this.aquaGauge_accuracy.Glossiness       = 11.36364F;
     this.aquaGauge_accuracy.Location         = new System.Drawing.Point(153, 16);
     this.aquaGauge_accuracy.MaxValue         = 100F;
     this.aquaGauge_accuracy.MinValue         = 0F;
     this.aquaGauge_accuracy.Name             = "aquaGauge_accuracy";
     this.aquaGauge_accuracy.RecommendedValue = 0F;
     this.aquaGauge_accuracy.Size             = new System.Drawing.Size(150, 150);
     this.aquaGauge_accuracy.TabIndex         = 5;
     this.aquaGauge_accuracy.ThresholdPercent = 0F;
     this.aquaGauge_accuracy.Value            = 0F;
     //
     // TrainingForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.groupBox1);
     this.Name         = "TrainingForm";
     this.Text         = "TrainingForm";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TrainingForm_FormClosing);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartActivations)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 50D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 20D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 80D);
            this.chartInventoryStatus = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            ((System.ComponentModel.ISupportInitialize)(this.chartInventoryStatus)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // chartInventoryStatus
            // 
            this.chartInventoryStatus.BackColor = System.Drawing.Color.Transparent;
            customLabel1.Text = "Watches";
            customLabel2.Text = "Necklaces";
            customLabel3.Text = "Bracelets";
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.CustomLabels.Add(customLabel3);
            chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea1.AxisX.IsLabelAutoFit = false;
            chartArea1.AxisX.MaximumAutoSize = 100F;
            chartArea1.Name = "ChartArea1";
            this.chartInventoryStatus.ChartAreas.Add(chartArea1);
            this.chartInventoryStatus.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartInventoryStatus.Location = new System.Drawing.Point(3, 35);
            this.chartInventoryStatus.Name = "chartInventoryStatus";
            series1.ChartArea = "ChartArea1";
            series1.IsValueShownAsLabel = true;
            series1.Name = "Series1";
            dataPoint1.AxisLabel = "Watches";
            dataPoint1.IsValueShownAsLabel = false;
            dataPoint1.IsVisibleInLegend = false;
            dataPoint1.Label = "";
            dataPoint1.LegendText = "";
            dataPoint2.AxisLabel = "Bracelets";
            dataPoint2.Label = "";
            dataPoint3.AxisLabel = "Necklaces";
            dataPoint3.IsValueShownAsLabel = false;
            dataPoint3.Label = "";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            this.chartInventoryStatus.Series.Add(series1);
            this.chartInventoryStatus.Size = new System.Drawing.Size(641, 422);
            this.chartInventoryStatus.TabIndex = 0;
            this.chartInventoryStatus.Text = "Inventory Status";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.chartInventoryStatus);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Font = new System.Drawing.Font("Cambria", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(647, 460);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Inventory Status";
            // 
            // InventoryStatusChart
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.groupBox1);
            this.Name = "InventoryStatusChart";
            this.Size = new System.Drawing.Size(647, 460);
            ((System.ComponentModel.ISupportInitialize)(this.chartInventoryStatus)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea5   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend5      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series5      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.abrirToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.controlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.iniciarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pararToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.richTexto                     = new System.Windows.Forms.RichTextBox();
     this.chtTemperatura                = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tiempoTemperatura             = new System.Windows.Forms.Timer(this.components);
     this.exportarAPDFToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chtTemperatura)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.GripMargin       = new System.Windows.Forms.Padding(2, 2, 0, 2);
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.archivoToolStripMenuItem,
         this.controlToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1138, 33);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // archivoToolStripMenuItem
     //
     this.archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.abrirToolStripMenuItem,
         this.guardarToolStripMenuItem,
         this.exportarAPDFToolStripMenuItem
     });
     this.archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     this.archivoToolStripMenuItem.Size = new System.Drawing.Size(88, 29);
     this.archivoToolStripMenuItem.Text = "Archivo";
     //
     // abrirToolStripMenuItem
     //
     this.abrirToolStripMenuItem.Image  = global::ArduinoTemperaturaFormG4_2020_II.Properties.Resources.carpeta;
     this.abrirToolStripMenuItem.Name   = "abrirToolStripMenuItem";
     this.abrirToolStripMenuItem.Size   = new System.Drawing.Size(177, 34);
     this.abrirToolStripMenuItem.Text   = "Abrir";
     this.abrirToolStripMenuItem.Click += new System.EventHandler(this.abrirToolStripMenuItem_Click);
     //
     // guardarToolStripMenuItem
     //
     this.guardarToolStripMenuItem.Image  = global::ArduinoTemperaturaFormG4_2020_II.Properties.Resources.disco_flexible;
     this.guardarToolStripMenuItem.Name   = "guardarToolStripMenuItem";
     this.guardarToolStripMenuItem.Size   = new System.Drawing.Size(177, 34);
     this.guardarToolStripMenuItem.Text   = "Guardar";
     this.guardarToolStripMenuItem.Click += new System.EventHandler(this.guardarToolStripMenuItem_Click);
     //
     // controlToolStripMenuItem
     //
     this.controlToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.iniciarToolStripMenuItem,
         this.pararToolStripMenuItem
     });
     this.controlToolStripMenuItem.Name = "controlToolStripMenuItem";
     this.controlToolStripMenuItem.Size = new System.Drawing.Size(87, 29);
     this.controlToolStripMenuItem.Text = "Control";
     //
     // iniciarToolStripMenuItem
     //
     this.iniciarToolStripMenuItem.Name   = "iniciarToolStripMenuItem";
     this.iniciarToolStripMenuItem.Size   = new System.Drawing.Size(270, 34);
     this.iniciarToolStripMenuItem.Text   = "Iniciar";
     this.iniciarToolStripMenuItem.Click += new System.EventHandler(this.iniciarToolStripMenuItem_Click);
     //
     // pararToolStripMenuItem
     //
     this.pararToolStripMenuItem.Name   = "pararToolStripMenuItem";
     this.pararToolStripMenuItem.Size   = new System.Drawing.Size(270, 34);
     this.pararToolStripMenuItem.Text   = "Parar";
     this.pararToolStripMenuItem.Click += new System.EventHandler(this.pararToolStripMenuItem_Click);
     //
     // richTexto
     //
     this.richTexto.Location = new System.Drawing.Point(59, 63);
     this.richTexto.Name     = "richTexto";
     this.richTexto.Size     = new System.Drawing.Size(158, 386);
     this.richTexto.TabIndex = 1;
     this.richTexto.Text     = "";
     //
     // chtTemperatura
     //
     customLabel5.Text = "Temperatura [C]";
     chartArea5.AxisX.CustomLabels.Add(customLabel5);
     chartArea5.Name = "ChartArea1";
     this.chtTemperatura.ChartAreas.Add(chartArea5);
     legend5.Name = "Legend1";
     this.chtTemperatura.Legends.Add(legend5);
     this.chtTemperatura.Location = new System.Drawing.Point(251, 63);
     this.chtTemperatura.Name     = "chtTemperatura";
     series5.ChartArea            = "ChartArea1";
     series5.ChartType            = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series5.Legend = "Legend1";
     series5.Name   = "serieTemperatura";
     this.chtTemperatura.Series.Add(series5);
     this.chtTemperatura.Size     = new System.Drawing.Size(816, 386);
     this.chtTemperatura.TabIndex = 2;
     this.chtTemperatura.Text     = "chart1";
     //
     // tiempoTemperatura
     //
     this.tiempoTemperatura.Interval = 500;
     this.tiempoTemperatura.Tick    += new System.EventHandler(this.tiempoTemperatura_Tick);
     //
     // exportarAPDFToolStripMenuItem
     //
     this.exportarAPDFToolStripMenuItem.Name   = "exportarAPDFToolStripMenuItem";
     this.exportarAPDFToolStripMenuItem.Size   = new System.Drawing.Size(270, 34);
     this.exportarAPDFToolStripMenuItem.Text   = "Exportar a PDF";
     this.exportarAPDFToolStripMenuItem.Click += new System.EventHandler(this.exportarAPDFToolStripMenuItem_Click);
     //
     // FormTemperatura
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1138, 501);
     this.Controls.Add(this.chtTemperatura);
     this.Controls.Add(this.richTexto);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "FormTemperatura";
     this.Text          = "FormTemperatura";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chtTemperatura)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #32
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(columnGluFrom));
     this.label3     = new System.Windows.Forms.Label();
     this.label2     = new System.Windows.Forms.Label();
     this.label1     = new System.Windows.Forms.Label();
     this.label5     = new System.Windows.Forms.Label();
     this.label6     = new System.Windows.Forms.Label();
     this.label7     = new System.Windows.Forms.Label();
     this.label8     = new System.Windows.Forms.Label();
     this.label9     = new System.Windows.Forms.Label();
     this.label10    = new System.Windows.Forms.Label();
     this.label11    = new System.Windows.Forms.Label();
     this.label12    = new System.Windows.Forms.Label();
     this.label15    = new System.Windows.Forms.Label();
     this.label14    = new System.Windows.Forms.Label();
     this.label13    = new System.Windows.Forms.Label();
     this.label16    = new System.Windows.Forms.Label();
     this.label17    = new System.Windows.Forms.Label();
     this.label18    = new System.Windows.Forms.Label();
     this.label19    = new System.Windows.Forms.Label();
     this.label20    = new System.Windows.Forms.Label();
     this.label21    = new System.Windows.Forms.Label();
     this.label22    = new System.Windows.Forms.Label();
     this.label23    = new System.Windows.Forms.Label();
     this.label24    = new System.Windows.Forms.Label();
     this.label25    = new System.Windows.Forms.Label();
     this.label26    = new System.Windows.Forms.Label();
     this.label27    = new System.Windows.Forms.Label();
     this.chart1     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.comMeterid = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Arial", 12F);
     this.label3.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label3.Location = new System.Drawing.Point(18, 10);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(137, 18);
     this.label3.TabIndex = 17;
     this.label3.Text     = "nome do paciente:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.label2.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label2.Location = new System.Drawing.Point(236, 35);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(194, 19);
     this.label2.TabIndex = 16;
     this.label2.Text     = "- - - -/ - - / - - ~ - - - - / - - / - -/";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label1.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label1.Location = new System.Drawing.Point(18, 35);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(122, 16);
     this.label1.TabIndex = 15;
     this.label1.Text     = "Data do Relatório:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label5.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label5.Location = new System.Drawing.Point(166, 35);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(39, 16);
     this.label5.TabIndex = 19;
     this.label5.Text     = "(AC)";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label6.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label6.Location = new System.Drawing.Point(166, 60);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(36, 16);
     this.label6.TabIndex = 21;
     this.label6.Text     = "(PC)";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.label7.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label7.Location = new System.Drawing.Point(236, 60);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(194, 19);
     this.label7.TabIndex = 20;
     this.label7.Text     = "- - - -/ - - / - - ~ - - - - / - - / - -/";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label8.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label8.Location = new System.Drawing.Point(17, 87);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(107, 16);
     this.label8.TabIndex = 22;
     this.label8.Text     = "Totais do Teste:";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label9.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label9.Location = new System.Drawing.Point(166, 112);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(36, 16);
     this.label9.TabIndex = 24;
     this.label9.Text     = "(PC)";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label10.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label10.Location = new System.Drawing.Point(166, 87);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(39, 16);
     this.label10.TabIndex = 23;
     this.label10.Text     = "(AC)";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label11.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label11.Location = new System.Drawing.Point(236, 112);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(22, 16);
     this.label11.TabIndex = 26;
     this.label11.Text     = "- -";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label12.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label12.Location = new System.Drawing.Point(236, 87);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(22, 16);
     this.label12.TabIndex = 25;
     this.label12.Text     = "- -";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font     = new System.Drawing.Font("Arial", 12F);
     this.label15.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label15.Location = new System.Drawing.Point(701, 74);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(85, 18);
     this.label15.TabIndex = 37;
     this.label15.Text     = "mg/dL(AC)";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font     = new System.Drawing.Font("Arial", 12F);
     this.label14.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label14.Location = new System.Drawing.Point(701, 48);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(85, 18);
     this.label14.TabIndex = 36;
     this.label14.Text     = "mg/dL(AC)";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font     = new System.Drawing.Font("Arial", 12F);
     this.label13.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label13.Location = new System.Drawing.Point(701, 23);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(85, 18);
     this.label13.TabIndex = 35;
     this.label13.Text     = "mg/dL(AC)";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font     = new System.Drawing.Font("Arial", 12F);
     this.label16.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label16.Location = new System.Drawing.Point(646, 78);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(31, 18);
     this.label16.TabIndex = 34;
     this.label16.Text     = "- - -";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font     = new System.Drawing.Font("Arial", 12F);
     this.label17.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label17.Location = new System.Drawing.Point(646, 52);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(31, 18);
     this.label17.TabIndex = 33;
     this.label17.Text     = "- - -";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font     = new System.Drawing.Font("Arial", 12F);
     this.label18.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label18.Location = new System.Drawing.Point(646, 27);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(31, 18);
     this.label18.TabIndex = 32;
     this.label18.Text     = "- - -";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font     = new System.Drawing.Font("Arial", 12F);
     this.label19.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label19.Location = new System.Drawing.Point(511, 74);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(96, 18);
     this.label19.TabIndex = 31;
     this.label19.Text     = "Valor Médio:";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font     = new System.Drawing.Font("Arial", 12F);
     this.label20.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label20.Location = new System.Drawing.Point(512, 49);
     this.label20.Name     = "label20";
     this.label20.Size     = new System.Drawing.Size(102, 18);
     this.label20.TabIndex = 30;
     this.label20.Text     = "Valor Mínimo:";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font     = new System.Drawing.Font("Arial", 12F);
     this.label21.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label21.Location = new System.Drawing.Point(511, 27);
     this.label21.Name     = "label21";
     this.label21.Size     = new System.Drawing.Size(107, 18);
     this.label21.TabIndex = 29;
     this.label21.Text     = "Valor Máximo:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font     = new System.Drawing.Font("Arial", 12F);
     this.label22.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label22.Location = new System.Drawing.Point(885, 74);
     this.label22.Name     = "label22";
     this.label22.Size     = new System.Drawing.Size(85, 18);
     this.label22.TabIndex = 43;
     this.label22.Text     = "mg/dL(PC)";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font     = new System.Drawing.Font("Arial", 12F);
     this.label23.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label23.Location = new System.Drawing.Point(885, 48);
     this.label23.Name     = "label23";
     this.label23.Size     = new System.Drawing.Size(85, 18);
     this.label23.TabIndex = 42;
     this.label23.Text     = "mg/dL(PC)";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font     = new System.Drawing.Font("Arial", 12F);
     this.label24.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label24.Location = new System.Drawing.Point(885, 23);
     this.label24.Name     = "label24";
     this.label24.Size     = new System.Drawing.Size(85, 18);
     this.label24.TabIndex = 41;
     this.label24.Text     = "mg/dL(PC)";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font     = new System.Drawing.Font("Arial", 12F);
     this.label25.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label25.Location = new System.Drawing.Point(830, 78);
     this.label25.Name     = "label25";
     this.label25.Size     = new System.Drawing.Size(31, 18);
     this.label25.TabIndex = 40;
     this.label25.Text     = "- - -";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font     = new System.Drawing.Font("Arial", 12F);
     this.label26.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label26.Location = new System.Drawing.Point(830, 52);
     this.label26.Name     = "label26";
     this.label26.Size     = new System.Drawing.Size(31, 18);
     this.label26.TabIndex = 39;
     this.label26.Text     = "- - -";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font     = new System.Drawing.Font("Arial", 12F);
     this.label27.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.label27.Location = new System.Drawing.Point(830, 27);
     this.label27.Name     = "label27";
     this.label27.Size     = new System.Drawing.Size(31, 18);
     this.label27.TabIndex = 38;
     this.label27.Text     = "- - -";
     //
     // chart1
     //
     customLabel1.Text       = "<70";
     customLabel1.ToPosition = 2D;
     customLabel2.Text       = "70-100";
     customLabel2.ToPosition = 4D;
     customLabel3.Text       = "100-140";
     customLabel3.ToPosition = 6D;
     customLabel4.Text       = "140-180";
     customLabel4.ToPosition = 8D;
     customLabel5.Text       = "180-220";
     customLabel5.ToPosition = 10D;
     customLabel6.Text       = "220-280";
     customLabel6.ToPosition = 12D;
     customLabel7.Text       = ">=280";
     customLabel7.ToPosition = 14D;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.CustomLabels.Add(customLabel5);
     chartArea1.AxisX.CustomLabels.Add(customLabel6);
     chartArea1.AxisX.CustomLabels.Add(customLabel7);
     chartArea1.AxisX.Enabled                      = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX.Maximum                      = 8D;
     chartArea1.AxisX.Minimum                      = 0D;
     chartArea1.AxisX.Title                        = "Glicemia mg/dL";
     chartArea1.AxisX.TitleAlignment               = System.Drawing.StringAlignment.Near;
     chartArea1.AxisX.TitleFont                    = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.Interval                     = 25D;
     chartArea1.AxisY.IntervalAutoMode             = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     chartArea1.AxisY.IntervalOffsetType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisY.MajorGrid.Interval           = 0D;
     chartArea1.AxisY.MajorGrid.IntervalOffset     = 0D;
     chartArea1.AxisY.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY.MajorGrid.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisY.Maximum                      = 100D;
     chartArea1.AxisY.Minimum                      = 0D;
     chartArea1.AxisY.ScrollBar.LineColor          = System.Drawing.Color.Black;
     chartArea1.AxisY.Title                        = "(%)";
     chartArea1.AxisY.TitleFont                    = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(12, 135);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.EmptyPointStyle.IsValueShownAsLabel = true;
     series1.Legend     = "Legend1";
     series1.Name       = "AC";
     series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.ChartArea  = "ChartArea1";
     series2.EmptyPointStyle.IsValueShownAsLabel = true;
     series2.Legend     = "Legend1";
     series2.Name       = "PC";
     series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(991, 470);
     this.chart1.TabIndex = 3;
     this.chart1.Text     = "chart1";
     title1.Alignment     = System.Drawing.ContentAlignment.BottomLeft;
     title1.Docking       = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
     title1.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     title1.ForeColor     = System.Drawing.Color.DarkBlue;
     title1.Name          = "title1";
     title1.Text          = "Gráfico de Coluna de Análise de Glicemia";
     title1.TextStyle     = System.Windows.Forms.DataVisualization.Charting.TextStyle.Emboss;
     this.chart1.Titles.Add(title1);
     //
     // comMeterid
     //
     this.comMeterid.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comMeterid.FormattingEnabled = true;
     this.comMeterid.Location          = new System.Drawing.Point(170, 10);
     this.comMeterid.Name                  = "comMeterid";
     this.comMeterid.Size                  = new System.Drawing.Size(195, 20);
     this.comMeterid.TabIndex              = 44;
     this.comMeterid.SelectedValueChanged += new System.EventHandler(this.comMeterid_SelectedValueChanged);
     this.comMeterid.Click                += new System.EventHandler(this.comMeterid_Click);
     //
     // columnGluFrom
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor     = System.Drawing.Color.White;
     this.ClientSize    = new System.Drawing.Size(1015, 621);
     this.Controls.Add(this.comMeterid);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.label23);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.label25);
     this.Controls.Add(this.label26);
     this.Controls.Add(this.label27);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.label20);
     this.Controls.Add(this.label21);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.chart1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "columnGluFrom";
     this.Text  = "Gráfico de Coluna de Análise de Glicemia";
     this.Load += new System.EventHandler(this.columnGluFrom_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea7   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend7      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series4      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea8   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend8      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Title       title4       = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.btn_logout          = new System.Windows.Forms.Button();
     this.MainTab             = new System.Windows.Forms.TabControl();
     this.DashboardTab        = new System.Windows.Forms.TabPage();
     this.listView1           = new System.Windows.Forms.ListView();
     this.chart2              = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chart1              = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.TicketTab           = new System.Windows.Forms.TabPage();
     this.NewTickTab          = new System.Windows.Forms.TabPage();
     this.NewTicketStateLabel = new System.Windows.Forms.Label();
     this.NewIssueLabel       = new System.Windows.Forms.Label();
     this.NewSubjectLabel     = new System.Windows.Forms.Label();
     this.NewTicketState      = new System.Windows.Forms.ComboBox();
     this.NewSubjectBox       = new System.Windows.Forms.TextBox();
     this.NewIssueBox         = new System.Windows.Forms.TextBox();
     this.SendNewTicket       = new System.Windows.Forms.Button();
     this.UserTab             = new System.Windows.Forms.TabPage();
     this.btnchangepass       = new System.Windows.Forms.Button();
     this.label1              = new System.Windows.Forms.Label();
     this.Testbutton          = new System.Windows.Forms.Button();
     this.btndeleteuser       = new System.Windows.Forms.Button();
     this.btnnewuser          = new System.Windows.Forms.Button();
     this.userlist            = new System.Windows.Forms.ListView();
     this.columnHeader1       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.button1             = new System.Windows.Forms.Button();
     this.columnHeader5       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader8       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader9       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader10      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader11      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader12      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.MainTab.SuspendLayout();
     this.DashboardTab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.NewTickTab.SuspendLayout();
     this.UserTab.SuspendLayout();
     this.SuspendLayout();
     //
     // btn_logout
     //
     this.btn_logout.Location = new System.Drawing.Point(1072, 5);
     this.btn_logout.Name     = "btn_logout";
     this.btn_logout.Size     = new System.Drawing.Size(75, 23);
     this.btn_logout.TabIndex = 0;
     this.btn_logout.Text     = "Uitloggen";
     this.btn_logout.UseVisualStyleBackColor = true;
     this.btn_logout.Click += new System.EventHandler(this.btn_logout_Click);
     //
     // MainTab
     //
     this.MainTab.Controls.Add(this.DashboardTab);
     this.MainTab.Controls.Add(this.TicketTab);
     this.MainTab.Controls.Add(this.NewTickTab);
     this.MainTab.Controls.Add(this.UserTab);
     this.MainTab.Location              = new System.Drawing.Point(6, 12);
     this.MainTab.Name                  = "MainTab";
     this.MainTab.SelectedIndex         = 0;
     this.MainTab.Size                  = new System.Drawing.Size(1140, 812);
     this.MainTab.TabIndex              = 2;
     this.MainTab.SelectedIndexChanged += new System.EventHandler(this.MainTab_SelectedIndexChanged);
     //
     // DashboardTab
     //
     this.DashboardTab.Controls.Add(this.button1);
     this.DashboardTab.Controls.Add(this.listView1);
     this.DashboardTab.Controls.Add(this.chart2);
     this.DashboardTab.Controls.Add(this.chart1);
     this.DashboardTab.Location = new System.Drawing.Point(4, 22);
     this.DashboardTab.Name     = "DashboardTab";
     this.DashboardTab.Padding  = new System.Windows.Forms.Padding(3);
     this.DashboardTab.Size     = new System.Drawing.Size(1132, 786);
     this.DashboardTab.TabIndex = 0;
     this.DashboardTab.Text     = "Dashboard";
     this.DashboardTab.UseVisualStyleBackColor = true;
     this.DashboardTab.Click += new System.EventHandler(this.DashboardTab_Click);
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader5,
         this.columnHeader6,
         this.columnHeader7,
         this.columnHeader8,
         this.columnHeader9,
         this.columnHeader10,
         this.columnHeader11,
         this.columnHeader12
     });
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines     = true;
     this.listView1.Location      = new System.Drawing.Point(29, 34);
     this.listView1.Name          = "listView1";
     this.listView1.Size          = new System.Drawing.Size(378, 166);
     this.listView1.TabIndex      = 2;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
     //
     // chart2
     //
     chartArea7.Name = "ChartArea1";
     this.chart2.ChartAreas.Add(chartArea7);
     legend7.Name = "Legend1";
     this.chart2.Legends.Add(legend7);
     this.chart2.Location = new System.Drawing.Point(595, 34);
     this.chart2.Name     = "chart2";
     series4.ChartArea    = "ChartArea1";
     series4.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
     series4.Legend       = "Legend1";
     series4.Name         = "Series1";
     this.chart2.Series.Add(series4);
     this.chart2.Size     = new System.Drawing.Size(436, 367);
     this.chart2.TabIndex = 1;
     this.chart2.Text     = " ";
     //
     // chart1
     //
     customLabel7.Text = "Januari";
     chartArea8.AxisX.CustomLabels.Add(customLabel7);
     chartArea8.AxisX.IsLabelAutoFit              = false;
     chartArea8.AxisX.LabelStyle.Angle            = 90;
     chartArea8.AxisX2.Enabled                    = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea8.AxisY.IntervalOffsetType          = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea8.AxisY.IntervalType                = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea8.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
     chartArea8.AxisY.Title    = "Aantal Tickets";
     customLabel8.FromPosition = 1D;
     customLabel8.RowIndex     = 1;
     customLabel8.Text         = "Januari";
     chartArea8.AxisY2.CustomLabels.Add(customLabel8);
     chartArea8.AxisY2.Enabled    = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea8.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     chartArea8.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     chartArea8.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea8);
     legend8.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend8.Name        = "Legend1";
     this.chart1.Legends.Add(legend8);
     this.chart1.Location = new System.Drawing.Point(435, 445);
     this.chart1.Name     = "chart1";
     this.chart1.Size     = new System.Drawing.Size(633, 294);
     this.chart1.TabIndex = 0;
     title4.Name          = "Title1";
     title4.Text          = "Overzicht Actuele Tickets";
     this.chart1.Titles.Add(title4);
     //
     // TicketTab
     //
     this.TicketTab.Location = new System.Drawing.Point(4, 22);
     this.TicketTab.Name     = "TicketTab";
     this.TicketTab.Padding  = new System.Windows.Forms.Padding(3);
     this.TicketTab.Size     = new System.Drawing.Size(1132, 786);
     this.TicketTab.TabIndex = 1;
     this.TicketTab.Text     = "Ticket Overzicht";
     this.TicketTab.UseVisualStyleBackColor = true;
     //
     // NewTickTab
     //
     this.NewTickTab.Controls.Add(this.NewTicketStateLabel);
     this.NewTickTab.Controls.Add(this.NewIssueLabel);
     this.NewTickTab.Controls.Add(this.NewSubjectLabel);
     this.NewTickTab.Controls.Add(this.NewTicketState);
     this.NewTickTab.Controls.Add(this.NewSubjectBox);
     this.NewTickTab.Controls.Add(this.NewIssueBox);
     this.NewTickTab.Controls.Add(this.SendNewTicket);
     this.NewTickTab.Location = new System.Drawing.Point(4, 22);
     this.NewTickTab.Name     = "NewTickTab";
     this.NewTickTab.Padding  = new System.Windows.Forms.Padding(3);
     this.NewTickTab.Size     = new System.Drawing.Size(1132, 786);
     this.NewTickTab.TabIndex = 2;
     this.NewTickTab.Text     = "Nieuwe Ticket Aanmaken";
     this.NewTickTab.UseVisualStyleBackColor = true;
     //
     // NewTicketStateLabel
     //
     this.NewTicketStateLabel.AutoSize = true;
     this.NewTicketStateLabel.Location = new System.Drawing.Point(51, 324);
     this.NewTicketStateLabel.Name     = "NewTicketStateLabel";
     this.NewTicketStateLabel.Size     = new System.Drawing.Size(73, 13);
     this.NewTicketStateLabel.TabIndex = 6;
     this.NewTicketStateLabel.Text     = "Ticket Status:";
     //
     // NewIssueLabel
     //
     this.NewIssueLabel.AutoSize = true;
     this.NewIssueLabel.Location = new System.Drawing.Point(394, 292);
     this.NewIssueLabel.Name     = "NewIssueLabel";
     this.NewIssueLabel.Size     = new System.Drawing.Size(35, 13);
     this.NewIssueLabel.TabIndex = 5;
     this.NewIssueLabel.Text     = "Issue:";
     //
     // NewSubjectLabel
     //
     this.NewSubjectLabel.AutoSize = true;
     this.NewSubjectLabel.Location = new System.Drawing.Point(368, 257);
     this.NewSubjectLabel.Name     = "NewSubjectLabel";
     this.NewSubjectLabel.Size     = new System.Drawing.Size(62, 13);
     this.NewSubjectLabel.TabIndex = 4;
     this.NewSubjectLabel.Text     = "Onderwerp:";
     this.NewSubjectLabel.Click   += new System.EventHandler(this.label1_Click);
     //
     // NewTicketState
     //
     this.NewTicketState.FormattingEnabled = true;
     this.NewTicketState.Items.AddRange(new object[] {
         "Open / Onbehandeld",
         "Gesloten / Beantwoord",
         "In Afwachting"
     });
     this.NewTicketState.Location = new System.Drawing.Point(124, 322);
     this.NewTicketState.Name     = "NewTicketState";
     this.NewTicketState.Size     = new System.Drawing.Size(173, 21);
     this.NewTicketState.TabIndex = 3;
     //
     // NewSubjectBox
     //
     this.NewSubjectBox.Location     = new System.Drawing.Point(433, 254);
     this.NewSubjectBox.Name         = "NewSubjectBox";
     this.NewSubjectBox.Size         = new System.Drawing.Size(612, 20);
     this.NewSubjectBox.TabIndex     = 1;
     this.NewSubjectBox.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // NewIssueBox
     //
     this.NewIssueBox.Location  = new System.Drawing.Point(434, 291);
     this.NewIssueBox.Multiline = true;
     this.NewIssueBox.Name      = "NewIssueBox";
     this.NewIssueBox.Size      = new System.Drawing.Size(610, 244);
     this.NewIssueBox.TabIndex  = 2;
     //
     // SendNewTicket
     //
     this.SendNewTicket.Location = new System.Drawing.Point(968, 559);
     this.SendNewTicket.Name     = "SendNewTicket";
     this.SendNewTicket.Size     = new System.Drawing.Size(75, 23);
     this.SendNewTicket.TabIndex = 4;
     this.SendNewTicket.Text     = "Indienen";
     this.SendNewTicket.UseVisualStyleBackColor = true;
     this.SendNewTicket.Click += new System.EventHandler(this.SendNewTicket_Click);
     //
     // UserTab
     //
     this.UserTab.Controls.Add(this.btnchangepass);
     this.UserTab.Controls.Add(this.label1);
     this.UserTab.Controls.Add(this.Testbutton);
     this.UserTab.Controls.Add(this.btndeleteuser);
     this.UserTab.Controls.Add(this.btnnewuser);
     this.UserTab.Controls.Add(this.userlist);
     this.UserTab.Location = new System.Drawing.Point(4, 22);
     this.UserTab.Name     = "UserTab";
     this.UserTab.Padding  = new System.Windows.Forms.Padding(3);
     this.UserTab.Size     = new System.Drawing.Size(1132, 786);
     this.UserTab.TabIndex = 3;
     this.UserTab.Text     = "Gebruikersbeheer";
     this.UserTab.UseVisualStyleBackColor = true;
     this.UserTab.Click += new System.EventHandler(this.UserTab_Click);
     this.UserTab.Enter += new System.EventHandler(this.UserTab_Enter);
     //
     // btnchangepass
     //
     this.btnchangepass.Location = new System.Drawing.Point(567, 135);
     this.btnchangepass.Margin   = new System.Windows.Forms.Padding(2);
     this.btnchangepass.Name     = "btnchangepass";
     this.btnchangepass.Size     = new System.Drawing.Size(113, 36);
     this.btnchangepass.TabIndex = 7;
     this.btnchangepass.Text     = "Wachtwoord aanpassen";
     this.btnchangepass.UseVisualStyleBackColor = true;
     this.btnchangepass.Click += new System.EventHandler(this.btnchangepass_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(287, 403);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(126, 13);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Geselecteerde gebruiker:";
     //
     // Testbutton
     //
     this.Testbutton.Location = new System.Drawing.Point(418, 391);
     this.Testbutton.Margin   = new System.Windows.Forms.Padding(2);
     this.Testbutton.Name     = "Testbutton";
     this.Testbutton.Size     = new System.Drawing.Size(113, 36);
     this.Testbutton.TabIndex = 5;
     this.Testbutton.Text     = "Geen";
     this.Testbutton.UseVisualStyleBackColor = true;
     this.Testbutton.Click += new System.EventHandler(this.Testbutton_Click);
     //
     // btndeleteuser
     //
     this.btndeleteuser.Location = new System.Drawing.Point(567, 76);
     this.btndeleteuser.Margin   = new System.Windows.Forms.Padding(2);
     this.btndeleteuser.Name     = "btndeleteuser";
     this.btndeleteuser.Size     = new System.Drawing.Size(113, 36);
     this.btndeleteuser.TabIndex = 4;
     this.btndeleteuser.Text     = "Verwijderen";
     this.btndeleteuser.UseVisualStyleBackColor = true;
     this.btndeleteuser.Click += new System.EventHandler(this.btndeleteuser_Click);
     //
     // btnnewuser
     //
     this.btnnewuser.Location = new System.Drawing.Point(567, 18);
     this.btnnewuser.Margin   = new System.Windows.Forms.Padding(2);
     this.btnnewuser.Name     = "btnnewuser";
     this.btnnewuser.Size     = new System.Drawing.Size(113, 36);
     this.btnnewuser.TabIndex = 3;
     this.btnnewuser.Text     = "Nieuwe Gebruiker";
     this.btnnewuser.UseVisualStyleBackColor = true;
     this.btnnewuser.Click += new System.EventHandler(this.button1_Click_1);
     //
     // userlist
     //
     this.userlist.AutoArrange = false;
     this.userlist.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4
     });
     this.userlist.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.8F);
     this.userlist.GridLines   = true;
     this.userlist.Location    = new System.Drawing.Point(16, 14);
     this.userlist.MultiSelect = false;
     this.userlist.Name        = "userlist";
     this.userlist.Scrollable  = false;
     this.userlist.Size        = new System.Drawing.Size(515, 363);
     this.userlist.TabIndex    = 2;
     this.userlist.UseCompatibleStateImageBehavior = false;
     this.userlist.View = System.Windows.Forms.View.Details;
     this.userlist.SelectedIndexChanged += new System.EventHandler(this.userlist_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Gebruikersnaam";
     this.columnHeader1.Width = 112;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Naam";
     this.columnHeader2.Width = 105;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Afdeling";
     this.columnHeader3.Width = 111;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "E-mail adres";
     this.columnHeader4.Width = 195;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(424, 34);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(121, 35);
     this.button1.TabIndex = 3;
     this.button1.Text     = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // TicketSysteem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1186, 857);
     this.Controls.Add(this.btn_logout);
     this.Controls.Add(this.MainTab);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TicketSysteem";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "TickSys";
     this.Load           += new System.EventHandler(this.Dashboard_Load);
     this.MainTab.ResumeLayout(false);
     this.DashboardTab.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.NewTickTab.ResumeLayout(false);
     this.NewTickTab.PerformLayout();
     this.UserTab.ResumeLayout(false);
     this.UserTab.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #34
0
        private void btnRun_Click(object sender, EventArgs e)
        {
            try
            {
                frmProgress pfrmProgress = new frmProgress();
                pfrmProgress.lblStatus.Text    = "Processing:";
                pfrmProgress.pgbProgress.Style = ProgressBarStyle.Marquee;
                pfrmProgress.Show();


                if (cboFldNm1.Text == "")
                {
                    MessageBox.Show("Please select a proper field");
                    return;
                }

                // Creates the input and output matrices from the shapefile//
                //string strLayerName = cboTargetLayer.Text;

                //int intLIndex = m_pSnippet.GetIndexNumberFromLayerName(m_pActiveView, strLayerName);
                //ILayer pLayer = m_pForm.axMapControl1.get_Layer(intLIndex);

                //IFeatureLayer pFLayer = pLayer as IFeatureLayer;
                //pFClass = pFLayer.FeatureClass;
                int nFeature = m_pFClass.FeatureCount(null);

                //Plot command for R
                StringBuilder plotCommmand = new StringBuilder();

                if (!m_blnCreateSWM)
                {
                    //Get the file path and name to create spatial weight matrix
                    string strNameR = m_pSnippet.FilePathinRfromLayer(m_pFLayer);

                    if (strNameR == null)
                    {
                        return;
                    }

                    //Create spatial weight matrix in R
                    if (m_pFClass.ShapeType == esriGeometryType.esriGeometryPolygon)
                    {
                        m_pEngine.Evaluate("sample.shp <- readShapePoly('" + strNameR + "')");
                    }
                    else if (m_pFClass.ShapeType == esriGeometryType.esriGeometryPoint)
                    {
                        m_pEngine.Evaluate("sample.shp <- readShapePoints('" + strNameR + "')");
                    }
                    else
                    {
                        MessageBox.Show("This geometry type is not supported");
                        pfrmProgress.Close();
                        this.Close();
                    }


                    int intSuccess = m_pSnippet.CreateSpatialWeightMatrix(m_pEngine, m_pFClass, txtSWM.Text, pfrmProgress);
                    if (intSuccess == 0)
                    {
                        return;
                    }
                }

                ////Get the file path and name to create spatial weight matrix
                //string strNameR = m_pSnippet.FilePathinRfromLayer(m_pFLayer);

                //if (strNameR == null)
                //    return;

                //int intSuccess = 0;


                ////Create spatial weight matrix in R
                //if (m_pFClass.ShapeType == esriGeometryType.esriGeometryPolygon)
                //{
                //    m_pEngine.Evaluate("sample.shp <- readShapePoly('" + strNameR + "')");
                //    intSuccess = m_pSnippet.CreateSpatialWeightMatrix1(m_pEngine, m_pFClass, txtSWM.Text, pfrmProgress, Convert.ToDouble(nudAdvanced.Value), chkCumulate.Checked);

                //}
                //else if (m_pFClass.ShapeType == esriGeometryType.esriGeometryPoint)
                //{
                //    m_pEngine.Evaluate("sample.shp <- readShapePoints('" + strNameR + "')");
                //    //intSuccess = m_pSnippet.ExploreSpatialWeightMatrix1(m_pEngine, m_pFClass, txtSWM.Text, pfrmProgress, Convert.ToDouble(nudAdvanced.Value), chkCumulate.Checked);
                //    intSuccess = m_pSnippet.CreateSpatialWeightMatrixPts(m_pEngine, m_pFClass, txtSWM.Text, pfrmProgress, Convert.ToDouble(nudAdvanced.Value), chkCumulate.Checked, m_pClippedPolygon);

                //    //chkCumulate.Visible = false;
                //}
                //else
                //{
                //    MessageBox.Show("This geometry type is not supported");
                //    pfrmProgress.Close();
                //    this.Close();
                //}

                //if (intSuccess == 0)
                //    return;


                IFeatureCursor pFCursor = m_pFClass.Search(null, true);
                IFeature       pFeature = pFCursor.NextFeature();

                //Get index for independent and dependent variables
                //Get variable index
                string strVarNM  = (string)cboFldNm1.SelectedItem;
                int    intVarIdx = m_pFClass.FindField(strVarNM);
                int    intFIDIdx = m_pFClass.FindField(m_pFClass.OIDFieldName);  // Collect FIDs to apply Brushing and Linking

                //Store Variable at Array
                double[] arrVar = new double[nFeature];
                int[]    arrFID = new int[nFeature];

                int i = 0;

                m_arrXYCoord = new double[nFeature, 2];
                List <int>[] NBIDs = new List <int> [nFeature];

                IArea  pArea;
                IPoint pPoint;

                while (pFeature != null)
                {
                    if (m_pFClass.ShapeType == esriGeometryType.esriGeometryPolygon)
                    {
                        pArea = (IArea)pFeature.Shape;
                        m_arrXYCoord[i, 0] = pArea.Centroid.X;
                        m_arrXYCoord[i, 1] = pArea.Centroid.Y;
                    }
                    else if (m_pFClass.ShapeType == esriGeometryType.esriGeometryPoint)
                    {
                        pPoint             = (IPoint)pFeature.Shape;
                        m_arrXYCoord[i, 0] = pPoint.X;
                        m_arrXYCoord[i, 1] = pPoint.Y;
                    }
                    NBIDs[i] = m_pEngine.Evaluate("sample.nb[[" + (i + 1).ToString() + "]]").AsInteger().ToList();

                    arrVar[i] = Convert.ToDouble(pFeature.get_Value(intVarIdx));
                    arrFID[i] = Convert.ToInt32(pFeature.get_Value(intFIDIdx));
                    i++;
                    pFeature = pFCursor.NextFeature();
                }
                pFCursor.Flush();


                //Collect NB for Brushing and linking

                NumericVector vecVar = m_pEngine.CreateNumericVector(arrVar);
                m_pEngine.SetSymbol(strVarNM, vecVar);

                if (chkStd.Checked)
                {
                    m_pEngine.Evaluate(strVarNM + " <- scale(" + strVarNM + ")");     //Scaled
                    vecVar = m_pEngine.Evaluate(strVarNM).AsNumeric();
                }

                NumericVector vecWeightVar = null;
                if (cboMethod.Text == "MC")
                {
                    vecWeightVar = m_pEngine.Evaluate("wx.sample <- lag.listw(sample.listw, " + strVarNM + ", zero.policy=TRUE)").AsNumeric();
                }
                else if (cboMethod.Text == "GR")
                {
                    string strStartPath = m_pForm.strPath;
                    string pathr        = strStartPath.Replace(@"\", @"/");
                    m_pEngine.Evaluate("source('" + pathr + "/AllFunctions.R')");

                    vecWeightVar = m_pEngine.Evaluate("wx.sample <- diff.lag.listw(sample.listw, " + strVarNM + ")").AsNumeric();
                }
                else if (cboMethod.Text == "L")
                {
                    string strStartPath = m_pForm.strPath;
                    string pathr        = strStartPath.Replace(@"\", @"/");
                    m_pEngine.Evaluate("source('" + pathr + "/AllFunctions.R')");

                    vecWeightVar = m_pEngine.Evaluate("wx.sample <- diff.lag.listw(sample.listw, " + strVarNM + ")").AsNumeric();
                }

                m_pEngine.SetSymbol("WVar.sample", vecWeightVar);
                //double[] arrWeightVar = vecWeightVar.ToArray();
                NumericVector vecCoeff = m_pEngine.Evaluate("lm(WVar.sample~" + strVarNM + ")$coefficients").AsNumeric();

                frmMScatterResults pfrmMScatterResult = new frmMScatterResults();
                pfrmMScatterResult.m_arrXYCoord = m_arrXYCoord;
                pfrmMScatterResult.m_NBIDs      = NBIDs;
                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.IsStartedFromZero = false;
                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.IsMarginVisible   = true;

                pfrmMScatterResult.pChart.ChartAreas[0].AxisY.IsStartedFromZero = false;

                pfrmMScatterResult.Text = "Moran Scatter Plot of " + m_pFLayer.Name;
                pfrmMScatterResult.pChart.Series.Clear();
                System.Drawing.Color pMarkerColor = System.Drawing.Color.Blue;
                var seriesPts = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name              = "Points",
                    Color             = pMarkerColor,
                    BorderColor       = pMarkerColor,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point,
                    MarkerStyle       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle
                };

                pfrmMScatterResult.pChart.Series.Add(seriesPts);

                for (int j = 0; j < vecVar.Length; j++)
                {
                    seriesPts.Points.AddXY(vecVar[j], vecWeightVar[j]);
                }



                var VLine = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name            = "VLine",
                    Color           = System.Drawing.Color.Black,
                    BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash,
                    //BorderColor = System.Drawing.Color.Black,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line
                };
                pfrmMScatterResult.pChart.Series.Add(VLine);

                VLine.Points.AddXY(vecVar.Average(), vecWeightVar.Min());
                VLine.Points.AddXY(vecVar.Average(), vecWeightVar.Max());

                var HLine = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name            = "HLine",
                    Color           = System.Drawing.Color.Black,
                    BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash,
                    //BorderColor = System.Drawing.Color.Black,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line
                };
                pfrmMScatterResult.pChart.Series.Add(HLine);

                HLine.Points.AddXY(vecVar.Min(), vecWeightVar.Average());
                HLine.Points.AddXY(vecVar.Max(), vecWeightVar.Average());

                var seriesLine = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name  = "RegLine",
                    Color = System.Drawing.Color.Red,
                    //BorderColor = System.Drawing.Color.Black,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line
                };

                pfrmMScatterResult.pChart.Series.Add(seriesLine);

                seriesLine.Points.AddXY(vecVar.Min(), vecVar.Min() * vecCoeff[1] + vecCoeff[0]);
                seriesLine.Points.AddXY(vecVar.Max(), vecVar.Max() * vecCoeff[1] + vecCoeff[0]);

                if (chkStd.Checked)
                {
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.Title = "standardized " + strVarNM;
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisY.Title = "Spatially lagged standardized " + strVarNM;
                    pfrmMScatterResult.lblRegression.Text = "Spatially lagged standardized " + strVarNM + " = " + vecCoeff[1].ToString("N3") + " * " + "standardized " + strVarNM;
                }
                else
                {
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.Title = strVarNM;
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisY.Title = "Spatially lagged " + strVarNM;
                    pfrmMScatterResult.lblRegression.Text = "Spatially lagged " + strVarNM + " = " + vecCoeff[1].ToString("N3") + " * " + strVarNM + " + " + vecCoeff[0].ToString("N3");
                }

                pfrmMScatterResult.m_pForm       = m_pForm;
                pfrmMScatterResult.m_pFLayer     = m_pFLayer;
                pfrmMScatterResult.m_pActiveView = m_pActiveView;
                pfrmMScatterResult.arrVar        = arrVar;
                pfrmMScatterResult.arrFID        = arrFID;
                pfrmMScatterResult.strFIDNM      = m_pFClass.OIDFieldName;
                //pfrmMScatterResult.arrWeightVar = arrWeightVar;
                pfrmMScatterResult.pMakerColor = pMarkerColor;
                pfrmMScatterResult.strVarNM    = strVarNM;

                if (chkStd.Checked)
                {
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.IsLabelAutoFit = false;
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.CustomLabels.Clear();
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.None;
                    //pfrmMScatterResult.pChart.ChartAreas[0].AxisX.MajorTickMark.Interval = 1;
                    //pfrmMScatterResult.pChart.ChartAreas[0].AxisX.MajorTickMark.IntervalOffset = -2;

                    int intMin = Convert.ToInt32(Math.Floor(vecVar.Min()));
                    int intMax = Convert.ToInt32(Math.Ceiling(vecVar.Max()));
                    for (int n = intMin; n < intMax; n++)
                    {
                        System.Windows.Forms.DataVisualization.Charting.CustomLabel pcutsomLabel = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
                        pcutsomLabel.FromPosition = n - 0.5;
                        pcutsomLabel.ToPosition   = n + 0.5;
                        pcutsomLabel.Text         = n.ToString();
                        pfrmMScatterResult.pChart.ChartAreas[0].AxisX.CustomLabels.Add(pcutsomLabel);
                    }
                }

                pfrmMScatterResult.Show();
                pfrmProgress.Close();
                //this.Close();
            }
            catch (Exception ex)
            {
                frmErrorLog pfrmErrorLog = new frmErrorLog(); pfrmErrorLog.ex = ex; pfrmErrorLog.ShowDialog();
                return;
            }
        }
            /// <summary>
            /// Required method for Designer support - do not modify
            /// the contents of this method with the code editor.
            /// </summary>
            private void InitializeComponent()
            {
            System.Windows.Forms.Button Cancel;
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel13 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel14 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel15 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel16 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel17 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel18 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel19 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel20 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series9 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1D);
            System.Windows.Forms.DataVisualization.Charting.Series series10 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1D);
            System.Windows.Forms.DataVisualization.Charting.Series series11 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series12 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(62.5D, 10D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(62.5D, 0D);
            System.Windows.Forms.DataVisualization.Charting.Series series13 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(125D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(125D, 10D);
            System.Windows.Forms.DataVisualization.Charting.Series series14 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(250D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(250D, 10D);
            System.Windows.Forms.DataVisualization.Charting.Series series15 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(500D, 10D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(500D, 0D);
            System.Windows.Forms.DataVisualization.Charting.Series series16 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1000D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1000D, 10D);
            System.Windows.Forms.DataVisualization.Charting.Series series17 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint13 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2000D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint14 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2000D, 10D);
            System.Windows.Forms.DataVisualization.Charting.Series series18 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint15 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4000D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint16 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4000D, 10D);
            System.Windows.Forms.DataVisualization.Charting.Series series19 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint17 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(8000D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint18 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(8000D, 10D);
            System.Windows.Forms.DataVisualization.Charting.Series series20 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint19 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint20 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(10000D, 1D);
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.Title title3 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel21 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel22 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel23 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel24 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel25 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel26 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel27 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel28 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend3 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series21 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint21 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1D);
            System.Windows.Forms.DataVisualization.Charting.Series series22 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint22 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1D);
            this.LayerList = new System.Windows.Forms.ListBox();
            this.Use_RI = new System.Windows.Forms.Button();
            this.Polar_Absorption = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.Porous_1Param = new System.Windows.Forms.TableLayoutPanel();
            this.Averaging = new System.Windows.Forms.ComboBox();
            this.label17 = new System.Windows.Forms.Label();
            this.Resistivity_Feedback = new System.Windows.Forms.Label();
            this.Smart_Mat = new System.Windows.Forms.Button();
            this.PorosityLabel = new System.Windows.Forms.Label();
            this.Porosity_Percent = new System.Windows.Forms.NumericUpDown();
            this.Label1 = new System.Windows.Forms.Label();
            this.Sigma = new System.Windows.Forms.NumericUpDown();
            this.label10 = new System.Windows.Forms.Label();
            this.ViscousCharacteristicLength = new System.Windows.Forms.NumericUpDown();
            this.ThermalPermeability = new System.Windows.Forms.NumericUpDown();
            this.label9 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.Tortuosity = new System.Windows.Forms.NumericUpDown();
            this.Material_Type = new System.Windows.Forms.ComboBox();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label20 = new System.Windows.Forms.Label();
            this.Zf_Incorp_Method = new System.Windows.Forms.ComboBox();
            this.Z_rad_feedback = new System.Windows.Forms.Label();
            this.Calc_Zr = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.Inf_Sample = new System.Windows.Forms.RadioButton();
            this.XDim = new System.Windows.Forms.NumericUpDown();
            this.YDim = new System.Windows.Forms.NumericUpDown();
            this.Fin_Sample = new System.Windows.Forms.RadioButton();
            this.label7 = new System.Windows.Forms.Label();
            this.Up = new System.Windows.Forms.Button();
            this.Dn = new System.Windows.Forms.Button();
            this.Rem = new System.Windows.Forms.Button();
            this.label8 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.Alpha_Normal = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.Physical_Params1 = new System.Windows.Forms.TableLayoutPanel();
            this.label16 = new System.Windows.Forms.Label();
            this.YoungsModulus = new System.Windows.Forms.NumericUpDown();
            this.Solid_Density = new System.Windows.Forms.NumericUpDown();
            this.PoissonsRatio = new System.Windows.Forms.NumericUpDown();
            this.depth = new System.Windows.Forms.NumericUpDown();
            this.label6 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.pitch_label = new System.Windows.Forms.Label();
            this.diam_label = new System.Windows.Forms.Label();
            this.pitch = new System.Windows.Forms.NumericUpDown();
            this.diameter = new System.Windows.Forms.NumericUpDown();
            this.label18 = new System.Windows.Forms.Label();
            this.SoundSpeed = new System.Windows.Forms.NumericUpDown();
            this.Impedance_Graph = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label2 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.IIR_Order = new System.Windows.Forms.NumericUpDown();
            this.label23 = new System.Windows.Forms.Label();
            Cancel = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.Polar_Absorption)).BeginInit();
            this.Porous_1Param.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Porosity_Percent)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Sigma)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ViscousCharacteristicLength)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThermalPermeability)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Tortuosity)).BeginInit();
            this.tableLayoutPanel2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.XDim)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.YDim)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Alpha_Normal)).BeginInit();
            this.Physical_Params1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.YoungsModulus)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Solid_Density)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PoissonsRatio)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.depth)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pitch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.diameter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoundSpeed)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Impedance_Graph)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.IIR_Order)).BeginInit();
            this.SuspendLayout();
            // 
            // Cancel
            // 
            Cancel.Location = new System.Drawing.Point(428, 123);
            Cancel.Name = "Cancel";
            Cancel.Size = new System.Drawing.Size(136, 22);
            Cancel.TabIndex = 2;
            Cancel.Text = "Cancel";
            Cancel.UseVisualStyleBackColor = true;
            Cancel.Click += new System.EventHandler(this.Cancel_Click);
            // 
            // LayerList
            // 
            this.LayerList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.LayerList.FormattingEnabled = true;
            this.LayerList.Location = new System.Drawing.Point(882, 34);
            this.LayerList.Name = "LayerList";
            this.LayerList.Size = new System.Drawing.Size(565, 173);
            this.LayerList.TabIndex = 0;
            this.LayerList.SelectedIndexChanged += new System.EventHandler(this.LayerList_SelectedIndexChanged);
            // 
            // Use_RI
            // 
            this.Use_RI.Location = new System.Drawing.Point(159, 123);
            this.Use_RI.Name = "Use_RI";
            this.Use_RI.Size = new System.Drawing.Size(121, 24);
            this.Use_RI.TabIndex = 1;
            this.Use_RI.Text = "Random Incidence";
            this.Use_RI.UseVisualStyleBackColor = true;
            this.Use_RI.Click += new System.EventHandler(this.Use_RI_Click);
            // 
            // Polar_Absorption
            // 
            this.Polar_Absorption.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.Polar_Absorption.BackColor = System.Drawing.Color.Transparent;
            customLabel1.FromPosition = 1D;
            customLabel1.Text = "0";
            customLabel1.ToPosition = 2D;
            customLabel2.FromPosition = 1D;
            customLabel2.Text = "30";
            customLabel2.ToPosition = 2D;
            customLabel3.FromPosition = 2D;
            customLabel3.Text = "60";
            customLabel3.ToPosition = 3D;
            customLabel4.FromPosition = 3D;
            customLabel4.Text = "90";
            customLabel4.ToPosition = 4D;
            customLabel10.FromPosition = 8D;
            customLabel10.Text = "-90";
            customLabel10.ToPosition = 9D;
            customLabel11.FromPosition = 9D;
            customLabel11.Text = "-60";
            customLabel11.ToPosition = 10D;
            customLabel12.FromPosition = 11D;
            customLabel12.Text = "-30";
            customLabel12.ToPosition = 12D;
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.CustomLabels.Add(customLabel3);
            chartArea1.AxisX.CustomLabels.Add(customLabel4);
            chartArea1.AxisX.CustomLabels.Add(customLabel5);
            chartArea1.AxisX.CustomLabels.Add(customLabel6);
            chartArea1.AxisX.CustomLabels.Add(customLabel7);
            chartArea1.AxisX.CustomLabels.Add(customLabel8);
            chartArea1.AxisX.CustomLabels.Add(customLabel9);
            chartArea1.AxisX.CustomLabels.Add(customLabel10);
            chartArea1.AxisX.CustomLabels.Add(customLabel11);
            chartArea1.AxisX.CustomLabels.Add(customLabel12);
            chartArea1.Name = "ChartArea1";
            this.Polar_Absorption.ChartAreas.Add(chartArea1);
            legend1.BackColor = System.Drawing.Color.Transparent;
            legend1.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Left;
            legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Column;
            legend1.Name = "Legend1";
            legend1.Position.Auto = false;
            legend1.Position.Height = 25F;
            legend1.Position.Width = 20F;
            legend1.Position.X = 80F;
            legend1.Position.Y = 75F;
            this.Polar_Absorption.Legends.Add(legend1);
            this.Polar_Absorption.Location = new System.Drawing.Point(12, 279);
            this.Polar_Absorption.Name = "Polar_Absorption";
            this.Polar_Absorption.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
            this.Polar_Absorption.PaletteCustomColors = new System.Drawing.Color[] {
        System.Drawing.Color.Red,
        System.Drawing.Color.Orange,
        System.Drawing.Color.Gold,
        System.Drawing.Color.GreenYellow,
        System.Drawing.Color.Green,
        System.Drawing.Color.Blue,
        System.Drawing.Color.Indigo,
        System.Drawing.Color.Violet};
            series1.BorderWidth = 3;
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series1.CustomProperties = "CircularLabelsStyle=Circular";
            series1.Font = new System.Drawing.Font("Microsoft Sans Serif", 5.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series1.Legend = "Legend1";
            series1.Name = "62.5 Hz.";
            series1.ShadowColor = System.Drawing.Color.DarkGray;
            series1.ShadowOffset = 3;
            series2.BorderWidth = 3;
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series2.Legend = "Legend1";
            series2.Name = "125 Hz.";
            series2.ShadowColor = System.Drawing.Color.DarkGray;
            series2.ShadowOffset = 3;
            series3.BorderWidth = 3;
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series3.Legend = "Legend1";
            series3.Name = "250 Hz.";
            series3.ShadowColor = System.Drawing.Color.DarkGray;
            series3.ShadowOffset = 3;
            series4.BorderWidth = 3;
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series4.Legend = "Legend1";
            series4.Name = "500 Hz.";
            series4.ShadowColor = System.Drawing.Color.DarkGray;
            series4.ShadowOffset = 3;
            series5.BorderWidth = 3;
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series5.Legend = "Legend1";
            series5.Name = "1000 Hz.";
            series5.ShadowColor = System.Drawing.Color.DarkGray;
            series5.ShadowOffset = 3;
            series6.BorderWidth = 3;
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series6.Legend = "Legend1";
            series6.Name = "2000 Hz.";
            series6.ShadowColor = System.Drawing.Color.DarkGray;
            series6.ShadowOffset = 3;
            series7.BorderWidth = 3;
            series7.ChartArea = "ChartArea1";
            series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series7.Legend = "Legend1";
            series7.Name = "4000 Hz.";
            series7.ShadowColor = System.Drawing.Color.DarkGray;
            series7.ShadowOffset = 3;
            series8.BorderWidth = 3;
            series8.ChartArea = "ChartArea1";
            series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
            series8.Legend = "Legend1";
            series8.Name = "8000 Hz.";
            series8.ShadowColor = System.Drawing.Color.DarkGray;
            series8.ShadowOffset = 3;
            this.Polar_Absorption.Series.Add(series1);
            this.Polar_Absorption.Series.Add(series2);
            this.Polar_Absorption.Series.Add(series3);
            this.Polar_Absorption.Series.Add(series4);
            this.Polar_Absorption.Series.Add(series5);
            this.Polar_Absorption.Series.Add(series6);
            this.Polar_Absorption.Series.Add(series7);
            this.Polar_Absorption.Series.Add(series8);
            this.Polar_Absorption.Size = new System.Drawing.Size(450, 445);
            this.Polar_Absorption.TabIndex = 44;
            this.Polar_Absorption.TabStop = false;
            this.Polar_Absorption.Text = "Absorption By Angle";
            // 
            // Porous_1Param
            // 
            this.Porous_1Param.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.Porous_1Param.ColumnCount = 4;
            this.Porous_1Param.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.46479F));
            this.Porous_1Param.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 22.35916F));
            this.Porous_1Param.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Porous_1Param.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Porous_1Param.Controls.Add(this.Averaging, 2, 4);
            this.Porous_1Param.Controls.Add(this.label17, 0, 0);
            this.Porous_1Param.Controls.Add(this.Resistivity_Feedback, 0, 2);
            this.Porous_1Param.Controls.Add(this.Smart_Mat, 0, 4);
            this.Porous_1Param.Controls.Add(this.Use_RI, 1, 4);
            this.Porous_1Param.Controls.Add(this.PorosityLabel, 0, 3);
            this.Porous_1Param.Controls.Add(this.Porosity_Percent, 1, 3);
            this.Porous_1Param.Controls.Add(this.Label1, 0, 1);
            this.Porous_1Param.Controls.Add(this.Sigma, 1, 1);
            this.Porous_1Param.Controls.Add(this.label10, 2, 2);
            this.Porous_1Param.Controls.Add(this.ViscousCharacteristicLength, 3, 2);
            this.Porous_1Param.Controls.Add(this.ThermalPermeability, 3, 1);
            this.Porous_1Param.Controls.Add(this.label9, 2, 1);
            this.Porous_1Param.Controls.Add(this.label19, 2, 3);
            this.Porous_1Param.Controls.Add(this.Tortuosity, 3, 3);
            this.Porous_1Param.Controls.Add(Cancel, 3, 4);
            this.Porous_1Param.Location = new System.Drawing.Point(882, 570);
            this.Porous_1Param.Name = "Porous_1Param";
            this.Porous_1Param.RowCount = 6;
            this.Porous_1Param.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.Porous_1Param.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.Porous_1Param.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.Porous_1Param.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.Porous_1Param.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.Porous_1Param.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
            this.Porous_1Param.Size = new System.Drawing.Size(568, 160);
            this.Porous_1Param.TabIndex = 45;
            // 
            // Averaging
            // 
            this.Averaging.DisplayMember = "1";
            this.Averaging.FormattingEnabled = true;
            this.Averaging.Items.AddRange(new object[] {
            "Paris [sin(the)cos(the)]",
            "0 to 78 only",
            "0 t0 90 Flat"});
            this.Averaging.Location = new System.Drawing.Point(286, 123);
            this.Averaging.Name = "Averaging";
            this.Averaging.Size = new System.Drawing.Size(136, 21);
            this.Averaging.TabIndex = 61;
            this.Averaging.SelectedIndexChanged += new System.EventHandler(this.Averaging_SelectedIndexChanged);
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label17.Location = new System.Drawing.Point(3, 0);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(130, 13);
            this.label17.TabIndex = 60;
            this.label17.Text = "Porous Medium Properties";
            this.label17.Visible = false;
            // 
            // Resistivity_Feedback
            // 
            this.Resistivity_Feedback.AutoSize = true;
            this.Porous_1Param.SetColumnSpan(this.Resistivity_Feedback, 2);
            this.Resistivity_Feedback.Dock = System.Windows.Forms.DockStyle.Top;
            this.Resistivity_Feedback.Location = new System.Drawing.Point(3, 60);
            this.Resistivity_Feedback.Name = "Resistivity_Feedback";
            this.Resistivity_Feedback.Size = new System.Drawing.Size(277, 13);
            this.Resistivity_Feedback.TabIndex = 2;
            this.Resistivity_Feedback.Text = "i.e. Mineral Wool (45 kg/ m^3)";
            this.Resistivity_Feedback.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.Resistivity_Feedback.Visible = false;
            // 
            // Smart_Mat
            // 
            this.Smart_Mat.Location = new System.Drawing.Point(3, 123);
            this.Smart_Mat.Name = "Smart_Mat";
            this.Smart_Mat.Size = new System.Drawing.Size(150, 22);
            this.Smart_Mat.TabIndex = 5;
            this.Smart_Mat.Text = "Create Smart Material";
            this.Smart_Mat.UseVisualStyleBackColor = true;
            this.Smart_Mat.Click += new System.EventHandler(this.Smart_Mat_Click);
            // 
            // PorosityLabel
            // 
            this.PorosityLabel.AutoSize = true;
            this.PorosityLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.PorosityLabel.Location = new System.Drawing.Point(3, 90);
            this.PorosityLabel.Name = "PorosityLabel";
            this.PorosityLabel.Size = new System.Drawing.Size(61, 13);
            this.PorosityLabel.TabIndex = 3;
            this.PorosityLabel.Text = "Porosity (%)";
            this.PorosityLabel.Visible = false;
            // 
            // Porosity_Percent
            // 
            this.Porosity_Percent.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Porosity_Percent.Location = new System.Drawing.Point(159, 93);
            this.Porosity_Percent.Name = "Porosity_Percent";
            this.Porosity_Percent.Size = new System.Drawing.Size(121, 20);
            this.Porosity_Percent.TabIndex = 4;
            this.Porosity_Percent.UseWaitCursor = true;
            this.Porosity_Percent.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.Porosity_Percent.Visible = false;
            // 
            // Label1
            // 
            this.Label1.AutoSize = true;
            this.Label1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.Label1.Location = new System.Drawing.Point(3, 30);
            this.Label1.Name = "Label1";
            this.Label1.Size = new System.Drawing.Size(147, 13);
            this.Label1.TabIndex = 0;
            this.Label1.Text = "Airflow Resistivity (Pa *s/m^3)";
            this.Label1.Visible = false;
            // 
            // Sigma
            // 
            this.Sigma.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Sigma.Location = new System.Drawing.Point(159, 33);
            this.Sigma.Maximum = new decimal(new int[] {
            300000,
            0,
            0,
            0});
            this.Sigma.Name = "Sigma";
            this.Sigma.Size = new System.Drawing.Size(121, 20);
            this.Sigma.TabIndex = 1;
            this.Sigma.UseWaitCursor = true;
            this.Sigma.Value = new decimal(new int[] {
            25000,
            0,
            0,
            0});
            this.Sigma.Visible = false;
            this.Sigma.ValueChanged += new System.EventHandler(this.Resistivity_ValueChanged);
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label10.Location = new System.Drawing.Point(286, 60);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(114, 26);
            this.label10.TabIndex = 8;
            this.label10.Text = "Viscous Characteristic Length (μm)";
            this.label10.Visible = false;
            // 
            // ViscousCharacteristicLength
            // 
            this.ViscousCharacteristicLength.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.ViscousCharacteristicLength.DecimalPlaces = 2;
            this.ViscousCharacteristicLength.Location = new System.Drawing.Point(428, 63);
            this.ViscousCharacteristicLength.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.ViscousCharacteristicLength.Name = "ViscousCharacteristicLength";
            this.ViscousCharacteristicLength.Size = new System.Drawing.Size(137, 20);
            this.ViscousCharacteristicLength.TabIndex = 15;
            this.ViscousCharacteristicLength.UseWaitCursor = true;
            this.ViscousCharacteristicLength.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.ViscousCharacteristicLength.Visible = false;
            // 
            // ThermalPermeability
            // 
            this.ThermalPermeability.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.ThermalPermeability.DecimalPlaces = 10;
            this.ThermalPermeability.Location = new System.Drawing.Point(428, 33);
            this.ThermalPermeability.Maximum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.ThermalPermeability.Name = "ThermalPermeability";
            this.ThermalPermeability.Size = new System.Drawing.Size(137, 20);
            this.ThermalPermeability.TabIndex = 14;
            this.ThermalPermeability.UseWaitCursor = true;
            this.ThermalPermeability.Value = new decimal(new int[] {
            61,
            0,
            0,
            655360});
            this.ThermalPermeability.Visible = false;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label9.Location = new System.Drawing.Point(286, 30);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(131, 13);
            this.label9.TabIndex = 7;
            this.label9.Text = "Thermal Permeabiity (m^2)";
            this.label9.Visible = false;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label19.Location = new System.Drawing.Point(286, 90);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(53, 13);
            this.label19.TabIndex = 61;
            this.label19.Text = "Tortuosity";
            this.label19.Visible = false;
            // 
            // Tortuosity
            // 
            this.Tortuosity.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Tortuosity.DecimalPlaces = 2;
            this.Tortuosity.Location = new System.Drawing.Point(428, 93);
            this.Tortuosity.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.Tortuosity.Name = "Tortuosity";
            this.Tortuosity.Size = new System.Drawing.Size(137, 20);
            this.Tortuosity.TabIndex = 62;
            this.Tortuosity.UseWaitCursor = true;
            this.Tortuosity.Value = new decimal(new int[] {
            102,
            0,
            0,
            131072});
            this.Tortuosity.Visible = false;
            // 
            // Material_Type
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.Material_Type, 3);
            this.Material_Type.FormattingEnabled = true;
            this.Material_Type.Items.AddRange(new object[] {
            "Air Space",
            "Porous Absorber (Biot)",
            "Porous Absorber (Delany-Bazley)",
            "Porous Absorber (Champoux-Allard)",
            "Porous Absorber (Miki)",
            "Solid Plate",
            "Perforated Plate (Modal Solution)",
            "Slotted Plate (Modal Solution)",
            "Perforated Plate (Circular)",
            "Perforated Plate (Square)",
            "Slotted Plate",
            "Micro-slit Plate",
            "Micro-Perforated Plate"});
            this.Material_Type.Location = new System.Drawing.Point(145, 3);
            this.Material_Type.Name = "Material_Type";
            this.Material_Type.Size = new System.Drawing.Size(420, 21);
            this.Material_Type.TabIndex = 46;
            this.Material_Type.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel2.ColumnCount = 4;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.Controls.Add(this.groupBox1, 0, 2);
            this.tableLayoutPanel2.Controls.Add(this.Material_Type, 1, 0);
            this.tableLayoutPanel2.Controls.Add(this.Up, 0, 1);
            this.tableLayoutPanel2.Controls.Add(this.Dn, 1, 1);
            this.tableLayoutPanel2.Controls.Add(this.Rem, 3, 1);
            this.tableLayoutPanel2.Controls.Add(this.label8, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.label14, 0, 4);
            this.tableLayoutPanel2.Controls.Add(this.label15, 2, 4);
            this.tableLayoutPanel2.Controls.Add(this.button1, 2, 1);
            this.tableLayoutPanel2.Location = new System.Drawing.Point(882, 239);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 5;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 24.82517F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 24.82517F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 24.47553F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.87413F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(568, 207);
            this.tableLayoutPanel2.TabIndex = 47;
            // 
            // groupBox1
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.groupBox1, 4);
            this.groupBox1.Controls.Add(this.label20);
            this.groupBox1.Controls.Add(this.Zf_Incorp_Method);
            this.groupBox1.Controls.Add(this.Z_rad_feedback);
            this.groupBox1.Controls.Add(this.Calc_Zr);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.Inf_Sample);
            this.groupBox1.Controls.Add(this.XDim);
            this.groupBox1.Controls.Add(this.YDim);
            this.groupBox1.Controls.Add(this.Fin_Sample);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Location = new System.Drawing.Point(3, 91);
            this.groupBox1.Name = "groupBox1";
            this.tableLayoutPanel2.SetRowSpan(this.groupBox1, 2);
            this.groupBox1.Size = new System.Drawing.Size(562, 84);
            this.groupBox1.TabIndex = 58;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Sample Extents";
            // 
            // label20
            // 
            this.label20.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(280, 23);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(94, 13);
            this.label20.TabIndex = 61;
            this.label20.Text = "Correction Method";
            // 
            // Zf_Incorp_Method
            // 
            this.Zf_Incorp_Method.FormattingEnabled = true;
            this.Zf_Incorp_Method.Items.AddRange(new object[] {
            "a = 4*Za.Real*Zf.Real / |Za + Zf|^2",
            "R = [(Za + Zf) - 1] / [(Za + Zf) + 1]"});
            this.Zf_Incorp_Method.Location = new System.Drawing.Point(380, 20);
            this.Zf_Incorp_Method.Name = "Zf_Incorp_Method";
            this.Zf_Incorp_Method.Size = new System.Drawing.Size(176, 21);
            this.Zf_Incorp_Method.TabIndex = 60;
            this.Zf_Incorp_Method.SelectedIndexChanged += new System.EventHandler(this.Zf_Incorp_Method_SelectedIndexChanged);
            // 
            // Z_rad_feedback
            // 
            this.Z_rad_feedback.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Z_rad_feedback.AutoSize = true;
            this.Z_rad_feedback.Location = new System.Drawing.Point(450, 57);
            this.Z_rad_feedback.Name = "Z_rad_feedback";
            this.Z_rad_feedback.Size = new System.Drawing.Size(83, 13);
            this.Z_rad_feedback.TabIndex = 59;
            this.Z_rad_feedback.Text = "No Z-rad Stored";
            // 
            // Calc_Zr
            // 
            this.Calc_Zr.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Calc_Zr.Location = new System.Drawing.Point(278, 48);
            this.Calc_Zr.Name = "Calc_Zr";
            this.Calc_Zr.Size = new System.Drawing.Size(166, 27);
            this.Calc_Zr.TabIndex = 57;
            this.Calc_Zr.Text = "Calculate Radiation Impedance";
            this.Calc_Zr.UseVisualStyleBackColor = true;
            this.Calc_Zr.Click += new System.EventHandler(this.Calc_Zr_Click);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(108, 22);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(83, 13);
            this.label3.TabIndex = 0;
            this.label3.Text = "X Dimension (m)";
            // 
            // Inf_Sample
            // 
            this.Inf_Sample.AutoSize = true;
            this.Inf_Sample.Checked = true;
            this.Inf_Sample.Location = new System.Drawing.Point(8, 20);
            this.Inf_Sample.Name = "Inf_Sample";
            this.Inf_Sample.Size = new System.Drawing.Size(94, 17);
            this.Inf_Sample.TabIndex = 1;
            this.Inf_Sample.TabStop = true;
            this.Inf_Sample.Text = "Infinite Sample";
            this.Inf_Sample.UseVisualStyleBackColor = true;
            this.Inf_Sample.CheckedChanged += new System.EventHandler(this.Inf_Sample_CheckedChanged);
            // 
            // XDim
            // 
            this.XDim.DecimalPlaces = 1;
            this.XDim.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.XDim.Location = new System.Drawing.Point(197, 53);
            this.XDim.Name = "XDim";
            this.XDim.Size = new System.Drawing.Size(77, 20);
            this.XDim.TabIndex = 55;
            this.XDim.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // YDim
            // 
            this.YDim.DecimalPlaces = 1;
            this.YDim.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.YDim.Location = new System.Drawing.Point(197, 20);
            this.YDim.Name = "YDim";
            this.YDim.Size = new System.Drawing.Size(77, 20);
            this.YDim.TabIndex = 54;
            this.YDim.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // Fin_Sample
            // 
            this.Fin_Sample.AutoSize = true;
            this.Fin_Sample.Location = new System.Drawing.Point(8, 53);
            this.Fin_Sample.Name = "Fin_Sample";
            this.Fin_Sample.Size = new System.Drawing.Size(88, 17);
            this.Fin_Sample.TabIndex = 0;
            this.Fin_Sample.Text = "Finite Sample";
            this.Fin_Sample.UseVisualStyleBackColor = true;
            this.Fin_Sample.CheckedChanged += new System.EventHandler(this.Fin_Sample_CheckedChanged);
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(108, 55);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(83, 13);
            this.label7.TabIndex = 56;
            this.label7.Text = "Y Dimension (m)";
            // 
            // Up
            // 
            this.Up.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Up.Location = new System.Drawing.Point(3, 47);
            this.Up.Name = "Up";
            this.Up.Size = new System.Drawing.Size(136, 38);
            this.Up.TabIndex = 47;
            this.Up.Text = "Layer Up";
            this.Up.UseVisualStyleBackColor = true;
            this.Up.Click += new System.EventHandler(this.Up_Click);
            // 
            // Dn
            // 
            this.Dn.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Dn.Location = new System.Drawing.Point(145, 47);
            this.Dn.Name = "Dn";
            this.Dn.Size = new System.Drawing.Size(136, 38);
            this.Dn.TabIndex = 48;
            this.Dn.Text = "Layer Down";
            this.Dn.UseVisualStyleBackColor = true;
            this.Dn.Click += new System.EventHandler(this.Down_Click);
            // 
            // Rem
            // 
            this.Rem.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Rem.Location = new System.Drawing.Point(429, 47);
            this.Rem.Name = "Rem";
            this.Rem.Size = new System.Drawing.Size(136, 38);
            this.Rem.TabIndex = 50;
            this.Rem.Text = "Remove Layer";
            this.Rem.UseVisualStyleBackColor = true;
            this.Rem.Click += new System.EventHandler(this.Rem_Click);
            // 
            // label8
            // 
            this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(3, 0);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(136, 44);
            this.label8.TabIndex = 57;
            this.label8.Text = "Sample Type";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label14.Location = new System.Drawing.Point(3, 178);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(124, 13);
            this.label14.TabIndex = 59;
            this.label14.Text = "Gross Material Properties";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label15.Location = new System.Drawing.Point(287, 178);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(95, 26);
            this.label15.TabIndex = 60;
            this.label15.Text = "Solid Components Properties";
            this.label15.Visible = false;
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.button1.Location = new System.Drawing.Point(287, 47);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(136, 38);
            this.button1.TabIndex = 61;
            this.button1.Text = "Add Layer";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.Add_Click);
            // 
            // Alpha_Normal
            // 
            this.Alpha_Normal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Alpha_Normal.BackColor = System.Drawing.Color.Transparent;
            customLabel13.FromPosition = 3.71D;
            customLabel13.Text = "62.5";
            customLabel13.ToPosition = 4D;
            customLabel14.FromPosition = 4.35D;
            customLabel14.Text = "125";
            customLabel14.ToPosition = 4.6D;
            customLabel15.FromPosition = 5D;
            customLabel15.Text = "250";
            customLabel15.ToPosition = 5.2D;
            customLabel16.FromPosition = 5.45D;
            customLabel16.Text = "500";
            customLabel16.ToPosition = 6D;
            customLabel17.FromPosition = 6.05D;
            customLabel17.Text = "1000";
            customLabel17.ToPosition = 6.7D;
            customLabel18.FromPosition = 6.65D;
            customLabel18.Text = "2000";
            customLabel18.ToPosition = 7.4D;
            customLabel19.FromPosition = 7.48D;
            customLabel19.Text = "4000";
            customLabel19.ToPosition = 7.8D;
            customLabel20.FromPosition = 8.14D;
            customLabel20.Text = "8000";
            customLabel20.ToPosition = 8.4D;
            chartArea2.AxisX.CustomLabels.Add(customLabel13);
            chartArea2.AxisX.CustomLabels.Add(customLabel14);
            chartArea2.AxisX.CustomLabels.Add(customLabel15);
            chartArea2.AxisX.CustomLabels.Add(customLabel16);
            chartArea2.AxisX.CustomLabels.Add(customLabel17);
            chartArea2.AxisX.CustomLabels.Add(customLabel18);
            chartArea2.AxisX.CustomLabels.Add(customLabel19);
            chartArea2.AxisX.CustomLabels.Add(customLabel20);
            chartArea2.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea2.AxisX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Days;
            chartArea2.AxisX.IsLabelAutoFit = false;
            chartArea2.AxisX.IsLogarithmic = true;
            chartArea2.AxisX.IsStartedFromZero = false;
            chartArea2.AxisX.LabelAutoFitMinFontSize = 5;
            chartArea2.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)(((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep45) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea2.AxisX.LabelStyle.TruncatedLabels = true;
            chartArea2.AxisX.LogarithmBase = 3D;
            chartArea2.AxisX.MajorGrid.Enabled = false;
            chartArea2.AxisX.MajorTickMark.Enabled = false;
            chartArea2.AxisX.Maximum = 10000D;
            chartArea2.AxisX.Minimum = 31.25D;
            chartArea2.AxisX.MinorTickMark.Interval = double.NaN;
            chartArea2.AxisX.MinorTickMark.IntervalOffset = double.NaN;
            chartArea2.AxisX.MinorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea2.AxisX.MinorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea2.AxisX.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Rotated270;
            chartArea2.AxisX2.IsLogarithmic = true;
            chartArea2.AxisY.Maximum = 1D;
            chartArea2.AxisY.Minimum = 0D;
            chartArea2.AxisY2.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea2.AxisY2.LabelAutoFitMinFontSize = 5;
            chartArea2.AxisY2.MajorGrid.LineColor = System.Drawing.Color.DimGray;
            chartArea2.AxisY2.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
            chartArea2.CursorY.IntervalOffset = 5D;
            chartArea2.Name = "ChartArea1";
            this.Alpha_Normal.ChartAreas.Add(chartArea2);
            legend2.BackColor = System.Drawing.Color.White;
            legend2.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Center;
            legend2.BackImageTransparentColor = System.Drawing.Color.White;
            legend2.BackSecondaryColor = System.Drawing.Color.White;
            legend2.BorderColor = System.Drawing.Color.White;
            legend2.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            legend2.DockedToChartArea = "ChartArea1";
            legend2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
            legend2.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.ReversedSeriesOrder;
            legend2.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Column;
            legend2.Name = "Legend1";
            legend2.ShadowColor = System.Drawing.Color.White;
            legend2.TitleBackColor = System.Drawing.Color.White;
            this.Alpha_Normal.Legends.Add(legend2);
            this.Alpha_Normal.Location = new System.Drawing.Point(12, 12);
            this.Alpha_Normal.Name = "Alpha_Normal";
            this.Alpha_Normal.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            series9.ChartArea = "ChartArea1";
            series9.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series9.Legend = "Legend1";
            series9.Name = "Normal Incidence";
            series9.Points.Add(dataPoint1);
            series10.ChartArea = "ChartArea1";
            series10.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
            series10.Legend = "Legend1";
            series10.MarkerBorderColor = System.Drawing.Color.Red;
            series10.MarkerColor = System.Drawing.Color.Red;
            series10.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross;
            series10.Name = "Random Incidence";
            series10.Points.Add(dataPoint2);
            series11.ChartArea = "ChartArea1";
            series11.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series11.Legend = "Legend1";
            series11.Name = "IIR Estimate";
            series12.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series12.ChartArea = "ChartArea1";
            series12.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series12.Color = System.Drawing.Color.DarkGray;
            series12.IsVisibleInLegend = false;
            series12.Legend = "Legend1";
            series12.Name = "Series2";
            dataPoint3.IsVisibleInLegend = false;
            dataPoint3.LabelBorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            dataPoint3.LabelForeColor = System.Drawing.Color.Black;
            series12.Points.Add(dataPoint3);
            series12.Points.Add(dataPoint4);
            series13.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series13.ChartArea = "ChartArea1";
            series13.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series13.Color = System.Drawing.Color.DarkGray;
            series13.IsVisibleInLegend = false;
            series13.Legend = "Legend1";
            series13.Name = "Series3";
            series13.Points.Add(dataPoint5);
            series13.Points.Add(dataPoint6);
            series14.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series14.ChartArea = "ChartArea1";
            series14.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series14.Color = System.Drawing.Color.DarkGray;
            series14.IsVisibleInLegend = false;
            series14.Legend = "Legend1";
            series14.Name = "Series4";
            series14.Points.Add(dataPoint7);
            series14.Points.Add(dataPoint8);
            series15.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series15.ChartArea = "ChartArea1";
            series15.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series15.Color = System.Drawing.Color.DarkGray;
            series15.IsVisibleInLegend = false;
            series15.Legend = "Legend1";
            series15.Name = "Series5";
            series15.Points.Add(dataPoint9);
            series15.Points.Add(dataPoint10);
            series16.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series16.ChartArea = "ChartArea1";
            series16.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series16.Color = System.Drawing.Color.DarkGray;
            series16.IsVisibleInLegend = false;
            series16.Legend = "Legend1";
            series16.Name = "Series6";
            series16.Points.Add(dataPoint11);
            series16.Points.Add(dataPoint12);
            series17.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series17.ChartArea = "ChartArea1";
            series17.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series17.Color = System.Drawing.Color.DarkGray;
            series17.IsVisibleInLegend = false;
            series17.Legend = "Legend1";
            series17.Name = "Series7";
            series17.Points.Add(dataPoint13);
            series17.Points.Add(dataPoint14);
            series18.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series18.ChartArea = "ChartArea1";
            series18.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series18.Color = System.Drawing.Color.DarkGray;
            series18.IsVisibleInLegend = false;
            series18.Legend = "Legend1";
            series18.Name = "Series8";
            series18.Points.Add(dataPoint15);
            series18.Points.Add(dataPoint16);
            series19.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series19.ChartArea = "ChartArea1";
            series19.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series19.Color = System.Drawing.Color.DarkGray;
            series19.IsVisibleInLegend = false;
            series19.Legend = "Legend1";
            series19.Name = "Series9";
            series19.Points.Add(dataPoint17);
            series19.Points.Add(dataPoint18);
            series20.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series20.BorderWidth = 2;
            series20.ChartArea = "ChartArea1";
            series20.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series20.Color = System.Drawing.Color.DodgerBlue;
            series20.IsVisibleInLegend = false;
            series20.Legend = "Legend1";
            series20.MarkerColor = System.Drawing.Color.Transparent;
            series20.Name = "Series11";
            series20.Points.Add(dataPoint19);
            series20.Points.Add(dataPoint20);
            this.Alpha_Normal.Series.Add(series9);
            this.Alpha_Normal.Series.Add(series10);
            this.Alpha_Normal.Series.Add(series11);
            this.Alpha_Normal.Series.Add(series12);
            this.Alpha_Normal.Series.Add(series13);
            this.Alpha_Normal.Series.Add(series14);
            this.Alpha_Normal.Series.Add(series15);
            this.Alpha_Normal.Series.Add(series16);
            this.Alpha_Normal.Series.Add(series17);
            this.Alpha_Normal.Series.Add(series18);
            this.Alpha_Normal.Series.Add(series19);
            this.Alpha_Normal.Series.Add(series20);
            this.Alpha_Normal.Size = new System.Drawing.Size(864, 260);
            this.Alpha_Normal.TabIndex = 48;
            this.Alpha_Normal.Text = "Absorption Coefficient";
            title1.Name = "Absorption Coefficient";
            title1.Text = "Absorption Coefficient";
            title2.BorderWidth = 0;
            title2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Left;
            title2.Name = "Alpha";
            title2.Text = "Alpha (0 to 1)";
            title2.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Rotated270;
            title3.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title3.Name = "Freq";
            title3.Text = "Octave Band Center Frequency";
            this.Alpha_Normal.Titles.Add(title1);
            this.Alpha_Normal.Titles.Add(title2);
            this.Alpha_Normal.Titles.Add(title3);
            // 
            // Physical_Params1
            // 
            this.Physical_Params1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.Physical_Params1.ColumnCount = 4;
            this.Physical_Params1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.Controls.Add(this.label16, 0, 1);
            this.Physical_Params1.Controls.Add(this.YoungsModulus, 3, 1);
            this.Physical_Params1.Controls.Add(this.Solid_Density, 3, 0);
            this.Physical_Params1.Controls.Add(this.PoissonsRatio, 3, 2);
            this.Physical_Params1.Controls.Add(this.depth, 1, 0);
            this.Physical_Params1.Controls.Add(this.label6, 0, 0);
            this.Physical_Params1.Controls.Add(this.label11, 2, 1);
            this.Physical_Params1.Controls.Add(this.label12, 2, 2);
            this.Physical_Params1.Controls.Add(this.label13, 2, 0);
            this.Physical_Params1.Controls.Add(this.pitch_label, 0, 3);
            this.Physical_Params1.Controls.Add(this.diam_label, 0, 2);
            this.Physical_Params1.Controls.Add(this.pitch, 1, 3);
            this.Physical_Params1.Controls.Add(this.diameter, 1, 2);
            this.Physical_Params1.Controls.Add(this.label18, 2, 3);
            this.Physical_Params1.Controls.Add(this.SoundSpeed, 3, 3);
            this.Physical_Params1.Location = new System.Drawing.Point(882, 454);
            this.Physical_Params1.Name = "Physical_Params1";
            this.Physical_Params1.RowCount = 4;
            this.Physical_Params1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.Physical_Params1.Size = new System.Drawing.Size(568, 110);
            this.Physical_Params1.TabIndex = 49;
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label16.Location = new System.Drawing.Point(3, 27);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(108, 13);
            this.label16.TabIndex = 61;
            this.label16.Text = "Perforation Properties";
            this.label16.Visible = false;
            // 
            // YoungsModulus
            // 
            this.YoungsModulus.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.YoungsModulus.DecimalPlaces = 4;
            this.YoungsModulus.Location = new System.Drawing.Point(429, 30);
            this.YoungsModulus.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.YoungsModulus.Name = "YoungsModulus";
            this.YoungsModulus.Size = new System.Drawing.Size(136, 20);
            this.YoungsModulus.TabIndex = 13;
            this.YoungsModulus.UseWaitCursor = true;
            this.YoungsModulus.Value = new decimal(new int[] {
            20237,
            0,
            0,
            65536});
            this.YoungsModulus.Visible = false;
            // 
            // Solid_Density
            // 
            this.Solid_Density.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Solid_Density.DecimalPlaces = 2;
            this.Solid_Density.Location = new System.Drawing.Point(429, 3);
            this.Solid_Density.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.Solid_Density.Name = "Solid_Density";
            this.Solid_Density.Size = new System.Drawing.Size(136, 20);
            this.Solid_Density.TabIndex = 12;
            this.Solid_Density.UseWaitCursor = true;
            this.Solid_Density.Value = new decimal(new int[] {
            9740,
            0,
            0,
            0});
            this.Solid_Density.Visible = false;
            // 
            // PoissonsRatio
            // 
            this.PoissonsRatio.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.PoissonsRatio.DecimalPlaces = 2;
            this.PoissonsRatio.Location = new System.Drawing.Point(429, 57);
            this.PoissonsRatio.Maximum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.PoissonsRatio.Name = "PoissonsRatio";
            this.PoissonsRatio.Size = new System.Drawing.Size(136, 20);
            this.PoissonsRatio.TabIndex = 9;
            this.PoissonsRatio.UseWaitCursor = true;
            this.PoissonsRatio.Value = new decimal(new int[] {
            44,
            0,
            0,
            131072});
            this.PoissonsRatio.Visible = false;
            // 
            // depth
            // 
            this.depth.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.depth.DecimalPlaces = 3;
            this.depth.Location = new System.Drawing.Point(145, 3);
            this.depth.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.depth.Name = "depth";
            this.depth.Size = new System.Drawing.Size(136, 20);
            this.depth.TabIndex = 1;
            this.depth.UseWaitCursor = true;
            this.depth.Value = new decimal(new int[] {
            25,
            0,
            0,
            0});
            this.depth.ValueChanged += new System.EventHandler(this.param_ValueChanged);
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label6.Location = new System.Drawing.Point(3, 0);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(101, 13);
            this.label6.TabIndex = 6;
            this.label6.Text = "Material Depth (mm)";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label11.Location = new System.Drawing.Point(287, 27);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(118, 13);
            this.label11.TabIndex = 9;
            this.label11.Text = "Young\'s Modulus (GPa)";
            this.label11.Visible = false;
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label12.Location = new System.Drawing.Point(287, 54);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(79, 13);
            this.label12.TabIndex = 10;
            this.label12.Text = "Poisson\'s Ratio";
            this.label12.Visible = false;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label13.Location = new System.Drawing.Point(287, 0);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(88, 13);
            this.label13.TabIndex = 11;
            this.label13.Text = "Density (kg/m^3)";
            this.label13.Visible = false;
            // 
            // pitch_label
            // 
            this.pitch_label.AutoSize = true;
            this.pitch_label.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.pitch_label.Location = new System.Drawing.Point(3, 81);
            this.pitch_label.Name = "pitch_label";
            this.pitch_label.Size = new System.Drawing.Size(81, 13);
            this.pitch_label.TabIndex = 4;
            this.pitch_label.Text = "Hole Pitch (mm)";
            this.pitch_label.Visible = false;
            // 
            // diam_label
            // 
            this.diam_label.AutoSize = true;
            this.diam_label.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.diam_label.Location = new System.Drawing.Point(3, 54);
            this.diam_label.Name = "diam_label";
            this.diam_label.Size = new System.Drawing.Size(99, 13);
            this.diam_label.TabIndex = 5;
            this.diam_label.Text = "Hole Diameter (mm)";
            this.diam_label.Visible = false;
            // 
            // pitch
            // 
            this.pitch.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.pitch.DecimalPlaces = 3;
            this.pitch.Location = new System.Drawing.Point(145, 84);
            this.pitch.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.pitch.Name = "pitch";
            this.pitch.Size = new System.Drawing.Size(136, 20);
            this.pitch.TabIndex = 2;
            this.pitch.UseWaitCursor = true;
            this.pitch.Value = new decimal(new int[] {
            25,
            0,
            0,
            0});
            this.pitch.Visible = false;
            this.pitch.ValueChanged += new System.EventHandler(this.param_ValueChanged);
            // 
            // diameter
            // 
            this.diameter.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.diameter.DecimalPlaces = 3;
            this.diameter.Location = new System.Drawing.Point(145, 57);
            this.diameter.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.diameter.Name = "diameter";
            this.diameter.Size = new System.Drawing.Size(136, 20);
            this.diameter.TabIndex = 3;
            this.diameter.UseWaitCursor = true;
            this.diameter.Value = new decimal(new int[] {
            25,
            0,
            0,
            0});
            this.diameter.Visible = false;
            this.diameter.ValueChanged += new System.EventHandler(this.param_ValueChanged);
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label18.Location = new System.Drawing.Point(287, 81);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(111, 13);
            this.label18.TabIndex = 62;
            this.label18.Text = "Speed of Sound (m/s)";
            this.label18.Visible = false;
            // 
            // SoundSpeed
            // 
            this.SoundSpeed.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.SoundSpeed.DecimalPlaces = 2;
            this.SoundSpeed.Location = new System.Drawing.Point(429, 84);
            this.SoundSpeed.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.SoundSpeed.Name = "SoundSpeed";
            this.SoundSpeed.Size = new System.Drawing.Size(136, 20);
            this.SoundSpeed.TabIndex = 63;
            this.SoundSpeed.UseWaitCursor = true;
            this.SoundSpeed.Value = new decimal(new int[] {
            343,
            0,
            0,
            0});
            this.SoundSpeed.Visible = false;
            // 
            // Impedance_Graph
            // 
            this.Impedance_Graph.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Impedance_Graph.BackColor = System.Drawing.Color.Transparent;
            customLabel21.FromPosition = 3.5D;
            customLabel21.Text = "62.5";
            customLabel21.ToPosition = 4.3D;
            customLabel22.FromPosition = 4.2D;
            customLabel22.Text = "125";
            customLabel22.ToPosition = 4.6D;
            customLabel23.FromPosition = 4.8D;
            customLabel23.Text = "250";
            customLabel23.ToPosition = 5.4D;
            customLabel24.FromPosition = 5.45D;
            customLabel24.Text = "500";
            customLabel24.ToPosition = 6D;
            customLabel25.FromPosition = 6.05D;
            customLabel25.Text = "1000";
            customLabel25.ToPosition = 6.7D;
            customLabel26.FromPosition = 6.65D;
            customLabel26.Text = "2000";
            customLabel26.ToPosition = 7.4D;
            customLabel27.FromPosition = 7.2D;
            customLabel27.Text = "4000";
            customLabel27.ToPosition = 8D;
            customLabel28.FromPosition = 7.7D;
            customLabel28.Text = "8000";
            customLabel28.ToPosition = 8.8D;
            chartArea3.AxisX.CustomLabels.Add(customLabel21);
            chartArea3.AxisX.CustomLabels.Add(customLabel22);
            chartArea3.AxisX.CustomLabels.Add(customLabel23);
            chartArea3.AxisX.CustomLabels.Add(customLabel24);
            chartArea3.AxisX.CustomLabels.Add(customLabel25);
            chartArea3.AxisX.CustomLabels.Add(customLabel26);
            chartArea3.AxisX.CustomLabels.Add(customLabel27);
            chartArea3.AxisX.CustomLabels.Add(customLabel28);
            chartArea3.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea3.AxisX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Days;
            chartArea3.AxisX.IsLabelAutoFit = false;
            chartArea3.AxisX.IsLogarithmic = true;
            chartArea3.AxisX.IsStartedFromZero = false;
            chartArea3.AxisX.LabelAutoFitMinFontSize = 5;
            chartArea3.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)(((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep45) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea3.AxisX.LabelStyle.TruncatedLabels = true;
            chartArea3.AxisX.LogarithmBase = 3D;
            chartArea3.AxisX.MajorGrid.Enabled = false;
            chartArea3.AxisX.MajorTickMark.Enabled = false;
            chartArea3.AxisX.Maximum = 10000D;
            chartArea3.AxisX.Minimum = 31.25D;
            chartArea3.AxisX.MinorTickMark.Interval = double.NaN;
            chartArea3.AxisX.MinorTickMark.IntervalOffset = double.NaN;
            chartArea3.AxisX.MinorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea3.AxisX.MinorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea3.AxisX.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Rotated270;
            chartArea3.AxisX2.IsLogarithmic = true;
            chartArea3.AxisY2.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
            chartArea3.AxisY2.LabelAutoFitMinFontSize = 5;
            chartArea3.AxisY2.MajorGrid.LineColor = System.Drawing.Color.DimGray;
            chartArea3.AxisY2.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
            chartArea3.CursorY.IntervalOffset = 5D;
            chartArea3.Name = "ChartArea1";
            this.Impedance_Graph.ChartAreas.Add(chartArea3);
            this.Impedance_Graph.DataSource = this.Alpha_Normal.Images;
            legend3.DockedToChartArea = "ChartArea1";
            legend3.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
            legend3.Name = "Legend1";
            this.Impedance_Graph.Legends.Add(legend3);
            this.Impedance_Graph.Location = new System.Drawing.Point(448, 275);
            this.Impedance_Graph.Name = "Impedance_Graph";
            series21.ChartArea = "ChartArea1";
            series21.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series21.Color = System.Drawing.Color.Blue;
            series21.Legend = "Legend1";
            series21.Name = "Z Real";
            series21.Points.Add(dataPoint21);
            series22.ChartArea = "ChartArea1";
            series22.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series22.Color = System.Drawing.Color.Red;
            series22.Legend = "Legend1";
            series22.MarkerBorderColor = System.Drawing.Color.Red;
            series22.MarkerColor = System.Drawing.Color.Red;
            series22.Name = "Z Imaginary";
            series22.Points.Add(dataPoint22);
            this.Impedance_Graph.Series.Add(series21);
            this.Impedance_Graph.Series.Add(series22);
            this.Impedance_Graph.Size = new System.Drawing.Size(428, 448);
            this.Impedance_Graph.TabIndex = 50;
            this.Impedance_Graph.Text = "Impedance";
            // 
            // label2
            // 
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(609, 275);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(76, 13);
            this.label2.TabIndex = 0;
            this.label2.Text = "Impedance (Z)";
            // 
            // label4
            // 
            this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(124, 275);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(217, 13);
            this.label4.TabIndex = 0;
            this.label4.Text = "Absorption Coefficient By Angle of Incidence";
            // 
            // label5
            // 
            this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(609, 710);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(87, 13);
            this.label5.TabIndex = 0;
            this.label5.Text = "Frequency in Hz.";
            // 
            // label21
            // 
            this.label21.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(918, 12);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(193, 13);
            this.label21.TabIndex = 58;
            this.label21.Text = "-- Rigid Substrate (Infinite Impedance) --";
            // 
            // label22
            // 
            this.label22.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label22.AutoSize = true;
            this.label22.Location = new System.Drawing.Point(918, 210);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(167, 13);
            this.label22.TabIndex = 59;
            this.label22.Text = "-- Incident Side (Air [Z = rho * c)] --";
            // 
            // IIR_Order
            // 
            this.IIR_Order.Location = new System.Drawing.Point(205, 243);
            this.IIR_Order.Name = "IIR_Order";
            this.IIR_Order.Size = new System.Drawing.Size(115, 20);
            this.IIR_Order.TabIndex = 62;
            this.IIR_Order.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.IIR_Order.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            // 
            // label23
            // 
            this.label23.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(124, 245);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(75, 13);
            this.label23.TabIndex = 62;
            this.label23.Text = "IIR Filter Order";
            // 
            // Pach_Absorption_Designer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1462, 742);
            this.Controls.Add(this.label23);
            this.Controls.Add(this.label22);
            this.Controls.Add(this.label21);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.Impedance_Graph);
            this.Controls.Add(this.Physical_Params1);
            this.Controls.Add(this.tableLayoutPanel2);
            this.Controls.Add(this.IIR_Order);
            this.Controls.Add(this.Porous_1Param);
            this.Controls.Add(this.Polar_Absorption);
            this.Controls.Add(this.LayerList);
            this.Controls.Add(this.Alpha_Normal);
            this.Name = "Pach_Absorption_Designer";
            this.Text = "Materials Designer";
            ((System.ComponentModel.ISupportInitialize)(this.Polar_Absorption)).EndInit();
            this.Porous_1Param.ResumeLayout(false);
            this.Porous_1Param.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Porosity_Percent)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Sigma)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ViscousCharacteristicLength)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThermalPermeability)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Tortuosity)).EndInit();
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.XDim)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.YDim)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Alpha_Normal)).EndInit();
            this.Physical_Params1.ResumeLayout(false);
            this.Physical_Params1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.YoungsModulus)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Solid_Density)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PoissonsRatio)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.depth)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pitch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.diameter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoundSpeed)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Impedance_Graph)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.IIR_Order)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

            }
예제 #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.trame_timer                        = new System.Windows.Forms.Timer(this.components);
     this.tabControl1                        = new System.Windows.Forms.TabControl();
     this.tab_measures                       = new System.Windows.Forms.TabPage();
     this.dgv_measures                       = new System.Windows.Forms.DataGridView();
     this.tab_chart                          = new System.Windows.Forms.TabPage();
     this.groupBox2                          = new System.Windows.Forms.GroupBox();
     this.button1                            = new System.Windows.Forms.Button();
     this.cb_idChart                         = new System.Windows.Forms.ComboBox();
     this.lable2                             = new System.Windows.Forms.Label();
     this.chart_measure                      = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tab_idSystem                       = new System.Windows.Forms.TabPage();
     this.dgv_systemID                       = new System.Windows.Forms.DataGridView();
     this.tab_configurations                 = new System.Windows.Forms.TabPage();
     this.dgv_configurations                 = new System.Windows.Forms.DataGridView();
     this.tab_alarms                         = new System.Windows.Forms.TabPage();
     this.dgv_alarm                          = new System.Windows.Forms.DataGridView();
     this.groupBox1                          = new System.Windows.Forms.GroupBox();
     this.bt_deleteAlarm                     = new System.Windows.Forms.Button();
     this.bt_loadAlarm                       = new System.Windows.Forms.Button();
     this.lb_alarmUp                         = new System.Windows.Forms.Label();
     this.lb_alarmBelow                      = new System.Windows.Forms.Label();
     this.lb_alarmID                         = new System.Windows.Forms.Label();
     this.lb_maxMeasure                      = new System.Windows.Forms.Label();
     this.label3                             = new System.Windows.Forms.Label();
     this.tb_alarmUp                         = new System.Windows.Forms.TextBox();
     this.lb_minMeasure                      = new System.Windows.Forms.Label();
     this.label1                             = new System.Windows.Forms.Label();
     this.tb_alarmBelow                      = new System.Windows.Forms.TextBox();
     this.cb_alarmID                         = new System.Windows.Forms.ComboBox();
     this.menuStrip1                         = new System.Windows.Forms.MenuStrip();
     this.fichierToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.configurationToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.connexionToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.deconnexionToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.créeUnUtilisateurToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.watchdog_timer                     = new System.Windows.Forms.Timer(this.components);
     this.tabControl1.SuspendLayout();
     this.tab_measures.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_measures)).BeginInit();
     this.tab_chart.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart_measure)).BeginInit();
     this.tab_idSystem.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_systemID)).BeginInit();
     this.tab_configurations.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_configurations)).BeginInit();
     this.tab_alarms.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_alarm)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // trame_timer
     //
     this.trame_timer.Enabled  = true;
     this.trame_timer.Interval = 1000;
     this.trame_timer.Tick    += new System.EventHandler(this.sendTrame);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tab_measures);
     this.tabControl1.Controls.Add(this.tab_chart);
     this.tabControl1.Controls.Add(this.tab_idSystem);
     this.tabControl1.Controls.Add(this.tab_configurations);
     this.tabControl1.Controls.Add(this.tab_alarms);
     this.tabControl1.Location      = new System.Drawing.Point(9, 39);
     this.tabControl1.Margin        = new System.Windows.Forms.Padding(2);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(932, 544);
     this.tabControl1.TabIndex      = 0;
     //
     // tab_measures
     //
     this.tab_measures.Controls.Add(this.dgv_measures);
     this.tab_measures.Location = new System.Drawing.Point(4, 22);
     this.tab_measures.Margin   = new System.Windows.Forms.Padding(2);
     this.tab_measures.Name     = "tab_measures";
     this.tab_measures.Padding  = new System.Windows.Forms.Padding(2);
     this.tab_measures.Size     = new System.Drawing.Size(924, 518);
     this.tab_measures.TabIndex = 0;
     this.tab_measures.Text     = "Measures";
     this.tab_measures.UseVisualStyleBackColor = true;
     //
     // dgv_measures
     //
     this.dgv_measures.AllowUserToAddRows          = false;
     this.dgv_measures.AllowUserToDeleteRows       = false;
     this.dgv_measures.AllowUserToResizeColumns    = false;
     this.dgv_measures.AllowUserToResizeRows       = false;
     this.dgv_measures.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_measures.Location           = new System.Drawing.Point(-3, 0);
     this.dgv_measures.Margin             = new System.Windows.Forms.Padding(2);
     this.dgv_measures.Name               = "dgv_measures";
     this.dgv_measures.RowHeadersVisible  = false;
     this.dgv_measures.RowHeadersWidth    = 51;
     this.dgv_measures.RowTemplate.Height = 24;
     this.dgv_measures.Size               = new System.Drawing.Size(929, 434);
     this.dgv_measures.TabIndex           = 0;
     //
     // tab_chart
     //
     this.tab_chart.Controls.Add(this.groupBox2);
     this.tab_chart.Controls.Add(this.chart_measure);
     this.tab_chart.Location = new System.Drawing.Point(4, 22);
     this.tab_chart.Margin   = new System.Windows.Forms.Padding(2);
     this.tab_chart.Name     = "tab_chart";
     this.tab_chart.Padding  = new System.Windows.Forms.Padding(2);
     this.tab_chart.Size     = new System.Drawing.Size(924, 518);
     this.tab_chart.TabIndex = 1;
     this.tab_chart.Text     = "Chart";
     this.tab_chart.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Gainsboro;
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.cb_idChart);
     this.groupBox2.Controls.Add(this.lable2);
     this.groupBox2.Location = new System.Drawing.Point(16, 451);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(876, 62);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "ID";
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.White;
     this.button1.Location  = new System.Drawing.Point(320, 19);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(124, 31);
     this.button1.TabIndex  = 2;
     this.button1.Text      = "Save";
     this.button1.UseVisualStyleBackColor = false;
     //
     // cb_idChart
     //
     this.cb_idChart.FormattingEnabled = true;
     this.cb_idChart.Location          = new System.Drawing.Point(114, 25);
     this.cb_idChart.Name                  = "cb_idChart";
     this.cb_idChart.Size                  = new System.Drawing.Size(200, 21);
     this.cb_idChart.TabIndex              = 1;
     this.cb_idChart.SelectedIndexChanged += new System.EventHandler(this.onChartIDSelected);
     //
     // lable2
     //
     this.lable2.AutoSize = true;
     this.lable2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lable2.Location = new System.Drawing.Point(7, 25);
     this.lable2.Name     = "lable2";
     this.lable2.Size     = new System.Drawing.Size(101, 20);
     this.lable2.TabIndex = 0;
     this.lable2.Text     = "ID selection :";
     //
     // chart_measure
     //
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.Interval           = 1D;
     chartArea1.AxisX.IntervalOffset     = 1D;
     chartArea1.AxisX.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
     chartArea1.Name = "ChartArea1";
     this.chart_measure.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart_measure.Legends.Add(legend1);
     this.chart_measure.Location = new System.Drawing.Point(0, 0);
     this.chart_measure.Name     = "chart_measure";
     series1.ChartArea           = "ChartArea1";
     series1.ChartType           = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Legend = "Legend1";
     series1.Name   = "Mesure";
     this.chart_measure.Series.Add(series1);
     this.chart_measure.Size     = new System.Drawing.Size(921, 469);
     this.chart_measure.TabIndex = 0;
     this.chart_measure.Text     = "Measure";
     //
     // tab_idSystem
     //
     this.tab_idSystem.Controls.Add(this.dgv_systemID);
     this.tab_idSystem.Location = new System.Drawing.Point(4, 22);
     this.tab_idSystem.Margin   = new System.Windows.Forms.Padding(2);
     this.tab_idSystem.Name     = "tab_idSystem";
     this.tab_idSystem.Size     = new System.Drawing.Size(924, 518);
     this.tab_idSystem.TabIndex = 2;
     this.tab_idSystem.Text     = "ID System";
     this.tab_idSystem.UseVisualStyleBackColor = true;
     //
     // dgv_systemID
     //
     this.dgv_systemID.AllowUserToAddRows          = false;
     this.dgv_systemID.AllowUserToDeleteRows       = false;
     this.dgv_systemID.AllowUserToResizeColumns    = false;
     this.dgv_systemID.AllowUserToResizeRows       = false;
     this.dgv_systemID.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_systemID.Location          = new System.Drawing.Point(3, 3);
     this.dgv_systemID.Name              = "dgv_systemID";
     this.dgv_systemID.RowHeadersVisible = false;
     this.dgv_systemID.Size              = new System.Drawing.Size(918, 512);
     this.dgv_systemID.TabIndex          = 0;
     //
     // tab_configurations
     //
     this.tab_configurations.Controls.Add(this.dgv_configurations);
     this.tab_configurations.Location = new System.Drawing.Point(4, 22);
     this.tab_configurations.Margin   = new System.Windows.Forms.Padding(2);
     this.tab_configurations.Name     = "tab_configurations";
     this.tab_configurations.Size     = new System.Drawing.Size(924, 518);
     this.tab_configurations.TabIndex = 3;
     this.tab_configurations.Text     = "Configurations";
     this.tab_configurations.UseVisualStyleBackColor = true;
     //
     // dgv_configurations
     //
     this.dgv_configurations.AllowUserToAddRows          = false;
     this.dgv_configurations.AllowUserToDeleteRows       = false;
     this.dgv_configurations.AllowUserToResizeColumns    = false;
     this.dgv_configurations.AllowUserToResizeRows       = false;
     this.dgv_configurations.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_configurations.Location           = new System.Drawing.Point(-3, 0);
     this.dgv_configurations.Margin             = new System.Windows.Forms.Padding(2);
     this.dgv_configurations.Name               = "dgv_configurations";
     this.dgv_configurations.RowHeadersVisible  = false;
     this.dgv_configurations.RowHeadersWidth    = 51;
     this.dgv_configurations.RowTemplate.Height = 24;
     this.dgv_configurations.Size               = new System.Drawing.Size(927, 553);
     this.dgv_configurations.TabIndex           = 0;
     //
     // tab_alarms
     //
     this.tab_alarms.Controls.Add(this.dgv_alarm);
     this.tab_alarms.Controls.Add(this.groupBox1);
     this.tab_alarms.Location = new System.Drawing.Point(4, 22);
     this.tab_alarms.Margin   = new System.Windows.Forms.Padding(2);
     this.tab_alarms.Name     = "tab_alarms";
     this.tab_alarms.Size     = new System.Drawing.Size(924, 518);
     this.tab_alarms.TabIndex = 4;
     this.tab_alarms.Text     = "Alarms";
     this.tab_alarms.UseVisualStyleBackColor = true;
     //
     // dgv_alarm
     //
     this.dgv_alarm.AllowUserToAddRows          = false;
     this.dgv_alarm.AllowUserToDeleteRows       = false;
     this.dgv_alarm.AllowUserToResizeColumns    = false;
     this.dgv_alarm.AllowUserToResizeRows       = false;
     this.dgv_alarm.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_alarm.Location          = new System.Drawing.Point(3, 124);
     this.dgv_alarm.Name              = "dgv_alarm";
     this.dgv_alarm.RowHeadersVisible = false;
     this.dgv_alarm.Size              = new System.Drawing.Size(918, 391);
     this.dgv_alarm.TabIndex          = 1;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Gainsboro;
     this.groupBox1.Controls.Add(this.bt_deleteAlarm);
     this.groupBox1.Controls.Add(this.bt_loadAlarm);
     this.groupBox1.Controls.Add(this.lb_alarmUp);
     this.groupBox1.Controls.Add(this.lb_alarmBelow);
     this.groupBox1.Controls.Add(this.lb_alarmID);
     this.groupBox1.Controls.Add(this.lb_maxMeasure);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.tb_alarmUp);
     this.groupBox1.Controls.Add(this.lb_minMeasure);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.tb_alarmBelow);
     this.groupBox1.Controls.Add(this.cb_alarmID);
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(918, 115);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Configutation";
     //
     // bt_deleteAlarm
     //
     this.bt_deleteAlarm.Location = new System.Drawing.Point(256, 79);
     this.bt_deleteAlarm.Name     = "bt_deleteAlarm";
     this.bt_deleteAlarm.Size     = new System.Drawing.Size(86, 30);
     this.bt_deleteAlarm.TabIndex = 11;
     this.bt_deleteAlarm.Text     = "Delete";
     this.bt_deleteAlarm.UseVisualStyleBackColor = true;
     //
     // bt_loadAlarm
     //
     this.bt_loadAlarm.Location = new System.Drawing.Point(164, 79);
     this.bt_loadAlarm.Name     = "bt_loadAlarm";
     this.bt_loadAlarm.Size     = new System.Drawing.Size(86, 30);
     this.bt_loadAlarm.TabIndex = 10;
     this.bt_loadAlarm.Text     = "Load";
     this.bt_loadAlarm.UseVisualStyleBackColor = true;
     this.bt_loadAlarm.Click += new System.EventHandler(this.onAlarmLoaded);
     //
     // lb_alarmUp
     //
     this.lb_alarmUp.AutoSize = true;
     this.lb_alarmUp.Location = new System.Drawing.Point(531, 24);
     this.lb_alarmUp.Name     = "lb_alarmUp";
     this.lb_alarmUp.Size     = new System.Drawing.Size(54, 13);
     this.lb_alarmUp.TabIndex = 9;
     this.lb_alarmUp.Text     = "Alarm up :";
     //
     // lb_alarmBelow
     //
     this.lb_alarmBelow.AutoSize = true;
     this.lb_alarmBelow.Location = new System.Drawing.Point(253, 24);
     this.lb_alarmBelow.Name     = "lb_alarmBelow";
     this.lb_alarmBelow.Size     = new System.Drawing.Size(70, 13);
     this.lb_alarmBelow.TabIndex = 8;
     this.lb_alarmBelow.Text     = "Alarm below :";
     //
     // lb_alarmID
     //
     this.lb_alarmID.AutoSize = true;
     this.lb_alarmID.Location = new System.Drawing.Point(129, 24);
     this.lb_alarmID.Name     = "lb_alarmID";
     this.lb_alarmID.Size     = new System.Drawing.Size(18, 13);
     this.lb_alarmID.TabIndex = 7;
     this.lb_alarmID.Text     = "ID";
     //
     // lb_maxMeasure
     //
     this.lb_maxMeasure.AutoSize = true;
     this.lb_maxMeasure.Location = new System.Drawing.Point(701, 53);
     this.lb_maxMeasure.Name     = "lb_maxMeasure";
     this.lb_maxMeasure.Size     = new System.Drawing.Size(67, 13);
     this.lb_maxMeasure.TabIndex = 6;
     this.lb_maxMeasure.Text     = "maxMeasure";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(641, 53);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(53, 13);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Low limit :";
     //
     // tb_alarmUp
     //
     this.tb_alarmUp.Location = new System.Drawing.Point(534, 47);
     this.tb_alarmUp.Name     = "tb_alarmUp";
     this.tb_alarmUp.Size     = new System.Drawing.Size(100, 20);
     this.tb_alarmUp.TabIndex = 4;
     //
     // lb_minMeasure
     //
     this.lb_minMeasure.AutoSize = true;
     this.lb_minMeasure.Location = new System.Drawing.Point(423, 50);
     this.lb_minMeasure.Name     = "lb_minMeasure";
     this.lb_minMeasure.Size     = new System.Drawing.Size(64, 13);
     this.lb_minMeasure.TabIndex = 3;
     this.lb_minMeasure.Text     = "minMesaure";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(363, 50);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(53, 13);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Low limit :";
     //
     // tb_alarmBelow
     //
     this.tb_alarmBelow.Location = new System.Drawing.Point(256, 44);
     this.tb_alarmBelow.Name     = "tb_alarmBelow";
     this.tb_alarmBelow.Size     = new System.Drawing.Size(100, 20);
     this.tb_alarmBelow.TabIndex = 1;
     //
     // cb_alarmID
     //
     this.cb_alarmID.FormattingEnabled = true;
     this.cb_alarmID.Location          = new System.Drawing.Point(129, 43);
     this.cb_alarmID.Name                  = "cb_alarmID";
     this.cb_alarmID.Size                  = new System.Drawing.Size(121, 21);
     this.cb_alarmID.TabIndex              = 0;
     this.cb_alarmID.SelectedValueChanged += new System.EventHandler(this.onSelectedAlarmIDChanged);
     //
     // menuStrip1
     //
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fichierToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Padding  = new System.Windows.Forms.Padding(4, 2, 0, 2);
     this.menuStrip1.Size     = new System.Drawing.Size(950, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fichierToolStripMenuItem
     //
     this.fichierToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.configurationToolStripMenuItem,
         this.connexionToolStripMenuItem,
         this.deconnexionToolStripMenuItem,
         this.créeUnUtilisateurToolStripMenuItem
     });
     this.fichierToolStripMenuItem.Name = "fichierToolStripMenuItem";
     this.fichierToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.fichierToolStripMenuItem.Text = "Fichier";
     //
     // configurationToolStripMenuItem
     //
     this.configurationToolStripMenuItem.Name   = "configurationToolStripMenuItem";
     this.configurationToolStripMenuItem.Size   = new System.Drawing.Size(170, 22);
     this.configurationToolStripMenuItem.Text   = "Configuration";
     this.configurationToolStripMenuItem.Click += new System.EventHandler(this.goToConfigurationForm);
     //
     // connexionToolStripMenuItem
     //
     this.connexionToolStripMenuItem.Name   = "connexionToolStripMenuItem";
     this.connexionToolStripMenuItem.Size   = new System.Drawing.Size(170, 22);
     this.connexionToolStripMenuItem.Text   = "Connexion";
     this.connexionToolStripMenuItem.Click += new System.EventHandler(this.goToAuthenticationForm);
     //
     // deconnexionToolStripMenuItem
     //
     this.deconnexionToolStripMenuItem.Name   = "deconnexionToolStripMenuItem";
     this.deconnexionToolStripMenuItem.Size   = new System.Drawing.Size(170, 22);
     this.deconnexionToolStripMenuItem.Text   = "Deconnexion";
     this.deconnexionToolStripMenuItem.Click += new System.EventHandler(this.onDisconnect);
     //
     // créeUnUtilisateurToolStripMenuItem
     //
     this.créeUnUtilisateurToolStripMenuItem.Name   = "créeUnUtilisateurToolStripMenuItem";
     this.créeUnUtilisateurToolStripMenuItem.Size   = new System.Drawing.Size(170, 22);
     this.créeUnUtilisateurToolStripMenuItem.Text   = "Crée un utilisateur";
     this.créeUnUtilisateurToolStripMenuItem.Click += new System.EventHandler(this.goToUserCreationForm);
     //
     // watchdog_timer
     //
     this.watchdog_timer.Interval = 10000;
     this.watchdog_timer.Tick    += new System.EventHandler(this.sendWatchdog);
     //
     // Interface
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.ClientSize          = new System.Drawing.Size(950, 593);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Margin        = new System.Windows.Forms.Padding(2);
     this.Name          = "Interface";
     this.Text          = "Interface";
     this.Load         += new System.EventHandler(this.Interface_Load);
     this.tabControl1.ResumeLayout(false);
     this.tab_measures.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_measures)).EndInit();
     this.tab_chart.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart_measure)).EndInit();
     this.tab_idSystem.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_systemID)).EndInit();
     this.tab_configurations.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_configurations)).EndInit();
     this.tab_alarms.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_alarm)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCliente));
     this.chartCobroAnoActual = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label1           = new System.Windows.Forms.Label();
     this.txtTotalHombres  = new System.Windows.Forms.TextBox();
     this.txtMujeres       = new System.Windows.Forms.TextBox();
     this.label2           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.txtExtrajeros    = new System.Windows.Forms.TextBox();
     this.tabControl1      = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.tabPage2         = new System.Windows.Forms.TabPage();
     this.chartRangoEdades = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.txtClientesTotal = new System.Windows.Forms.TextBox();
     this.label4           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartRangoEdades)).BeginInit();
     this.SuspendLayout();
     //
     // chartCobroAnoActual
     //
     this.chartCobroAnoActual.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     chartArea1.AxisX.MajorGrid.Enabled = false;
     chartArea1.AxisY.MajorGrid.Enabled = false;
     chartArea1.Name = "ChartArea1";
     this.chartCobroAnoActual.ChartAreas.Add(chartArea1);
     legend1.Name  = "Legend1";
     legend1.Title = "Personas por Ciudad";
     this.chartCobroAnoActual.Legends.Add(legend1);
     this.chartCobroAnoActual.Location = new System.Drawing.Point(0, 103);
     this.chartCobroAnoActual.Name     = "chartCobroAnoActual";
     this.chartCobroAnoActual.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.ChartArea           = "ChartArea1";
     series1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.IsValueShownAsLabel = true;
     series1.Legend              = "Legend1";
     series1.MarkerSize          = 7;
     series1.MarkerStep          = 4;
     series1.Name                = "Personas";
     series1.XValueMember        = "Ciudad";
     series1.YValueMembers       = "Cantidad";
     this.chartCobroAnoActual.Series.Add(series1);
     this.chartCobroAnoActual.Size     = new System.Drawing.Size(777, 371);
     this.chartCobroAnoActual.TabIndex = 3;
     this.chartCobroAnoActual.Text     = "chart2";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 34);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(82, 13);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Total Hombres :";
     //
     // txtTotalHombres
     //
     this.txtTotalHombres.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtTotalHombres.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtTotalHombres.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotalHombres.Location    = new System.Drawing.Point(113, 34);
     this.txtTotalHombres.Name        = "txtTotalHombres";
     this.txtTotalHombres.ReadOnly    = true;
     this.txtTotalHombres.Size        = new System.Drawing.Size(63, 13);
     this.txtTotalHombres.TabIndex    = 0;
     //
     // txtMujeres
     //
     this.txtMujeres.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtMujeres.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtMujeres.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMujeres.Location    = new System.Drawing.Point(275, 34);
     this.txtMujeres.Name        = "txtMujeres";
     this.txtMujeres.ReadOnly    = true;
     this.txtMujeres.Size        = new System.Drawing.Size(63, 13);
     this.txtMujeres.TabIndex    = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(192, 34);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(77, 13);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Total Mujeres :";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(579, 34);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(92, 13);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Total Extranjeros :";
     //
     // txtExtrajeros
     //
     this.txtExtrajeros.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtExtrajeros.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtExtrajeros.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExtrajeros.Location    = new System.Drawing.Point(677, 34);
     this.txtExtrajeros.Name        = "txtExtrajeros";
     this.txtExtrajeros.ReadOnly    = true;
     this.txtExtrajeros.Size        = new System.Drawing.Size(63, 13);
     this.txtExtrajeros.TabIndex    = 2;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(781, 503);
     this.tabControl1.TabIndex      = 10;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.txtClientesTotal);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.chartCobroAnoActual);
     this.tabPage1.Controls.Add(this.txtExtrajeros);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.txtTotalHombres);
     this.tabPage1.Controls.Add(this.txtMujeres);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(773, 477);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "General";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.chartRangoEdades);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(773, 477);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Edad";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // chartRangoEdades
     //
     customLabel1.Text = "1";
     customLabel2.Text = "2";
     customLabel3.Text = "3";
     customLabel4.Text = "4";
     chartArea2.AxisX.CustomLabels.Add(customLabel1);
     chartArea2.AxisX.CustomLabels.Add(customLabel2);
     chartArea2.AxisX.CustomLabels.Add(customLabel3);
     chartArea2.AxisX.CustomLabels.Add(customLabel4);
     chartArea2.AxisX.StripLines.Add(stripLine1);
     chartArea2.AxisX.Title          = "relative";
     chartArea2.AxisX.TitleAlignment = System.Drawing.StringAlignment.Far;
     customLabel5.LabelMark          = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel5.Text      = "YText0";
     customLabel6.LabelMark = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.LineSideMark;
     customLabel6.RowIndex  = 1;
     customLabel6.Text      = "YText2";
     chartArea2.AxisY.CustomLabels.Add(customLabel5);
     chartArea2.AxisY.CustomLabels.Add(customLabel6);
     chartArea2.AxisY.Title = "Titulo Y";
     chartArea2.Name        = "ChartArea1";
     this.chartRangoEdades.ChartAreas.Add(chartArea2);
     this.chartRangoEdades.ImeMode = System.Windows.Forms.ImeMode.Disable;
     legend2.Name  = "Legend1";
     legend2.Title = "Personas En Rango Edad";
     this.chartRangoEdades.Legends.Add(legend2);
     this.chartRangoEdades.Location = new System.Drawing.Point(-4, 0);
     this.chartRangoEdades.Name     = "chartRangoEdades";
     this.chartRangoEdades.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series2.ChartArea           = "ChartArea1";
     series2.ChartType           = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
     series2.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.IsValueShownAsLabel = true;
     series2.Legend              = "Legend1";
     series2.Name                = "Series1";
     series2.XValueType          = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     this.chartRangoEdades.Series.Add(series2);
     this.chartRangoEdades.Size     = new System.Drawing.Size(777, 393);
     this.chartRangoEdades.TabIndex = 0;
     this.chartRangoEdades.Text     = "chart1";
     //
     // txtClientesTotal
     //
     this.txtClientesTotal.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtClientesTotal.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtClientesTotal.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtClientesTotal.Location    = new System.Drawing.Point(486, 34);
     this.txtClientesTotal.Name        = "txtClientesTotal";
     this.txtClientesTotal.ReadOnly    = true;
     this.txtClientesTotal.Size        = new System.Drawing.Size(63, 13);
     this.txtClientesTotal.TabIndex    = 10;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(344, 34);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(136, 13);
     this.label4.TabIndex = 11;
     this.label4.Text     = "Total Clientes Registrados :";
     //
     // frmCliente
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize          = new System.Drawing.Size(784, 504);
     this.Controls.Add(this.tabControl1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "frmCliente";
     this.Text  = "Reporte cliente";
     this.Load += new System.EventHandler(this.frmCliente_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartRangoEdades)).EndInit();
     this.ResumeLayout(false);
 }
예제 #38
0
        private void btnRun_Click(object sender, EventArgs e)
        {
            if (cboFldnm1.Text == "" || cboFldnm2.Text == "")
            {
                MessageBox.Show("Please select target field");
                return;
            }

            frmProgress pfrmProgress = new frmProgress();

            pfrmProgress.lblStatus.Text    = "Processing:";
            pfrmProgress.pgbProgress.Style = ProgressBarStyle.Marquee;
            pfrmProgress.Show();

            REngine pEngine = m_pForm.pEngine;

            int nFeature = m_pFClass.FeatureCount(null);

            IFeatureCursor pFCursor = m_pFClass.Search(null, true);
            IFeature       pFeature = pFCursor.NextFeature();

            //Get index for independent and dependent variables
            //Get variable index
            string strVarNM1  = (string)cboFldnm1.SelectedItem;
            string strVarNM2  = (string)cboFldnm2.SelectedItem;
            int    intVarIdx1 = m_pFClass.FindField(strVarNM1);
            int    intVarIdx2 = m_pFClass.FindField(strVarNM2);
            int    intFIDIdx  = m_pFClass.FindField(m_pFClass.OIDFieldName);

            //Store Variable at Array
            double[] arrVar1 = new double[nFeature];
            double[] arrVar2 = new double[nFeature];

            int[] arrFID = new int[nFeature];

            int i = 0;

            while (pFeature != null)
            {
                arrVar1[i] = Convert.ToDouble(pFeature.get_Value(intVarIdx1));
                arrVar2[i] = Convert.ToDouble(pFeature.get_Value(intVarIdx2));
                arrFID[i]  = Convert.ToInt32(pFeature.get_Value(intFIDIdx));
                i++;
                pFeature = pFCursor.NextFeature();
            }

            pFCursor.Flush();

            //Plot command for R
            StringBuilder plotCommmand = new StringBuilder();

            string strStartPath = m_pForm.strPath;
            string pathr        = strStartPath.Replace(@"\", @"/");

            pEngine.Evaluate("source('" + pathr + "/ESDA_LEE/AllFunctions_LARRY.R')");
            pEngine.Evaluate("source('" + pathr + "/ESDA_LEE/AllFunctions_neighbor.R')");
            pEngine.Evaluate("source('" + pathr + "/ESDA_LEE/AllFunctions_SASbi.R')");

            //Get the file path and name to create spatial weight matrix
            string strNameR = m_pSnippet.FilePathinRfromLayer(m_pFLayer);

            if (strNameR == null)
            {
                return;
            }

            //Create spatial weight matrix in R
            pEngine.Evaluate("library(spdep); library(maptools)");
            pEngine.Evaluate("sample.shp <- readShapePoly('" + strNameR + "')");
            //pEngine.Evaluate("sample.nb <- poly2nb(sample.shp, queen=FALSE)");
            pEngine.Evaluate("sample.nb <- poly2nb(sample.shp)");

            NumericVector vecVar1 = pEngine.CreateNumericVector(arrVar1);

            pEngine.SetSymbol("sample.v1", vecVar1);
            NumericVector vecVar2 = pEngine.CreateNumericVector(arrVar2);

            pEngine.SetSymbol("sample.v2", vecVar2);

            string strNonZero = null;

            if (chkDiagZero.Checked)
            {
                strNonZero = "FALSE";
            }
            else
            {
                strNonZero = "TRUE";
            }

            string[] strSPQuadrants = null;

            double[]      adblVar1 = null;
            double[]      adblVar2 = null;
            NumericVector vecCoeff = null;

            if (cboMeasure.Text == "Lee's L")
            {
                pEngine.Evaluate("sample.result <- LARRY.bivariate.quadrant.lee(sample.v1, sample.v2, 1:length(sample.nb), sample.nb, style = 'W', diag.zero = " + strNonZero + ")");
                strSPQuadrants = pEngine.Evaluate("as.character(sample.result$quad)").AsCharacter().ToArray();
                if (chkScatterplot.Checked)
                {
                    adblVar1 = pEngine.Evaluate("as.numeric(sample.result$v.z.x)").AsNumeric().ToArray();
                    adblVar2 = pEngine.Evaluate("as.numeric(sample.result$v.z.y)").AsNumeric().ToArray();
                    vecCoeff = pEngine.Evaluate("lm(sample.result$v.z.y~sample.result$v.z.x)$coefficients").AsNumeric();
                }
            }
            else if (cboMeasure.Text == "Local Pearson")
            {
                pEngine.Evaluate("sample.result <- LARRY.bivariate.quadrant.pearson(sample.v1, sample.v2, 1:length(sample.nb))");
                strSPQuadrants = pEngine.Evaluate("as.character(sample.result$quad)").AsCharacter().ToArray();
                if (chkScatterplot.Checked)
                {
                    adblVar1 = pEngine.Evaluate("as.numeric(sample.result$z.x)").AsNumeric().ToArray();
                    adblVar2 = pEngine.Evaluate("as.numeric(sample.result$z.y)").AsNumeric().ToArray();
                    vecCoeff = pEngine.Evaluate("lm(sample.result$z.y~sample.result$z.x)$coefficients").AsNumeric();
                }
            }

            //Save Output on SHP
            //Add Target fields to store results in the shapefile // Keep loop
            for (int j = 0; j < 1; j++)
            {
                string strfldName = lvFields.Items[j].SubItems[1].Text;
                if (m_pFClass.FindField(strfldName) == -1)
                {
                    IField     newField  = new FieldClass();
                    IFieldEdit fieldEdit = (IFieldEdit)newField;
                    fieldEdit.Name_2 = strfldName;
                    fieldEdit.Type_2 = esriFieldType.esriFieldTypeString;
                    m_pFClass.AddField(newField);
                }
            }

            //Update Field
            pFCursor = m_pFClass.Update(null, false);
            pFeature = pFCursor.NextFeature();

            string strSpQuadFldName = lvFields.Items[0].SubItems[1].Text;
            int    intSpQuadFldIdx  = m_pFClass.FindField(strSpQuadFldName);

            int featureIdx = 0;

            while (pFeature != null)
            {
                pFeature.set_Value(intSpQuadFldIdx, strSPQuadrants[featureIdx]);

                pFCursor.UpdateFeature(pFeature);

                pFeature = pFCursor.NextFeature();
                featureIdx++;
            }
            pFCursor.Flush();

            if (chkMap.Checked)
            {
                ITable pTable = (ITable)m_pFClass;

                IUniqueValueRenderer pUniqueValueRenderer = new UniqueValueRendererClass();
                pUniqueValueRenderer.FieldCount = 1;
                pUniqueValueRenderer.set_Field(0, strSpQuadFldName);

                if (cboMaptype.Text == "choropleth map")
                {
                    ISimpleFillSymbol pSymbol;
                    IQueryFilter      pQFilter = new QueryFilterClass();
                    int    intTotalCount       = 0;
                    string strLabel            = null;

                    for (int j = 0; j < 4; j++)
                    {
                        pSymbol       = new SimpleFillSymbolClass();
                        pSymbol.Style = esriSimpleFillStyle.esriSFSSolid;
                        pSymbol.Color = m_pSnippet.getRGB(m_pQuadrantSymbols[j].R, m_pQuadrantSymbols[j].G, m_pQuadrantSymbols[j].B);

                        pQFilter.WhereClause = strSpQuadFldName + " = '" + m_pQuadrantSymbols[j].Value + "'";

                        intTotalCount = pTable.RowCount(pQFilter);

                        strLabel = m_pQuadrantSymbols[j].Label + " (" + intTotalCount.ToString() + ")";
                        pUniqueValueRenderer.AddValue(m_pQuadrantSymbols[j].Value, null, (ISymbol)pSymbol);
                        pUniqueValueRenderer.set_Label(m_pQuadrantSymbols[j].Value, strLabel);
                    }
                    pUniqueValueRenderer.UseDefaultSymbol = false;
                }
                else if (cboMaptype.Text == "point map")
                {
                    ICharacterMarkerSymbol pSymbol;
                    stdole.IFontDisp       stdFontCls = ((stdole.IFontDisp)(new stdole.StdFont()));
                    stdFontCls.Name = "ESRI NIMA VMAP1&2 PT";
                    stdFontCls.Size = 10;

                    IQueryFilter pQFilter      = new QueryFilterClass();
                    int          intTotalCount = 0;
                    string       strLabel      = null;

                    for (int j = 0; j < 4; j++)
                    {
                        pSymbol = new CharacterMarkerSymbolClass();
                        pSymbol.CharacterIndex = 248;
                        //pSymbol.Color = m_pSnippet.getRGB(m_pQuadrantSymbols[j].R, m_pQuadrantSymbols[j].G, m_pQuadrantSymbols[j].B);
                        pSymbol.Size = 10;
                        pSymbol.Font = stdFontCls;

                        pSymbol.Angle = m_pQuadrantSymbols[j].Angle;

                        //Create a Fill Symbol for the Mask
                        ISimpleFillSymbol smpFill = new SimpleFillSymbol();
                        smpFill.Color = m_pSnippet.getRGB(0, 0, 0);
                        smpFill.Style = esriSimpleFillStyle.esriSFSSolid;
                        //Create a MultiLayerMarkerSymbol
                        IMultiLayerMarkerSymbol multiLyrMrk = new MultiLayerMarkerSymbol();
                        //Add the simple marker to the MultiLayer
                        multiLyrMrk.AddLayer(pSymbol);
                        //Create a Mask for the MultiLayerMarkerSymbol
                        IMask mrkMask = (IMask)multiLyrMrk;
                        mrkMask.MaskSymbol = smpFill;
                        mrkMask.MaskStyle  = esriMaskStyle.esriMSHalo;
                        mrkMask.MaskSize   = 0.5;

                        pQFilter.WhereClause = strSpQuadFldName + " = '" + m_pQuadrantSymbols[j].Value + "'";

                        intTotalCount = pTable.RowCount(pQFilter);

                        strLabel = m_pQuadrantSymbols[j].Label + " (" + intTotalCount.ToString() + ")";
                        pUniqueValueRenderer.AddValue(m_pQuadrantSymbols[j].Value, null, (ISymbol)multiLyrMrk);
                        pUniqueValueRenderer.set_Label(m_pQuadrantSymbols[j].Value, strLabel);
                    }
                    pUniqueValueRenderer.UseDefaultSymbol = false;
                }
                IFeatureLayer pNewFLayer = new FeatureLayerClass();
                pNewFLayer.FeatureClass = m_pFClass;
                pNewFLayer.Name         = "Bivariate Spatial Quadrants";
                IGeoFeatureLayer pGFLayer = (IGeoFeatureLayer)pNewFLayer;
                pGFLayer.Renderer = (IFeatureRenderer)pUniqueValueRenderer;
                m_pActiveView.FocusMap.AddLayer(pGFLayer);
                m_pActiveView.Refresh();
                m_pForm.axTOCControl1.Update();
            }

            if (chkScatterplot.Checked)
            {
                frmMScatterResults pfrmMScatterResult = new frmMScatterResults();
                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.IsStartedFromZero = false;
                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.IsMarginVisible   = true;

                pfrmMScatterResult.pChart.ChartAreas[0].AxisY.IsStartedFromZero = false;

                pfrmMScatterResult.Text = cboMeasure.Text + " Scatter Plot of " + m_pFLayer.Name;
                pfrmMScatterResult.pChart.Series.Clear();
                System.Drawing.Color pMarkerColor = System.Drawing.Color.Blue;
                var seriesPts = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name              = "Points",
                    Color             = pMarkerColor,
                    BorderColor       = pMarkerColor,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point,
                    MarkerStyle       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle
                };

                pfrmMScatterResult.pChart.Series.Add(seriesPts);

                for (int j = 0; j < adblVar1.Length; j++)
                {
                    seriesPts.Points.AddXY(adblVar1[j], adblVar2[j]);
                }

                var VLine = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name            = "VLine",
                    Color           = System.Drawing.Color.Black,
                    BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash,
                    //BorderColor = System.Drawing.Color.Black,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line
                };
                pfrmMScatterResult.pChart.Series.Add(VLine);

                VLine.Points.AddXY(adblVar1.Average(), adblVar2.Min());
                VLine.Points.AddXY(adblVar1.Average(), adblVar2.Max());

                var HLine = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name            = "HLine",
                    Color           = System.Drawing.Color.Black,
                    BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash,
                    //BorderColor = System.Drawing.Color.Black,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line
                };
                pfrmMScatterResult.pChart.Series.Add(HLine);

                HLine.Points.AddXY(adblVar1.Min(), adblVar2.Average());
                HLine.Points.AddXY(adblVar1.Max(), adblVar2.Average());

                var seriesLine = new System.Windows.Forms.DataVisualization.Charting.Series
                {
                    Name  = "RegLine",
                    Color = System.Drawing.Color.Red,
                    //BorderColor = System.Drawing.Color.Black,
                    IsVisibleInLegend = false,
                    IsXValueIndexed   = false,
                    ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line
                };

                pfrmMScatterResult.pChart.Series.Add(seriesLine);

                seriesLine.Points.AddXY(adblVar1.Min(), adblVar1.Min() * vecCoeff[1] + vecCoeff[0]);
                seriesLine.Points.AddXY(adblVar1.Max(), adblVar1.Max() * vecCoeff[1] + vecCoeff[0]);

                if (cboMeasure.Text == "Local Pearson")
                {
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.Title = "z-transformed " + cboFldnm1.Text;
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisY.Title = "z-transformed " + cboFldnm2.Text;
                    pfrmMScatterResult.lblRegression.Text = string.Empty;
                }
                else
                {
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.Title = "z-transformed SMA of " + cboFldnm1.Text;
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisY.Title = "z-transformed SMA of " + cboFldnm2.Text;
                    pfrmMScatterResult.lblRegression.Text = string.Empty;
                }

                pfrmMScatterResult.m_pForm       = m_pForm;
                pfrmMScatterResult.m_pFLayer     = m_pFLayer;
                pfrmMScatterResult.m_pActiveView = m_pActiveView;
                pfrmMScatterResult.arrVar        = adblVar1;
                pfrmMScatterResult.arrFID        = arrFID;
                pfrmMScatterResult.strFIDNM      = m_pFClass.OIDFieldName;
                //pfrmMScatterResult.arrWeightVar = arrWeightVar;
                pfrmMScatterResult.pMakerColor = pMarkerColor;
                pfrmMScatterResult.strVarNM    = cboFldnm1.Text;

                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.IsLabelAutoFit = false;
                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.CustomLabels.Clear();
                pfrmMScatterResult.pChart.ChartAreas[0].AxisX.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.None;
                //pfrmMScatterResult.pChart.ChartAreas[0].AxisX.MajorTickMark.Interval = 1;
                //pfrmMScatterResult.pChart.ChartAreas[0].AxisX.MajorTickMark.IntervalOffset = -2;

                int intMin = Convert.ToInt32(Math.Floor(adblVar1.Min()));
                int intMax = Convert.ToInt32(Math.Ceiling(adblVar1.Max()));
                for (int n = intMin; n < intMax; n++)
                {
                    System.Windows.Forms.DataVisualization.Charting.CustomLabel pcutsomLabel = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
                    pcutsomLabel.FromPosition = n - 0.5;
                    pcutsomLabel.ToPosition   = n + 0.5;
                    pcutsomLabel.Text         = n.ToString();
                    pfrmMScatterResult.pChart.ChartAreas[0].AxisX.CustomLabels.Add(pcutsomLabel);
                }

                pfrmMScatterResult.Show();
            }
            pfrmProgress.Close();
        }
예제 #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 80D);
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 60D);
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 3D);
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series4      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 80D);
     System.Windows.Forms.DataVisualization.Charting.Series      series5      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint5   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 60D);
     System.Windows.Forms.DataVisualization.Charting.Series      series6      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint6   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 3D);
     System.Windows.Forms.DataVisualization.Charting.Title       title2       = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.titleBar               = new System.Windows.Forms.Panel();
     this.titleLabel             = new System.Windows.Forms.Label();
     this.minButton              = new System.Windows.Forms.Button();
     this.closeButton            = new System.Windows.Forms.Button();
     this.windowIcon             = new System.Windows.Forms.PictureBox();
     this.settingsBox            = new System.Windows.Forms.GroupBox();
     this.safemodeHelpButton     = new System.Windows.Forms.Button();
     this.safemodeCheckBox       = new System.Windows.Forms.CheckBox();
     this.snapshotrateNumeric    = new System.Windows.Forms.NumericUpDown();
     this.usagealertsHelpButton  = new System.Windows.Forms.Button();
     this.usagealertsCheckBox    = new System.Windows.Forms.CheckBox();
     this.enabledCheckBox        = new System.Windows.Forms.CheckBox();
     this.snapshotrateHelpButton = new System.Windows.Forms.Button();
     this.snapshotrateLabel      = new System.Windows.Forms.Label();
     this.hourlyusageChart       = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chart1  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.titleBar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.windowIcon)).BeginInit();
     this.settingsBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.snapshotrateNumeric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.hourlyusageChart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // titleBar
     //
     this.titleBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.titleBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.titleBar.Controls.Add(this.titleLabel);
     this.titleBar.Controls.Add(this.minButton);
     this.titleBar.Controls.Add(this.closeButton);
     this.titleBar.Controls.Add(this.windowIcon);
     this.titleBar.Location = new System.Drawing.Point(0, 0);
     this.titleBar.Name     = "titleBar";
     this.titleBar.Size     = new System.Drawing.Size(480, 33);
     this.titleBar.TabIndex = 0;
     //
     // titleLabel
     //
     this.titleLabel.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.titleLabel.AutoSize = true;
     this.titleLabel.Font     = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.titleLabel.Location = new System.Drawing.Point(123, 7);
     this.titleLabel.Name     = "titleLabel";
     this.titleLabel.Size     = new System.Drawing.Size(231, 18);
     this.titleLabel.TabIndex = 3;
     this.titleLabel.Text     = "Daymon\'s Memory Manager";
     //
     // minButton
     //
     this.minButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.minButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.minButton.FlatAppearance.BorderSize         = 0;
     this.minButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
     this.minButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.minButton.Font      = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.minButton.Location  = new System.Drawing.Point(414, 0);
     this.minButton.Name      = "minButton";
     this.minButton.Size      = new System.Drawing.Size(33, 33);
     this.minButton.TabIndex  = 2;
     this.minButton.Text      = "_";
     this.minButton.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.minButton.UseVisualStyleBackColor = false;
     //
     // closeButton
     //
     this.closeButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.closeButton.FlatAppearance.BorderSize         = 0;
     this.closeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
     this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.closeButton.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.closeButton.Location  = new System.Drawing.Point(447, 0);
     this.closeButton.Name      = "closeButton";
     this.closeButton.Size      = new System.Drawing.Size(33, 33);
     this.closeButton.TabIndex  = 1;
     this.closeButton.Text      = "X";
     this.closeButton.UseVisualStyleBackColor = false;
     this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
     //
     // windowIcon
     //
     this.windowIcon.Image    = global::MemoryManager.Properties.Resources.cpu_Srk_icon;
     this.windowIcon.Location = new System.Drawing.Point(3, 3);
     this.windowIcon.Name     = "windowIcon";
     this.windowIcon.Size     = new System.Drawing.Size(24, 24);
     this.windowIcon.TabIndex = 1;
     this.windowIcon.TabStop  = false;
     //
     // settingsBox
     //
     this.settingsBox.Controls.Add(this.safemodeHelpButton);
     this.settingsBox.Controls.Add(this.safemodeCheckBox);
     this.settingsBox.Controls.Add(this.snapshotrateNumeric);
     this.settingsBox.Controls.Add(this.usagealertsHelpButton);
     this.settingsBox.Controls.Add(this.usagealertsCheckBox);
     this.settingsBox.Controls.Add(this.enabledCheckBox);
     this.settingsBox.Controls.Add(this.snapshotrateHelpButton);
     this.settingsBox.Controls.Add(this.snapshotrateLabel);
     this.settingsBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.settingsBox.Font      = new System.Drawing.Font("Verdana", 11.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.settingsBox.Location  = new System.Drawing.Point(12, 39);
     this.settingsBox.Name      = "settingsBox";
     this.settingsBox.Size      = new System.Drawing.Size(451, 107);
     this.settingsBox.TabIndex  = 1;
     this.settingsBox.TabStop   = false;
     this.settingsBox.Text      = "Settings";
     //
     // safemodeHelpButton
     //
     this.safemodeHelpButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.safemodeHelpButton.FlatAppearance.BorderSize         = 0;
     this.safemodeHelpButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
     this.safemodeHelpButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.safemodeHelpButton.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.safemodeHelpButton.Location  = new System.Drawing.Point(417, 20);
     this.safemodeHelpButton.Name      = "safemodeHelpButton";
     this.safemodeHelpButton.Size      = new System.Drawing.Size(26, 26);
     this.safemodeHelpButton.TabIndex  = 9;
     this.safemodeHelpButton.Text      = "?";
     this.safemodeHelpButton.UseVisualStyleBackColor = false;
     //
     // safemodeCheckBox
     //
     this.safemodeCheckBox.AutoSize                = true;
     this.safemodeCheckBox.Font                    = new System.Drawing.Font("Verdana", 9F);
     this.safemodeCheckBox.Location                = new System.Drawing.Point(314, 24);
     this.safemodeCheckBox.Name                    = "safemodeCheckBox";
     this.safemodeCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.safemodeCheckBox.Size                    = new System.Drawing.Size(97, 18);
     this.safemodeCheckBox.TabIndex                = 8;
     this.safemodeCheckBox.Text                    = ":Safe Mode";
     this.safemodeCheckBox.UseVisualStyleBackColor = true;
     this.safemodeCheckBox.CheckedChanged         += new System.EventHandler(this.safemodeCheckBox_CheckedChanged);
     //
     // snapshotrateNumeric
     //
     this.snapshotrateNumeric.Font     = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Italic);
     this.snapshotrateNumeric.Location = new System.Drawing.Point(117, 20);
     this.snapshotrateNumeric.Maximum  = new decimal(new int[] {
         86400,
         0,
         0,
         0
     });
     this.snapshotrateNumeric.Minimum = new decimal(new int[] {
         20,
         0,
         0,
         0
     });
     this.snapshotrateNumeric.Name               = "snapshotrateNumeric";
     this.snapshotrateNumeric.Size               = new System.Drawing.Size(100, 26);
     this.snapshotrateNumeric.TabIndex           = 3;
     this.snapshotrateNumeric.ThousandsSeparator = true;
     this.snapshotrateNumeric.Value              = new decimal(new int[] {
         60,
         0,
         0,
         0
     });
     this.snapshotrateNumeric.ValueChanged += new System.EventHandler(this.snapshotrateNumeric_ValueChanged);
     //
     // usagealertsHelpButton
     //
     this.usagealertsHelpButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.usagealertsHelpButton.FlatAppearance.BorderSize         = 0;
     this.usagealertsHelpButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
     this.usagealertsHelpButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.usagealertsHelpButton.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.usagealertsHelpButton.Location  = new System.Drawing.Point(137, 71);
     this.usagealertsHelpButton.Name      = "usagealertsHelpButton";
     this.usagealertsHelpButton.Size      = new System.Drawing.Size(26, 26);
     this.usagealertsHelpButton.TabIndex  = 7;
     this.usagealertsHelpButton.Text      = "?";
     this.usagealertsHelpButton.UseVisualStyleBackColor = false;
     //
     // usagealertsCheckBox
     //
     this.usagealertsCheckBox.AutoSize                = true;
     this.usagealertsCheckBox.Font                    = new System.Drawing.Font("Verdana", 9F);
     this.usagealertsCheckBox.Location                = new System.Drawing.Point(20, 76);
     this.usagealertsCheckBox.Name                    = "usagealertsCheckBox";
     this.usagealertsCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.usagealertsCheckBox.Size                    = new System.Drawing.Size(111, 18);
     this.usagealertsCheckBox.TabIndex                = 6;
     this.usagealertsCheckBox.Text                    = ":Usage Alerts";
     this.usagealertsCheckBox.UseVisualStyleBackColor = true;
     this.usagealertsCheckBox.CheckedChanged         += new System.EventHandler(this.usagealertsCheckBox_CheckedChanged);
     //
     // enabledCheckBox
     //
     this.enabledCheckBox.AutoSize                = true;
     this.enabledCheckBox.Font                    = new System.Drawing.Font("Verdana", 9F);
     this.enabledCheckBox.Location                = new System.Drawing.Point(49, 52);
     this.enabledCheckBox.Name                    = "enabledCheckBox";
     this.enabledCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.enabledCheckBox.Size                    = new System.Drawing.Size(82, 18);
     this.enabledCheckBox.TabIndex                = 5;
     this.enabledCheckBox.Text                    = ":Enabled";
     this.enabledCheckBox.UseVisualStyleBackColor = true;
     this.enabledCheckBox.CheckedChanged         += new System.EventHandler(this.enabledCheckBox_CheckedChanged);
     //
     // snapshotrateHelpButton
     //
     this.snapshotrateHelpButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.snapshotrateHelpButton.FlatAppearance.BorderSize         = 0;
     this.snapshotrateHelpButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
     this.snapshotrateHelpButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.snapshotrateHelpButton.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.snapshotrateHelpButton.Location  = new System.Drawing.Point(223, 20);
     this.snapshotrateHelpButton.Name      = "snapshotrateHelpButton";
     this.snapshotrateHelpButton.Size      = new System.Drawing.Size(26, 26);
     this.snapshotrateHelpButton.TabIndex  = 4;
     this.snapshotrateHelpButton.Text      = "?";
     this.snapshotrateHelpButton.UseVisualStyleBackColor = false;
     //
     // snapshotrateLabel
     //
     this.snapshotrateLabel.AutoSize = true;
     this.snapshotrateLabel.Font     = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.snapshotrateLabel.Location = new System.Drawing.Point(6, 26);
     this.snapshotrateLabel.Name     = "snapshotrateLabel";
     this.snapshotrateLabel.Size     = new System.Drawing.Size(105, 14);
     this.snapshotrateLabel.TabIndex = 2;
     this.snapshotrateLabel.Text     = "Snapshot Rate:";
     //
     // hourlyusageChart
     //
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.Enabled           = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea1.AxisX.Maximum           = 10D;
     chartArea1.AxisX.Minimum           = 0D;
     chartArea1.AxisY.IsMarksNextToAxis = false;
     chartArea1.AxisY.Maximum           = 100D;
     chartArea1.AxisY.Minimum           = 0D;
     chartArea1.AxisY.Title             = "RAM % Used";
     chartArea1.Name = "ChartArea1";
     this.hourlyusageChart.ChartAreas.Add(chartArea1);
     legend1.Name  = "Legend1";
     legend1.Title = "Top 10 Spenders";
     this.hourlyusageChart.Legends.Add(legend1);
     this.hourlyusageChart.Location = new System.Drawing.Point(12, 152);
     this.hourlyusageChart.Name     = "hourlyusageChart";
     series1.ChartArea          = "ChartArea1";
     series1.ChartType          = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series1.CustomProperties   = "PointWidth=2";
     series1.Legend             = "Legend1";
     series1.Name               = "Chrome";
     dataPoint1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     dataPoint1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     dataPoint1.BorderWidth     = 1;
     dataPoint1.MarkerSize      = 4;
     series1.Points.Add(dataPoint1);
     series1.ToolTip          = "Chrome (80%)";
     series2.ChartArea        = "ChartArea1";
     series2.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series2.CustomProperties = "PointWidth=2";
     series2.Legend           = "Legend1";
     series2.Name             = "Visual Studios";
     series2.Points.Add(dataPoint2);
     series3.ChartArea        = "ChartArea1";
     series3.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series3.CustomProperties = "PointWidth=2";
     series3.Legend           = "Legend1";
     series3.Name             = "notepad";
     series3.Points.Add(dataPoint3);
     this.hourlyusageChart.Series.Add(series1);
     this.hourlyusageChart.Series.Add(series2);
     this.hourlyusageChart.Series.Add(series3);
     this.hourlyusageChart.Size     = new System.Drawing.Size(451, 300);
     this.hourlyusageChart.TabIndex = 2;
     this.hourlyusageChart.Text     = "chart1";
     title1.Name = "title1";
     title1.Text = "Hourly Usage";
     this.hourlyusageChart.Titles.Add(title1);
     //
     // chart1
     //
     chartArea2.AxisX.CustomLabels.Add(customLabel2);
     chartArea2.AxisX.Enabled           = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea2.AxisX.Maximum           = 10D;
     chartArea2.AxisX.Minimum           = 0D;
     chartArea2.AxisY.IsMarksNextToAxis = false;
     chartArea2.AxisY.Maximum           = 100D;
     chartArea2.AxisY.Minimum           = 0D;
     chartArea2.AxisY.Title             = "RAM % Used";
     chartArea2.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea2);
     legend2.Name  = "Legend1";
     legend2.Title = "Top 10 Spenders";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location       = new System.Drawing.Point(12, 489);
     this.chart1.Name           = "chart1";
     series4.ChartArea          = "ChartArea1";
     series4.ChartType          = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series4.CustomProperties   = "PointWidth=2";
     series4.Legend             = "Legend1";
     series4.Name               = "Chrome";
     dataPoint4.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     dataPoint4.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     dataPoint4.BorderWidth     = 1;
     dataPoint4.MarkerSize      = 4;
     series4.Points.Add(dataPoint4);
     series4.ToolTip          = "Chrome (80%)";
     series5.ChartArea        = "ChartArea1";
     series5.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series5.CustomProperties = "PointWidth=2";
     series5.Legend           = "Legend1";
     series5.Name             = "Visual Studios";
     series5.Points.Add(dataPoint5);
     series6.ChartArea        = "ChartArea1";
     series6.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series6.CustomProperties = "PointWidth=2";
     series6.Legend           = "Legend1";
     series6.Name             = "notepad";
     series6.Points.Add(dataPoint6);
     this.chart1.Series.Add(series4);
     this.chart1.Series.Add(series5);
     this.chart1.Series.Add(series6);
     this.chart1.Size     = new System.Drawing.Size(451, 300);
     this.chart1.TabIndex = 3;
     this.chart1.Text     = "chart1";
     title2.Name          = "title1";
     title2.Text          = "12/12/2019 24:21:53 Snapshot";
     this.chart1.Titles.Add(title2);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247)))));
     this.button1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font      = new System.Drawing.Font("Verdana", 12F);
     this.button1.Location  = new System.Drawing.Point(0, 805);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(479, 33);
     this.button1.TabIndex  = 4;
     this.button1.Text      = "Snapshot Manager";
     this.button1.UseVisualStyleBackColor = false;
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.button2.FlatAppearance.BorderSize = 0;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.Location  = new System.Drawing.Point(32, 489);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(128, 23);
     this.button2.TabIndex  = 5;
     this.button2.Text      = "Change Snapshot";
     this.button2.UseVisualStyleBackColor = false;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(479, 838);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.hourlyusageChart);
     this.Controls.Add(this.settingsBox);
     this.Controls.Add(this.titleBar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "Form1";
     this.Text            = "Form1";
     this.Load           += new System.EventHandler(this.Form1_Load);
     this.titleBar.ResumeLayout(false);
     this.titleBar.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.windowIcon)).EndInit();
     this.settingsBox.ResumeLayout(false);
     this.settingsBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.snapshotrateNumeric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.hourlyusageChart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Data.DataColumn startNumber;
     System.ComponentModel.ComponentResourceManager              resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.DataGridViewCellStyle                  dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea4             = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2           = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Series      series10   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series11   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series12   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea5 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Series      series13   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series14   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series15   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Series      series16   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series17   = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series18   = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.splitContainer1   = new System.Windows.Forms.SplitContainer();
     this.splitContainer2   = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.dataGrid          = new System.Windows.Forms.DataGridView();
     this.Time      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Serial    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Number    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.XModMax   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.YModMax   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ZModMax   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaxFlexX  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaxFlexY  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaxFlexZ  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.maxValue  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.minXValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.midValue  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.maxYValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.minYValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.midYValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.maxXValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.minZValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.midZValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.XPeakToPeakSelectionX10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.YPeakToPeakSelectionX10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ZPeakToPeakSelectionX10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.XRMS                             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.YRMS                             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ZRMS                             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SelectedStart                    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SelectedEnd                      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.label1                           = new System.Windows.Forms.Label();
     this.closeButton                      = new System.Windows.Forms.Button();
     this.startButton                      = new System.Windows.Forms.Button();
     this.timerTextBox                     = new System.Windows.Forms.MaskedTextBox();
     this.stopButton                       = new System.Windows.Forms.Button();
     this.label14                          = new System.Windows.Forms.Label();
     this.clearButton                      = new System.Windows.Forms.Button();
     this.tableLayoutPanel2                = new System.Windows.Forms.TableLayoutPanel();
     this.chartX                           = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chartY                           = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chartZ                           = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label2                           = new System.Windows.Forms.Label();
     this.label4                           = new System.Windows.Forms.Label();
     this.label3                           = new System.Windows.Forms.Label();
     this.DataSetValues                    = new System.Data.DataSet();
     this.AllValues                        = new System.Data.DataTable();
     this.XValue                           = new System.Data.DataColumn();
     this.YValue                           = new System.Data.DataColumn();
     this.ZValue                           = new System.Data.DataColumn();
     this.Numb                             = new System.Data.DataColumn();
     this.TimeValue                        = new System.Data.DataColumn();
     this.dataColumn1                      = new System.Data.DataColumn();
     this.comPort                          = new System.IO.Ports.SerialPort(this.components);
     this.timer                            = new System.Windows.Forms.Timer(this.components);
     this.menuStrip1                       = new System.Windows.Forms.MenuStrip();
     this.файлToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.сохранитьКакXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.загрузитьИзXMLToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.экспортВCSVToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.allSettingsToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.какПользоватьсяToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.оПрограммеToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.backgroundWorker1                = new System.ComponentModel.BackgroundWorker();
     this.saveAsXMLDialog                  = new System.Windows.Forms.SaveFileDialog();
     this.saveAsCSVDialog                  = new System.Windows.Forms.SaveFileDialog();
     this.openXMLDialog                    = new System.Windows.Forms.OpenFileDialog();
     this.colorDialog1                     = new System.Windows.Forms.ColorDialog();
     startNumber                           = new System.Data.DataColumn();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartZ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSetValues)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AllValues)).BeginInit();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // startNumber
     //
     startNumber.ColumnName = "startNumber";
     startNumber.DataType   = typeof(short);
     //
     // splitContainer1
     //
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
     this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel2);
     //
     // splitContainer2
     //
     resources.ApplyResources(this.splitContainer2, "splitContainer2");
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     resources.ApplyResources(this.splitContainer2.Panel1, "splitContainer2.Panel1");
     this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel1);
     //
     // splitContainer2.Panel2
     //
     resources.ApplyResources(this.splitContainer2.Panel2, "splitContainer2.Panel2");
     this.splitContainer2.Panel2.Controls.Add(this.closeButton);
     this.splitContainer2.Panel2.Controls.Add(this.startButton);
     this.splitContainer2.Panel2.Controls.Add(this.timerTextBox);
     this.splitContainer2.Panel2.Controls.Add(this.stopButton);
     this.splitContainer2.Panel2.Controls.Add(this.label14);
     this.splitContainer2.Panel2.Controls.Add(this.clearButton);
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
     this.tableLayoutPanel1.Controls.Add(this.dataGrid, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // dataGrid
     //
     resources.ApplyResources(this.dataGrid, "dataGrid");
     this.dataGrid.AllowUserToAddRows          = false;
     this.dataGrid.AllowUserToDeleteRows       = false;
     this.dataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Time,
         this.Serial,
         this.Number,
         this.XModMax,
         this.YModMax,
         this.ZModMax,
         this.MaxFlexX,
         this.MaxFlexY,
         this.MaxFlexZ,
         this.maxValue,
         this.minXValue,
         this.midValue,
         this.maxYValue,
         this.minYValue,
         this.midYValue,
         this.maxXValue,
         this.minZValue,
         this.midZValue,
         this.XPeakToPeakSelectionX10,
         this.YPeakToPeakSelectionX10,
         this.ZPeakToPeakSelectionX10,
         this.XRMS,
         this.YRMS,
         this.ZRMS,
         this.SelectedStart,
         this.SelectedEnd
     });
     dataGridViewCellStyle2.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor          = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.GradientActiveCaption;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode           = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGrid.DefaultCellStyle            = dataGridViewCellStyle2;
     this.dataGrid.EditMode          = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.dataGrid.MultiSelect       = false;
     this.dataGrid.Name              = "dataGrid";
     this.dataGrid.RowHeadersVisible = false;
     this.dataGrid.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGrid.CellMouseClick   += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGrid_CellMouseClick);
     //
     // Time
     //
     this.Time.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Time.FillWeight   = 150F;
     resources.ApplyResources(this.Time, "Time");
     this.Time.Name = "Time";
     //
     // Serial
     //
     resources.ApplyResources(this.Serial, "Serial");
     this.Serial.Name = "Serial";
     //
     // Number
     //
     this.Number.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     resources.ApplyResources(this.Number, "Number");
     this.Number.Name = "Number";
     //
     // XModMax
     //
     this.XModMax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.XModMax, "XModMax");
     this.XModMax.Name = "XModMax";
     //
     // YModMax
     //
     this.YModMax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.YModMax, "YModMax");
     this.YModMax.Name = "YModMax";
     //
     // ZModMax
     //
     this.ZModMax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.ZModMax, "ZModMax");
     this.ZModMax.Name = "ZModMax";
     //
     // MaxFlexX
     //
     this.MaxFlexX.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.MaxFlexX, "MaxFlexX");
     this.MaxFlexX.Name = "MaxFlexX";
     //
     // MaxFlexY
     //
     this.MaxFlexY.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.MaxFlexY, "MaxFlexY");
     this.MaxFlexY.Name = "MaxFlexY";
     //
     // MaxFlexZ
     //
     this.MaxFlexZ.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.MaxFlexZ, "MaxFlexZ");
     this.MaxFlexZ.Name = "MaxFlexZ";
     //
     // maxValue
     //
     resources.ApplyResources(this.maxValue, "maxValue");
     this.maxValue.Name = "maxValue";
     //
     // minXValue
     //
     resources.ApplyResources(this.minXValue, "minXValue");
     this.minXValue.Name = "minXValue";
     //
     // midValue
     //
     resources.ApplyResources(this.midValue, "midValue");
     this.midValue.Name = "midValue";
     //
     // maxYValue
     //
     resources.ApplyResources(this.maxYValue, "maxYValue");
     this.maxYValue.Name = "maxYValue";
     //
     // minYValue
     //
     resources.ApplyResources(this.minYValue, "minYValue");
     this.minYValue.Name = "minYValue";
     //
     // midYValue
     //
     resources.ApplyResources(this.midYValue, "midYValue");
     this.midYValue.Name = "midYValue";
     //
     // maxXValue
     //
     resources.ApplyResources(this.maxXValue, "maxXValue");
     this.maxXValue.Name = "maxXValue";
     //
     // minZValue
     //
     resources.ApplyResources(this.minZValue, "minZValue");
     this.minZValue.Name = "minZValue";
     //
     // midZValue
     //
     resources.ApplyResources(this.midZValue, "midZValue");
     this.midZValue.Name = "midZValue";
     //
     // XPeakToPeakSelectionX10
     //
     this.XPeakToPeakSelectionX10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.XPeakToPeakSelectionX10, "XPeakToPeakSelectionX10");
     this.XPeakToPeakSelectionX10.Name = "XPeakToPeakSelectionX10";
     //
     // YPeakToPeakSelectionX10
     //
     this.YPeakToPeakSelectionX10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.YPeakToPeakSelectionX10, "YPeakToPeakSelectionX10");
     this.YPeakToPeakSelectionX10.Name = "YPeakToPeakSelectionX10";
     //
     // ZPeakToPeakSelectionX10
     //
     this.ZPeakToPeakSelectionX10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.ZPeakToPeakSelectionX10, "ZPeakToPeakSelectionX10");
     this.ZPeakToPeakSelectionX10.Name = "ZPeakToPeakSelectionX10";
     //
     // XRMS
     //
     this.XRMS.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.XRMS, "XRMS");
     this.XRMS.Name = "XRMS";
     //
     // YRMS
     //
     this.YRMS.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.YRMS, "YRMS");
     this.YRMS.Name = "YRMS";
     //
     // ZRMS
     //
     this.ZRMS.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.ZRMS, "ZRMS");
     this.ZRMS.Name = "ZRMS";
     //
     // SelectedStart
     //
     resources.ApplyResources(this.SelectedStart, "SelectedStart");
     this.SelectedStart.Name = "SelectedStart";
     //
     // SelectedEnd
     //
     resources.ApplyResources(this.SelectedEnd, "SelectedEnd");
     this.SelectedEnd.Name = "SelectedEnd";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name   = "label1";
     this.label1.Click += new System.EventHandler(this.label1_Click_1);
     //
     // closeButton
     //
     resources.ApplyResources(this.closeButton, "closeButton");
     this.closeButton.Name = "closeButton";
     this.closeButton.UseVisualStyleBackColor = true;
     this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
     //
     // startButton
     //
     resources.ApplyResources(this.startButton, "startButton");
     this.startButton.Name = "startButton";
     this.startButton.UseVisualStyleBackColor = true;
     this.startButton.Click += new System.EventHandler(this.startButton_Click);
     //
     // timerTextBox
     //
     resources.ApplyResources(this.timerTextBox, "timerTextBox");
     this.timerTextBox.Name = "timerTextBox";
     //
     // stopButton
     //
     resources.ApplyResources(this.stopButton, "stopButton");
     this.stopButton.Name = "stopButton";
     this.stopButton.UseVisualStyleBackColor = true;
     this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
     //
     // label14
     //
     resources.ApplyResources(this.label14, "label14");
     this.label14.Name = "label14";
     //
     // clearButton
     //
     resources.ApplyResources(this.clearButton, "clearButton");
     this.clearButton.Name = "clearButton";
     this.clearButton.UseVisualStyleBackColor = true;
     this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
     //
     // tableLayoutPanel2
     //
     resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
     this.tableLayoutPanel2.Controls.Add(this.chartX, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.chartY, 0, 3);
     this.tableLayoutPanel2.Controls.Add(this.chartZ, 0, 5);
     this.tableLayoutPanel2.Controls.Add(this.label2, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.label4, 0, 4);
     this.tableLayoutPanel2.Controls.Add(this.label3, 0, 2);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     //
     // chartX
     //
     resources.ApplyResources(this.chartX, "chartX");
     this.chartX.BorderlineColor              = System.Drawing.Color.DimGray;
     this.chartX.BorderlineDashStyle          = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     chartArea4.AxisX.IsLabelAutoFit          = false;
     chartArea4.AxisX.LabelAutoFitMaxFontSize = 8;
     chartArea4.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea4.AxisX.ScaleView.Size          = 300D;
     chartArea4.AxisX.ScaleView.Zoomable      = false;
     chartArea4.AxisX.ScrollBar.BackColor     = System.Drawing.Color.White;
     chartArea4.AxisX.ScrollBar.ButtonColor   = System.Drawing.Color.Gray;
     chartArea4.AxisX.TextOrientation         = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Horizontal;
     chartArea4.AxisX.Title          = "Time( ss)";
     chartArea4.AxisX.TitleAlignment = System.Drawing.StringAlignment.Far;
     chartArea4.AxisX.TitleFont      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     customLabel2.MarkColor          = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     customLabel2.Text = "1";
     chartArea4.AxisX2.CustomLabels.Add(customLabel2);
     chartArea4.AxisY.Interval           = 0.1D;
     chartArea4.AxisY.IntervalAutoMode   = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     chartArea4.AxisY.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea4.AxisY.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea4.AxisY.IsStartedFromZero  = false;
     chartArea4.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea4.AxisY.MajorTickMark.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea4.BackColor = System.Drawing.Color.Black;
     chartArea4.CursorX.IsUserSelectionEnabled = true;
     chartArea4.Name = "ChartArea1";
     this.chartX.ChartAreas.Add(chartArea4);
     this.chartX.Name           = "chartX";
     series10.ChartArea         = "ChartArea1";
     series10.ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series10.Color             = System.Drawing.Color.Red;
     series10.Legend            = "Legend1";
     series10.LegendText        = "X Max Value";
     series10.MarkerBorderColor = System.Drawing.Color.Red;
     series10.MarkerColor       = System.Drawing.Color.Red;
     series10.Name        = "SeriesXMax";
     series10.XValueType  = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Single;
     series11.ChartArea   = "ChartArea1";
     series11.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series11.Color       = System.Drawing.Color.Red;
     series11.Legend      = "Legend1";
     series11.LegendText  = "X Min Value";
     series11.Name        = "SeriesXMin";
     series11.XValueType  = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Single;
     series12.BorderWidth = 2;
     series12.ChartArea   = "ChartArea1";
     series12.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series12.Color       = System.Drawing.Color.Fuchsia;
     series12.Legend      = "Legend1";
     series12.LegendText  = "Mid X";
     series12.Name        = "SeriesXMid";
     series12.XValueType  = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Single;
     this.chartX.Series.Add(series10);
     this.chartX.Series.Add(series11);
     this.chartX.Series.Add(series12);
     this.chartX.SelectionRangeChanging += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartX_SelectionRangeChanging);
     this.chartX.SelectionRangeChanged  += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartX_SelectionRangeChanged);
     //
     // chartY
     //
     resources.ApplyResources(this.chartY, "chartY");
     this.chartY.BorderlineColor              = System.Drawing.Color.Gray;
     this.chartY.BorderlineDashStyle          = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     chartArea5.AxisX.IntervalOffsetType      = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea5.AxisX.IntervalType            = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea5.AxisX.IsLabelAutoFit          = false;
     chartArea5.AxisX.LabelAutoFitMaxFontSize = 8;
     chartArea5.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea5.AxisX.ScaleView.Zoomable      = false;
     chartArea5.AxisX.ScrollBar.Enabled       = false;
     chartArea5.AxisX.Title              = "Time(ss)";
     chartArea5.AxisY.Interval           = 0.3D;
     chartArea5.AxisY.IntervalAutoMode   = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     chartArea5.AxisY.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea5.AxisY.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea5.AxisY.IsStartedFromZero  = false;
     chartArea5.BackColor                      = System.Drawing.Color.Black;
     chartArea5.BackSecondaryColor             = System.Drawing.Color.Black;
     chartArea5.CursorX.IsUserSelectionEnabled = true;
     chartArea5.Name = "ChartArea1";
     this.chartY.ChartAreas.Add(chartArea5);
     this.chartY.Name           = "chartY";
     series13.ChartArea         = "ChartArea1";
     series13.ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series13.Color             = System.Drawing.Color.Red;
     series13.LegendText        = "Y Max Value";
     series13.MarkerBorderColor = System.Drawing.Color.Red;
     series13.MarkerColor       = System.Drawing.Color.Red;
     series13.Name        = "SeriesYMax";
     series14.ChartArea   = "ChartArea1";
     series14.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series14.Color       = System.Drawing.Color.Red;
     series14.LegendText  = "Y Min Value";
     series14.Name        = "SeriesYMin";
     series15.BorderWidth = 2;
     series15.ChartArea   = "ChartArea1";
     series15.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series15.Color       = System.Drawing.Color.Fuchsia;
     series15.LegendText  = "Mid Y";
     series15.Name        = "SeriesYMid";
     this.chartY.Series.Add(series13);
     this.chartY.Series.Add(series14);
     this.chartY.Series.Add(series15);
     this.chartY.SelectionRangeChanging += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartY_SelectionRangeChanging);
     this.chartY.SelectionRangeChanged  += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartY_SelectionRangeChanged);
     //
     // chartZ
     //
     resources.ApplyResources(this.chartZ, "chartZ");
     this.chartZ.BorderlineColor              = System.Drawing.Color.Gray;
     this.chartZ.BorderlineDashStyle          = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     chartArea6.AxisX.IsLabelAutoFit          = false;
     chartArea6.AxisX.LabelAutoFitMaxFontSize = 8;
     chartArea6.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea6.AxisX.ScaleView.Zoomable      = false;
     chartArea6.AxisX.ScrollBar.Enabled       = false;
     chartArea6.AxisY.Interval           = 0.2D;
     chartArea6.AxisY.IntervalAutoMode   = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     chartArea6.AxisY.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea6.AxisY.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea6.AxisY.IsStartedFromZero  = false;
     chartArea6.BackColor = System.Drawing.Color.Black;
     chartArea6.CursorX.IsUserSelectionEnabled = true;
     chartArea6.Name = "ChartArea1";
     this.chartZ.ChartAreas.Add(chartArea6);
     this.chartZ.Name           = "chartZ";
     series16.ChartArea         = "ChartArea1";
     series16.ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series16.Color             = System.Drawing.Color.Red;
     series16.LegendText        = "Z Max Value";
     series16.MarkerBorderColor = System.Drawing.Color.Red;
     series16.MarkerColor       = System.Drawing.Color.Red;
     series16.Name        = "SeriesZMax";
     series17.ChartArea   = "ChartArea1";
     series17.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series17.Color       = System.Drawing.Color.Red;
     series17.LegendText  = "Z Min Value";
     series17.Name        = "SeriesZMin";
     series18.BorderWidth = 2;
     series18.ChartArea   = "ChartArea1";
     series18.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series18.Color       = System.Drawing.Color.Fuchsia;
     series18.LegendText  = "Mid Z";
     series18.Name        = "SeriesZMid";
     this.chartZ.Series.Add(series16);
     this.chartZ.Series.Add(series17);
     this.chartZ.Series.Add(series18);
     this.chartZ.SelectionRangeChanging += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartZ_SelectionRangeChanging);
     this.chartZ.SelectionRangeChanged  += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chartZ_SelectionRangeChanged);
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // label4
     //
     resources.ApplyResources(this.label4, "label4");
     this.label4.Name = "label4";
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // DataSetValues
     //
     this.DataSetValues.DataSetName = "NewDataSet";
     this.DataSetValues.Tables.AddRange(new System.Data.DataTable[] {
         this.AllValues
     });
     //
     // AllValues
     //
     this.AllValues.Columns.AddRange(new System.Data.DataColumn[] {
         this.XValue,
         this.YValue,
         this.ZValue,
         this.Numb,
         this.TimeValue,
         startNumber,
         this.dataColumn1
     });
     this.AllValues.TableName = "AllValues";
     //
     // XValue
     //
     this.XValue.ColumnName = "XValue";
     this.XValue.DataType   = typeof(double);
     //
     // YValue
     //
     this.YValue.ColumnName = "YValue";
     this.YValue.DataType   = typeof(double);
     //
     // ZValue
     //
     this.ZValue.ColumnName = "ZValue";
     this.ZValue.DataType   = typeof(double);
     //
     // Numb
     //
     this.Numb.ColumnName = "Number";
     this.Numb.DataType   = typeof(short);
     //
     // TimeValue
     //
     this.TimeValue.ColumnName = "Time";
     this.TimeValue.DataType   = typeof(System.DateTime);
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "SeriesNumber";
     //
     // timer
     //
     this.timer.Tick += new System.EventHandler(this.timer_Tick);
     //
     // menuStrip1
     //
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.файлToolStripMenuItem,
         this.settingsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip1.Name         = "menuStrip1";
     this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip1_ItemClicked);
     //
     // файлToolStripMenuItem
     //
     resources.ApplyResources(this.файлToolStripMenuItem, "файлToolStripMenuItem");
     this.файлToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.сохранитьКакXMLToolStripMenuItem,
         this.загрузитьИзXMLToolStripMenuItem,
         this.экспортВCSVToolStripMenuItem
     });
     this.файлToolStripMenuItem.Name = "файлToolStripMenuItem";
     //
     // сохранитьКакXMLToolStripMenuItem
     //
     resources.ApplyResources(this.сохранитьКакXMLToolStripMenuItem, "сохранитьКакXMLToolStripMenuItem");
     this.сохранитьКакXMLToolStripMenuItem.Name   = "сохранитьКакXMLToolStripMenuItem";
     this.сохранитьКакXMLToolStripMenuItem.Click += new System.EventHandler(this.сохранитьКакXMLToolStripMenuItem_Click);
     //
     // загрузитьИзXMLToolStripMenuItem
     //
     resources.ApplyResources(this.загрузитьИзXMLToolStripMenuItem, "загрузитьИзXMLToolStripMenuItem");
     this.загрузитьИзXMLToolStripMenuItem.Name   = "загрузитьИзXMLToolStripMenuItem";
     this.загрузитьИзXMLToolStripMenuItem.Click += new System.EventHandler(this.загрузитьИзXMLToolStripMenuItem_Click);
     //
     // экспортВCSVToolStripMenuItem
     //
     resources.ApplyResources(this.экспортВCSVToolStripMenuItem, "экспортВCSVToolStripMenuItem");
     this.экспортВCSVToolStripMenuItem.Name   = "экспортВCSVToolStripMenuItem";
     this.экспортВCSVToolStripMenuItem.Click += new System.EventHandler(this.экспортВCSVToolStripMenuItem_Click);
     //
     // settingsToolStripMenuItem
     //
     resources.ApplyResources(this.settingsToolStripMenuItem, "settingsToolStripMenuItem");
     this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.allSettingsToolStripMenuItem
     });
     this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
     //
     // allSettingsToolStripMenuItem
     //
     resources.ApplyResources(this.allSettingsToolStripMenuItem, "allSettingsToolStripMenuItem");
     this.allSettingsToolStripMenuItem.Name   = "allSettingsToolStripMenuItem";
     this.allSettingsToolStripMenuItem.Click += new System.EventHandler(this.allSettingsToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.какПользоватьсяToolStripMenuItem,
         this.оПрограммеToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name   = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Click += new System.EventHandler(this.helpToolStripMenuItem_Click);
     //
     // какПользоватьсяToolStripMenuItem
     //
     resources.ApplyResources(this.какПользоватьсяToolStripMenuItem, "какПользоватьсяToolStripMenuItem");
     this.какПользоватьсяToolStripMenuItem.Name   = "какПользоватьсяToolStripMenuItem";
     this.какПользоватьсяToolStripMenuItem.Click += new System.EventHandler(this.какПользоватьсяToolStripMenuItem_Click);
     //
     // оПрограммеToolStripMenuItem
     //
     resources.ApplyResources(this.оПрограммеToolStripMenuItem, "оПрограммеToolStripMenuItem");
     this.оПрограммеToolStripMenuItem.Name   = "оПрограммеToolStripMenuItem";
     this.оПрограммеToolStripMenuItem.Click += new System.EventHandler(this.оПрограммеToolStripMenuItem_Click);
     //
     // saveAsXMLDialog
     //
     this.saveAsXMLDialog.DefaultExt = "*.xml";
     resources.ApplyResources(this.saveAsXMLDialog, "saveAsXMLDialog");
     this.saveAsXMLDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveAsXMLDialog_FileOk);
     //
     // saveAsCSVDialog
     //
     this.saveAsCSVDialog.DefaultExt = "*.CSV";
     resources.ApplyResources(this.saveAsCSVDialog, "saveAsCSVDialog");
     this.saveAsCSVDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveAsCSVDialog_FileOk);
     //
     // openXMLDialog
     //
     this.openXMLDialog.DefaultExt = "*.xml";
     resources.ApplyResources(this.openXMLDialog, "openXMLDialog");
     this.openXMLDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openXMLDialog_FileOk);
     //
     // MainForm
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "MainForm";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartZ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataSetValues)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AllValues)).EndInit();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     this.DatePicker    = new System.Windows.Forms.DateTimePicker();
     this.BtnSelect     = new System.Windows.Forms.Button();
     this.chartCold     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chartWarm     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel5        = new System.Windows.Forms.Panel();
     this.TempColdTitle = new System.Windows.Forms.Label();
     this.panel6        = new System.Windows.Forms.Panel();
     this.TempWarmTitle = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.chartCold)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartWarm)).BeginInit();
     this.panel5.SuspendLayout();
     this.panel6.SuspendLayout();
     this.SuspendLayout();
     //
     // DatePicker
     //
     this.DatePicker.CalendarFont           = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.DatePicker.CalendarTitleBackColor = System.Drawing.Color.AliceBlue;
     this.DatePicker.CalendarTitleForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.DatePicker.Font        = new System.Drawing.Font("微軟正黑體", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.DatePicker.Location    = new System.Drawing.Point(46, 52);
     this.DatePicker.MaximumSize = new System.Drawing.Size(200, 40);
     this.DatePicker.Name        = "DatePicker";
     this.DatePicker.Size        = new System.Drawing.Size(175, 33);
     this.DatePicker.TabIndex    = 86;
     //
     // BtnSelect
     //
     this.BtnSelect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BtnSelect.Location  = new System.Drawing.Point(258, 49);
     this.BtnSelect.Name      = "BtnSelect";
     this.BtnSelect.Size      = new System.Drawing.Size(74, 36);
     this.BtnSelect.TabIndex  = 87;
     this.BtnSelect.Text      = "查詢";
     this.BtnSelect.UseVisualStyleBackColor = true;
     this.BtnSelect.Click += new System.EventHandler(this.BtnSelect_Click);
     //
     // chartCold
     //
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX2.LineColor = System.Drawing.Color.Transparent;
     chartArea1.AxisY.Maximum    = 10D;
     chartArea1.AxisY.Minimum    = 0D;
     chartArea1.AxisY2.LineColor = System.Drawing.Color.Transparent;
     chartArea1.Name             = "ChartArea1";
     this.chartCold.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chartCold.Legends.Add(legend1);
     this.chartCold.Location = new System.Drawing.Point(3, 39);
     this.chartCold.Name     = "chartCold";
     this.chartCold.Size     = new System.Drawing.Size(818, 311);
     this.chartCold.TabIndex = 88;
     this.chartCold.Text     = "chart1";
     //
     // chartWarm
     //
     chartArea2.AxisY.Maximum = 28D;
     chartArea2.AxisY.Minimum = 23D;
     chartArea2.Name          = "ChartArea1";
     this.chartWarm.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.chartWarm.Legends.Add(legend2);
     this.chartWarm.Location = new System.Drawing.Point(3, 39);
     this.chartWarm.Name     = "chartWarm";
     this.chartWarm.Size     = new System.Drawing.Size(819, 309);
     this.chartWarm.TabIndex = 89;
     this.chartWarm.Text     = "chart1";
     //
     // panel5
     //
     this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel5.Controls.Add(this.TempColdTitle);
     this.panel5.Controls.Add(this.chartCold);
     this.panel5.Location = new System.Drawing.Point(5, 102);
     this.panel5.Name     = "panel5";
     this.panel5.Size     = new System.Drawing.Size(826, 355);
     this.panel5.TabIndex = 90;
     //
     // TempColdTitle
     //
     this.TempColdTitle.BackColor = System.Drawing.Color.Black;
     this.TempColdTitle.Dock      = System.Windows.Forms.DockStyle.Top;
     this.TempColdTitle.Font      = new System.Drawing.Font("微軟正黑體", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.TempColdTitle.ForeColor = System.Drawing.Color.White;
     this.TempColdTitle.Location  = new System.Drawing.Point(0, 0);
     this.TempColdTitle.Name      = "TempColdTitle";
     this.TempColdTitle.Size      = new System.Drawing.Size(824, 36);
     this.TempColdTitle.TabIndex  = 10;
     this.TempColdTitle.Text      = "冷藏區溫度紀錄";
     this.TempColdTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel6
     //
     this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel6.Controls.Add(this.TempWarmTitle);
     this.panel6.Controls.Add(this.chartWarm);
     this.panel6.Location = new System.Drawing.Point(5, 463);
     this.panel6.Name     = "panel6";
     this.panel6.Size     = new System.Drawing.Size(826, 355);
     this.panel6.TabIndex = 91;
     //
     // TempWarmTitle
     //
     this.TempWarmTitle.BackColor = System.Drawing.Color.Black;
     this.TempWarmTitle.Dock      = System.Windows.Forms.DockStyle.Top;
     this.TempWarmTitle.Font      = new System.Drawing.Font("微軟正黑體", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.TempWarmTitle.ForeColor = System.Drawing.Color.White;
     this.TempWarmTitle.Location  = new System.Drawing.Point(0, 0);
     this.TempWarmTitle.Name      = "TempWarmTitle";
     this.TempWarmTitle.Size      = new System.Drawing.Size(824, 36);
     this.TempWarmTitle.TabIndex  = 10;
     this.TempWarmTitle.Text      = "回溫區溫度紀錄";
     this.TempWarmTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // TempHistory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(843, 824);
     this.Controls.Add(this.panel6);
     this.Controls.Add(this.panel5);
     this.Controls.Add(this.BtnSelect);
     this.Controls.Add(this.DatePicker);
     this.Name    = "TempHistory";
     this.Text    = "TempHistory";
     this.TopMost = false;
     this.Controls.SetChildIndex(this.DatePicker, 0);
     this.Controls.SetChildIndex(this.BtnSelect, 0);
     this.Controls.SetChildIndex(this.panel5, 0);
     this.Controls.SetChildIndex(this.panel6, 0);
     ((System.ComponentModel.ISupportInitialize)(this.chartCold)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartWarm)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #42
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
			System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
			System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
			System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
			System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
			System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
			this.tabControl = new System.Windows.Forms.TabControl();
			this.tabNeural = new System.Windows.Forms.TabPage();
			this.btnNeuralActivate = new System.Windows.Forms.Button();
			this.btnNeuralNeuronsNoAugment = new System.Windows.Forms.Button();
			this.btnNeuralNeuronsDefault = new System.Windows.Forms.Button();
			this.btnNeuralNeuronsRandom = new System.Windows.Forms.Button();
			this.btnNeuralSynapsesZero = new System.Windows.Forms.Button();
			this.btnNeuralSynapseRandom = new System.Windows.Forms.Button();
			this.btnNeuralLoadConfiguration = new System.Windows.Forms.Button();
			this.btnNeuralSaveConfiguration = new System.Windows.Forms.Button();
			this.barNeuralProgress = new System.Windows.Forms.ProgressBar();
			this.barNeuralMatch = new System.Windows.Forms.ProgressBar();
			this.cmbNeuralAlgorithm = new System.Windows.Forms.ComboBox();
			this.btnNeuralSchema = new System.Windows.Forms.Button();
			this.numNeuralEpoch = new System.Windows.Forms.NumericUpDown();
			this.lblNeuralEpoch = new System.Windows.Forms.Label();
			this.btnNeuralExpectedLoad = new System.Windows.Forms.Button();
			this.btnNeuralInputLoad = new System.Windows.Forms.Button();
			this.lblNeuralExpected = new System.Windows.Forms.Label();
			this.txtNeuralExpected = new System.Windows.Forms.TextBox();
			this.btnNeuralRun = new System.Windows.Forms.Button();
			this.lblNeuralOutput = new System.Windows.Forms.Label();
			this.lblNeuralInput = new System.Windows.Forms.Label();
			this.txtNeuralOutput = new System.Windows.Forms.TextBox();
			this.txtNeuralInput = new System.Windows.Forms.TextBox();
			this.gridNeuralNeurons = new System.Windows.Forms.DataGridView();
			this.columnNeuron = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnSlope = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnAugment = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.lblNeuralSynapses = new System.Windows.Forms.Label();
			this.txtNeuralSynapses = new System.Windows.Forms.TextBox();
			this.btnNeuralDeleteLayer = new System.Windows.Forms.Button();
			this.btnNeuralAddLayer = new System.Windows.Forms.Button();
			this.gridNeuralLayers = new System.Windows.Forms.DataGridView();
			this.columnLayer = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnNeurons = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnFunction = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.tabHopfield = new System.Windows.Forms.TabPage();
			this.btnHopfieldNoise = new System.Windows.Forms.Button();
			this.cmbHopfieldSymbols = new System.Windows.Forms.ComboBox();
			this.pciHopfieldClassify = new System.Windows.Forms.Button();
			this.picHopfieldLearn = new System.Windows.Forms.Button();
			this.btnHopfieldRandom = new System.Windows.Forms.Button();
			this.cmbHopfieldValue = new System.Windows.Forms.ComboBox();
			this.btnHopfieldClear = new System.Windows.Forms.Button();
			this.picHopfieldInput = new System.Windows.Forms.PictureBox();
			this.tabFractals = new System.Windows.Forms.TabPage();
			this.tabControlFractals = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.numFractalsYOffset = new System.Windows.Forms.NumericUpDown();
			this.numFractalsXOffset = new System.Windows.Forms.NumericUpDown();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.numFractalsScale = new System.Windows.Forms.NumericUpDown();
			this.btnFractalsLoad = new System.Windows.Forms.Button();
			this.btnFractalsReset = new System.Windows.Forms.Button();
			this.numFractalsIterations = new System.Windows.Forms.NumericUpDown();
			this.btnFractalsDraw = new System.Windows.Forms.Button();
			this.gridFractalsParameters = new System.Windows.Forms.DataGridView();
			this.columnA = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnB = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnC = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnD = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnE = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnF = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.columnProbability = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.btnFractalsSave = new System.Windows.Forms.Button();
			this.btnFractalsRandomize = new System.Windows.Forms.Button();
			this.btnFractalsAttractorDelete = new System.Windows.Forms.Button();
			this.btnFractalsAttractorAdd = new System.Windows.Forms.Button();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.numFractalsGOCKoef = new System.Windows.Forms.NumericUpDown();
			this.btnFractalsGOCDraw = new System.Windows.Forms.Button();
			this.numFractalsGOCCount = new System.Windows.Forms.NumericUpDown();
			this.tabPage3 = new System.Windows.Forms.TabPage();
			this.cmbFractalsTEAColor = new System.Windows.Forms.ComboBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.numFractalsTEACim = new System.Windows.Forms.NumericUpDown();
			this.numFractalsTEACre = new System.Windows.Forms.NumericUpDown();
			this.checkFractalsTEAConstant = new System.Windows.Forms.CheckBox();
			this.btnFractalsTEAReset = new System.Windows.Forms.Button();
			this.tabPage4 = new System.Windows.Forms.TabPage();
			this.btnFractalsSaveImage = new System.Windows.Forms.Button();
			this.picFractalsPicture = new System.Windows.Forms.PictureBox();
			this.tabChaos = new System.Windows.Forms.TabPage();
			this.tabCellular = new System.Windows.Forms.TabPage();
			this.btnCAClear = new System.Windows.Forms.Button();
			this.label8 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.numCAPixel = new System.Windows.Forms.NumericUpDown();
			this.numCADelay = new System.Windows.Forms.NumericUpDown();
			this.btnCARun = new System.Windows.Forms.Button();
			this.btnCALoad = new System.Windows.Forms.Button();
			this.btnCASave = new System.Windows.Forms.Button();
			this.picCAWorld = new System.Windows.Forms.PictureBox();
			this.txtLog = new System.Windows.Forms.TextBox();
			this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
			this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
			this.chartLSP = new System.Windows.Forms.DataVisualization.Charting.Chart();
			this.chartStatus = new System.Windows.Forms.DataVisualization.Charting.Chart();
			this.timerCA = new System.Windows.Forms.Timer(this.components);
			this.btnCARandom = new System.Windows.Forms.Button();
			this.txtCASurvive = new System.Windows.Forms.TextBox();
			this.txtCABirth = new System.Windows.Forms.TextBox();
			this.label9 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.tabControl.SuspendLayout();
			this.tabNeural.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numNeuralEpoch)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridNeuralNeurons)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridNeuralLayers)).BeginInit();
			this.tabHopfield.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.picHopfieldInput)).BeginInit();
			this.tabFractals.SuspendLayout();
			this.tabControlFractals.SuspendLayout();
			this.tabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsYOffset)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsXOffset)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsScale)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsIterations)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridFractalsParameters)).BeginInit();
			this.tabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsGOCKoef)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsGOCCount)).BeginInit();
			this.tabPage3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsTEACim)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsTEACre)).BeginInit();
			this.tabPage4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.picFractalsPicture)).BeginInit();
			this.tabCellular.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numCAPixel)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numCADelay)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.picCAWorld)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.chartLSP)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.chartStatus)).BeginInit();
			this.SuspendLayout();
			// 
			// tabControl
			// 
			this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tabControl.Controls.Add(this.tabNeural);
			this.tabControl.Controls.Add(this.tabHopfield);
			this.tabControl.Controls.Add(this.tabFractals);
			this.tabControl.Controls.Add(this.tabChaos);
			this.tabControl.Controls.Add(this.tabCellular);
			this.tabControl.Location = new System.Drawing.Point(12, 12);
			this.tabControl.Name = "tabControl";
			this.tabControl.SelectedIndex = 0;
			this.tabControl.Size = new System.Drawing.Size(1310, 401);
			this.tabControl.TabIndex = 0;
			// 
			// tabNeural
			// 
			this.tabNeural.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.tabNeural.Controls.Add(this.btnNeuralActivate);
			this.tabNeural.Controls.Add(this.btnNeuralNeuronsNoAugment);
			this.tabNeural.Controls.Add(this.btnNeuralNeuronsDefault);
			this.tabNeural.Controls.Add(this.btnNeuralNeuronsRandom);
			this.tabNeural.Controls.Add(this.btnNeuralSynapsesZero);
			this.tabNeural.Controls.Add(this.btnNeuralSynapseRandom);
			this.tabNeural.Controls.Add(this.btnNeuralLoadConfiguration);
			this.tabNeural.Controls.Add(this.btnNeuralSaveConfiguration);
			this.tabNeural.Controls.Add(this.barNeuralProgress);
			this.tabNeural.Controls.Add(this.barNeuralMatch);
			this.tabNeural.Controls.Add(this.cmbNeuralAlgorithm);
			this.tabNeural.Controls.Add(this.btnNeuralSchema);
			this.tabNeural.Controls.Add(this.numNeuralEpoch);
			this.tabNeural.Controls.Add(this.lblNeuralEpoch);
			this.tabNeural.Controls.Add(this.btnNeuralExpectedLoad);
			this.tabNeural.Controls.Add(this.btnNeuralInputLoad);
			this.tabNeural.Controls.Add(this.lblNeuralExpected);
			this.tabNeural.Controls.Add(this.txtNeuralExpected);
			this.tabNeural.Controls.Add(this.btnNeuralRun);
			this.tabNeural.Controls.Add(this.lblNeuralOutput);
			this.tabNeural.Controls.Add(this.lblNeuralInput);
			this.tabNeural.Controls.Add(this.txtNeuralOutput);
			this.tabNeural.Controls.Add(this.txtNeuralInput);
			this.tabNeural.Controls.Add(this.gridNeuralNeurons);
			this.tabNeural.Controls.Add(this.lblNeuralSynapses);
			this.tabNeural.Controls.Add(this.txtNeuralSynapses);
			this.tabNeural.Controls.Add(this.btnNeuralDeleteLayer);
			this.tabNeural.Controls.Add(this.btnNeuralAddLayer);
			this.tabNeural.Controls.Add(this.gridNeuralLayers);
			this.tabNeural.ForeColor = System.Drawing.Color.Silver;
			this.tabNeural.Location = new System.Drawing.Point(4, 25);
			this.tabNeural.Name = "tabNeural";
			this.tabNeural.Size = new System.Drawing.Size(1302, 372);
			this.tabNeural.TabIndex = 0;
			this.tabNeural.Text = "Neural";
			// 
			// btnNeuralActivate
			// 
			this.btnNeuralActivate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNeuralActivate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralActivate.Location = new System.Drawing.Point(695, 82);
			this.btnNeuralActivate.Name = "btnNeuralActivate";
			this.btnNeuralActivate.Size = new System.Drawing.Size(142, 35);
			this.btnNeuralActivate.TabIndex = 59;
			this.btnNeuralActivate.Text = "Activate";
			this.btnNeuralActivate.UseVisualStyleBackColor = true;
			this.btnNeuralActivate.Click += new System.EventHandler(this.btnNeuralActivate_Click);
			// 
			// btnNeuralNeuronsNoAugment
			// 
			this.btnNeuralNeuronsNoAugment.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralNeuronsNoAugment.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralNeuronsNoAugment.Location = new System.Drawing.Point(397, 334);
			this.btnNeuralNeuronsNoAugment.Name = "btnNeuralNeuronsNoAugment";
			this.btnNeuralNeuronsNoAugment.Size = new System.Drawing.Size(85, 35);
			this.btnNeuralNeuronsNoAugment.TabIndex = 58;
			this.btnNeuralNeuronsNoAugment.Text = "No Augment";
			this.btnNeuralNeuronsNoAugment.UseVisualStyleBackColor = true;
			this.btnNeuralNeuronsNoAugment.Click += new System.EventHandler(this.btnNeuralNeuronsNoAugment_Click);
			// 
			// btnNeuralNeuronsDefault
			// 
			this.btnNeuralNeuronsDefault.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralNeuronsDefault.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralNeuronsDefault.Location = new System.Drawing.Point(339, 334);
			this.btnNeuralNeuronsDefault.Name = "btnNeuralNeuronsDefault";
			this.btnNeuralNeuronsDefault.Size = new System.Drawing.Size(52, 35);
			this.btnNeuralNeuronsDefault.TabIndex = 57;
			this.btnNeuralNeuronsDefault.Text = "Default";
			this.btnNeuralNeuronsDefault.UseVisualStyleBackColor = true;
			this.btnNeuralNeuronsDefault.Click += new System.EventHandler(this.btnNeuralNeuronsDefault_Click);
			// 
			// btnNeuralNeuronsRandom
			// 
			this.btnNeuralNeuronsRandom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralNeuronsRandom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralNeuronsRandom.Location = new System.Drawing.Point(275, 334);
			this.btnNeuralNeuronsRandom.Name = "btnNeuralNeuronsRandom";
			this.btnNeuralNeuronsRandom.Size = new System.Drawing.Size(58, 35);
			this.btnNeuralNeuronsRandom.TabIndex = 56;
			this.btnNeuralNeuronsRandom.Text = "Random";
			this.btnNeuralNeuronsRandom.UseVisualStyleBackColor = true;
			this.btnNeuralNeuronsRandom.Click += new System.EventHandler(this.btnNeuralNeuronsRandom_Click);
			// 
			// btnNeuralSynapsesZero
			// 
			this.btnNeuralSynapsesZero.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralSynapsesZero.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralSynapsesZero.Location = new System.Drawing.Point(613, 334);
			this.btnNeuralSynapsesZero.Name = "btnNeuralSynapsesZero";
			this.btnNeuralSynapsesZero.Size = new System.Drawing.Size(77, 35);
			this.btnNeuralSynapsesZero.TabIndex = 55;
			this.btnNeuralSynapsesZero.Text = "Zero";
			this.btnNeuralSynapsesZero.UseVisualStyleBackColor = true;
			this.btnNeuralSynapsesZero.Click += new System.EventHandler(this.btnNeuralSynapsesZero_Click);
			// 
			// btnNeuralSynapseRandom
			// 
			this.btnNeuralSynapseRandom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralSynapseRandom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralSynapseRandom.Location = new System.Drawing.Point(488, 334);
			this.btnNeuralSynapseRandom.Name = "btnNeuralSynapseRandom";
			this.btnNeuralSynapseRandom.Size = new System.Drawing.Size(119, 35);
			this.btnNeuralSynapseRandom.TabIndex = 54;
			this.btnNeuralSynapseRandom.Text = "Random";
			this.btnNeuralSynapseRandom.UseVisualStyleBackColor = true;
			this.btnNeuralSynapseRandom.Click += new System.EventHandler(this.btnNeuralSynapseRandom_Click);
			// 
			// btnNeuralLoadConfiguration
			// 
			this.btnNeuralLoadConfiguration.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralLoadConfiguration.Location = new System.Drawing.Point(3, 6);
			this.btnNeuralLoadConfiguration.Name = "btnNeuralLoadConfiguration";
			this.btnNeuralLoadConfiguration.Size = new System.Drawing.Size(130, 35);
			this.btnNeuralLoadConfiguration.TabIndex = 53;
			this.btnNeuralLoadConfiguration.Text = "Load Config";
			this.btnNeuralLoadConfiguration.UseVisualStyleBackColor = true;
			this.btnNeuralLoadConfiguration.Click += new System.EventHandler(this.btnNeuralLoadConfiguration_Click);
			// 
			// btnNeuralSaveConfiguration
			// 
			this.btnNeuralSaveConfiguration.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralSaveConfiguration.Location = new System.Drawing.Point(139, 6);
			this.btnNeuralSaveConfiguration.Name = "btnNeuralSaveConfiguration";
			this.btnNeuralSaveConfiguration.Size = new System.Drawing.Size(130, 35);
			this.btnNeuralSaveConfiguration.TabIndex = 52;
			this.btnNeuralSaveConfiguration.Text = "Save Config";
			this.btnNeuralSaveConfiguration.UseVisualStyleBackColor = true;
			this.btnNeuralSaveConfiguration.Click += new System.EventHandler(this.btnNeuralSaveConfiguration_Click);
			// 
			// barNeuralProgress
			// 
			this.barNeuralProgress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.barNeuralProgress.Location = new System.Drawing.Point(695, 164);
			this.barNeuralProgress.Maximum = 10000;
			this.barNeuralProgress.Name = "barNeuralProgress";
			this.barNeuralProgress.Size = new System.Drawing.Size(142, 23);
			this.barNeuralProgress.TabIndex = 51;
			this.barNeuralProgress.Value = 100;
			// 
			// barNeuralMatch
			// 
			this.barNeuralMatch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.barNeuralMatch.Location = new System.Drawing.Point(1105, 350);
			this.barNeuralMatch.Name = "barNeuralMatch";
			this.barNeuralMatch.Size = new System.Drawing.Size(194, 19);
			this.barNeuralMatch.TabIndex = 50;
			// 
			// cmbNeuralAlgorithm
			// 
			this.cmbNeuralAlgorithm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.cmbNeuralAlgorithm.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.cmbNeuralAlgorithm.ForeColor = System.Drawing.Color.Silver;
			this.cmbNeuralAlgorithm.FormattingEnabled = true;
			this.cmbNeuralAlgorithm.Items.AddRange(new object[] {
            "Activate",
            "SOMA",
            "Fixed Increments",
            "Back Propagation"});
			this.cmbNeuralAlgorithm.Location = new System.Drawing.Point(695, 52);
			this.cmbNeuralAlgorithm.Name = "cmbNeuralAlgorithm";
			this.cmbNeuralAlgorithm.Size = new System.Drawing.Size(142, 24);
			this.cmbNeuralAlgorithm.TabIndex = 49;
			this.cmbNeuralAlgorithm.Text = "Back Propagation";
			// 
			// btnNeuralSchema
			// 
			this.btnNeuralSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNeuralSchema.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralSchema.Location = new System.Drawing.Point(695, 193);
			this.btnNeuralSchema.Name = "btnNeuralSchema";
			this.btnNeuralSchema.Size = new System.Drawing.Size(142, 35);
			this.btnNeuralSchema.TabIndex = 48;
			this.btnNeuralSchema.Text = "Schema";
			this.btnNeuralSchema.UseVisualStyleBackColor = true;
			this.btnNeuralSchema.Click += new System.EventHandler(this.btnNeuralSchema_Click);
			// 
			// numNeuralEpoch
			// 
			this.numNeuralEpoch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.numNeuralEpoch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.numNeuralEpoch.ForeColor = System.Drawing.Color.Silver;
			this.numNeuralEpoch.Location = new System.Drawing.Point(757, 24);
			this.numNeuralEpoch.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
			this.numNeuralEpoch.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
			this.numNeuralEpoch.Name = "numNeuralEpoch";
			this.numNeuralEpoch.Size = new System.Drawing.Size(80, 22);
			this.numNeuralEpoch.TabIndex = 47;
			this.numNeuralEpoch.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
			// 
			// lblNeuralEpoch
			// 
			this.lblNeuralEpoch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.lblNeuralEpoch.AutoSize = true;
			this.lblNeuralEpoch.Location = new System.Drawing.Point(696, 26);
			this.lblNeuralEpoch.Name = "lblNeuralEpoch";
			this.lblNeuralEpoch.Size = new System.Drawing.Size(55, 17);
			this.lblNeuralEpoch.TabIndex = 46;
			this.lblNeuralEpoch.Text = "Epochs";
			// 
			// btnNeuralExpectedLoad
			// 
			this.btnNeuralExpectedLoad.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNeuralExpectedLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralExpectedLoad.Location = new System.Drawing.Point(969, 334);
			this.btnNeuralExpectedLoad.Name = "btnNeuralExpectedLoad";
			this.btnNeuralExpectedLoad.Size = new System.Drawing.Size(130, 35);
			this.btnNeuralExpectedLoad.TabIndex = 44;
			this.btnNeuralExpectedLoad.Text = "Load";
			this.btnNeuralExpectedLoad.UseVisualStyleBackColor = true;
			this.btnNeuralExpectedLoad.Click += new System.EventHandler(this.btnNeuralExpectedLoad_Click);
			// 
			// btnNeuralInputLoad
			// 
			this.btnNeuralInputLoad.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNeuralInputLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralInputLoad.Location = new System.Drawing.Point(843, 334);
			this.btnNeuralInputLoad.Name = "btnNeuralInputLoad";
			this.btnNeuralInputLoad.Size = new System.Drawing.Size(120, 35);
			this.btnNeuralInputLoad.TabIndex = 43;
			this.btnNeuralInputLoad.Text = "Load";
			this.btnNeuralInputLoad.UseVisualStyleBackColor = true;
			this.btnNeuralInputLoad.Click += new System.EventHandler(this.btnNeuralInputLoad_Click);
			// 
			// lblNeuralExpected
			// 
			this.lblNeuralExpected.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.lblNeuralExpected.AutoSize = true;
			this.lblNeuralExpected.Location = new System.Drawing.Point(966, 6);
			this.lblNeuralExpected.Name = "lblNeuralExpected";
			this.lblNeuralExpected.Size = new System.Drawing.Size(66, 17);
			this.lblNeuralExpected.TabIndex = 42;
			this.lblNeuralExpected.Text = "Expected";
			// 
			// txtNeuralExpected
			// 
			this.txtNeuralExpected.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.txtNeuralExpected.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.txtNeuralExpected.Font = new System.Drawing.Font("Courier New", 9F);
			this.txtNeuralExpected.ForeColor = System.Drawing.Color.Silver;
			this.txtNeuralExpected.Location = new System.Drawing.Point(969, 26);
			this.txtNeuralExpected.Multiline = true;
			this.txtNeuralExpected.Name = "txtNeuralExpected";
			this.txtNeuralExpected.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtNeuralExpected.Size = new System.Drawing.Size(130, 302);
			this.txtNeuralExpected.TabIndex = 41;
			this.txtNeuralExpected.Text = "1\r\n0\r\n1\r\n1";
			this.txtNeuralExpected.WordWrap = false;
			// 
			// btnNeuralRun
			// 
			this.btnNeuralRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNeuralRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralRun.Location = new System.Drawing.Point(695, 123);
			this.btnNeuralRun.Name = "btnNeuralRun";
			this.btnNeuralRun.Size = new System.Drawing.Size(142, 35);
			this.btnNeuralRun.TabIndex = 40;
			this.btnNeuralRun.Text = "Activate + Adapt";
			this.btnNeuralRun.UseVisualStyleBackColor = true;
			this.btnNeuralRun.Click += new System.EventHandler(this.btnNeuralRun_Click);
			// 
			// lblNeuralOutput
			// 
			this.lblNeuralOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.lblNeuralOutput.AutoSize = true;
			this.lblNeuralOutput.Location = new System.Drawing.Point(1102, 6);
			this.lblNeuralOutput.Name = "lblNeuralOutput";
			this.lblNeuralOutput.Size = new System.Drawing.Size(51, 17);
			this.lblNeuralOutput.TabIndex = 39;
			this.lblNeuralOutput.Text = "Output";
			// 
			// lblNeuralInput
			// 
			this.lblNeuralInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.lblNeuralInput.AutoSize = true;
			this.lblNeuralInput.Location = new System.Drawing.Point(840, 6);
			this.lblNeuralInput.Name = "lblNeuralInput";
			this.lblNeuralInput.Size = new System.Drawing.Size(39, 17);
			this.lblNeuralInput.TabIndex = 38;
			this.lblNeuralInput.Text = "Input";
			// 
			// txtNeuralOutput
			// 
			this.txtNeuralOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.txtNeuralOutput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.txtNeuralOutput.Font = new System.Drawing.Font("Courier New", 9F);
			this.txtNeuralOutput.ForeColor = System.Drawing.Color.Silver;
			this.txtNeuralOutput.Location = new System.Drawing.Point(1105, 26);
			this.txtNeuralOutput.Multiline = true;
			this.txtNeuralOutput.Name = "txtNeuralOutput";
			this.txtNeuralOutput.ReadOnly = true;
			this.txtNeuralOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtNeuralOutput.Size = new System.Drawing.Size(194, 318);
			this.txtNeuralOutput.TabIndex = 37;
			this.txtNeuralOutput.WordWrap = false;
			// 
			// txtNeuralInput
			// 
			this.txtNeuralInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.txtNeuralInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.txtNeuralInput.Font = new System.Drawing.Font("Courier New", 9F);
			this.txtNeuralInput.ForeColor = System.Drawing.Color.Silver;
			this.txtNeuralInput.Location = new System.Drawing.Point(843, 26);
			this.txtNeuralInput.Multiline = true;
			this.txtNeuralInput.Name = "txtNeuralInput";
			this.txtNeuralInput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtNeuralInput.Size = new System.Drawing.Size(120, 302);
			this.txtNeuralInput.TabIndex = 36;
			this.txtNeuralInput.Text = "0;0\r\n0;1\r\n1;0\r\n1;1\r\n\r\n";
			this.txtNeuralInput.WordWrap = false;
			// 
			// gridNeuralNeurons
			// 
			this.gridNeuralNeurons.AllowDrop = true;
			this.gridNeuralNeurons.AllowUserToAddRows = false;
			this.gridNeuralNeurons.AllowUserToDeleteRows = false;
			this.gridNeuralNeurons.AllowUserToOrderColumns = true;
			this.gridNeuralNeurons.AllowUserToResizeRows = false;
			this.gridNeuralNeurons.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.gridNeuralNeurons.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle1.BackColor = System.Drawing.Color.Black;
			dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
			dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
			dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
			dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
			this.gridNeuralNeurons.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
			this.gridNeuralNeurons.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
			this.gridNeuralNeurons.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.columnNeuron,
            this.columnSlope,
            this.columnAugment});
			dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
			dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Silver;
			dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.Black;
			dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
			this.gridNeuralNeurons.DefaultCellStyle = dataGridViewCellStyle2;
			this.gridNeuralNeurons.Location = new System.Drawing.Point(275, 3);
			this.gridNeuralNeurons.Name = "gridNeuralNeurons";
			this.gridNeuralNeurons.RowTemplate.Height = 24;
			this.gridNeuralNeurons.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.gridNeuralNeurons.ShowEditingIcon = false;
			this.gridNeuralNeurons.Size = new System.Drawing.Size(207, 325);
			this.gridNeuralNeurons.TabIndex = 33;
			// 
			// columnNeuron
			// 
			this.columnNeuron.HeaderText = "Neuron";
			this.columnNeuron.MinimumWidth = 50;
			this.columnNeuron.Name = "columnNeuron";
			this.columnNeuron.ReadOnly = true;
			this.columnNeuron.Width = 50;
			// 
			// columnSlope
			// 
			this.columnSlope.HeaderText = "Slope";
			this.columnSlope.MinimumWidth = 40;
			this.columnSlope.Name = "columnSlope";
			this.columnSlope.Width = 40;
			// 
			// columnAugment
			// 
			this.columnAugment.HeaderText = "Augment";
			this.columnAugment.MinimumWidth = 55;
			this.columnAugment.Name = "columnAugment";
			this.columnAugment.Width = 55;
			// 
			// lblNeuralSynapses
			// 
			this.lblNeuralSynapses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.lblNeuralSynapses.AutoSize = true;
			this.lblNeuralSynapses.Location = new System.Drawing.Point(488, 6);
			this.lblNeuralSynapses.Name = "lblNeuralSynapses";
			this.lblNeuralSynapses.Size = new System.Drawing.Size(70, 17);
			this.lblNeuralSynapses.TabIndex = 22;
			this.lblNeuralSynapses.Text = "Synapses";
			// 
			// txtNeuralSynapses
			// 
			this.txtNeuralSynapses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.txtNeuralSynapses.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.txtNeuralSynapses.Font = new System.Drawing.Font("Courier New", 9F);
			this.txtNeuralSynapses.ForeColor = System.Drawing.Color.Silver;
			this.txtNeuralSynapses.Location = new System.Drawing.Point(488, 26);
			this.txtNeuralSynapses.Multiline = true;
			this.txtNeuralSynapses.Name = "txtNeuralSynapses";
			this.txtNeuralSynapses.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtNeuralSynapses.Size = new System.Drawing.Size(202, 302);
			this.txtNeuralSynapses.TabIndex = 21;
			this.txtNeuralSynapses.WordWrap = false;
			// 
			// btnNeuralDeleteLayer
			// 
			this.btnNeuralDeleteLayer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralDeleteLayer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralDeleteLayer.Location = new System.Drawing.Point(139, 334);
			this.btnNeuralDeleteLayer.Name = "btnNeuralDeleteLayer";
			this.btnNeuralDeleteLayer.Size = new System.Drawing.Size(130, 35);
			this.btnNeuralDeleteLayer.TabIndex = 16;
			this.btnNeuralDeleteLayer.Text = "Delete Layer";
			this.btnNeuralDeleteLayer.UseVisualStyleBackColor = true;
			this.btnNeuralDeleteLayer.Click += new System.EventHandler(this.btnNeuralDeleteLayer_Click);
			// 
			// btnNeuralAddLayer
			// 
			this.btnNeuralAddLayer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnNeuralAddLayer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnNeuralAddLayer.Location = new System.Drawing.Point(3, 334);
			this.btnNeuralAddLayer.Name = "btnNeuralAddLayer";
			this.btnNeuralAddLayer.Size = new System.Drawing.Size(130, 35);
			this.btnNeuralAddLayer.TabIndex = 11;
			this.btnNeuralAddLayer.Text = "Add Layer";
			this.btnNeuralAddLayer.UseVisualStyleBackColor = true;
			this.btnNeuralAddLayer.Click += new System.EventHandler(this.btnNeuralAddLayer_Click);
			// 
			// gridNeuralLayers
			// 
			this.gridNeuralLayers.AllowUserToAddRows = false;
			this.gridNeuralLayers.AllowUserToDeleteRows = false;
			this.gridNeuralLayers.AllowUserToOrderColumns = true;
			this.gridNeuralLayers.AllowUserToResizeRows = false;
			this.gridNeuralLayers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.gridNeuralLayers.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle3.BackColor = System.Drawing.Color.Black;
			dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
			dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
			dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
			dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
			this.gridNeuralLayers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
			this.gridNeuralLayers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
			this.gridNeuralLayers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.columnLayer,
            this.columnNeurons,
            this.columnFunction});
			dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
			dataGridViewCellStyle4.ForeColor = System.Drawing.Color.Silver;
			dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.Black;
			dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
			this.gridNeuralLayers.DefaultCellStyle = dataGridViewCellStyle4;
			this.gridNeuralLayers.Location = new System.Drawing.Point(3, 47);
			this.gridNeuralLayers.Name = "gridNeuralLayers";
			this.gridNeuralLayers.RowTemplate.Height = 24;
			this.gridNeuralLayers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.gridNeuralLayers.ShowEditingIcon = false;
			this.gridNeuralLayers.Size = new System.Drawing.Size(266, 281);
			this.gridNeuralLayers.TabIndex = 10;
			this.gridNeuralLayers.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.gridNeural_RowsAdded);
			// 
			// columnLayer
			// 
			this.columnLayer.HeaderText = "Layer";
			this.columnLayer.MinimumWidth = 45;
			this.columnLayer.Name = "columnLayer";
			this.columnLayer.ReadOnly = true;
			this.columnLayer.Width = 45;
			// 
			// columnNeurons
			// 
			this.columnNeurons.HeaderText = "Neurons";
			this.columnNeurons.MinimumWidth = 55;
			this.columnNeurons.Name = "columnNeurons";
			this.columnNeurons.Width = 55;
			// 
			// columnFunction
			// 
			this.columnFunction.HeaderText = "Transfer";
			this.columnFunction.MinimumWidth = 120;
			this.columnFunction.Name = "columnFunction";
			this.columnFunction.Width = 120;
			// 
			// tabHopfield
			// 
			this.tabHopfield.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabHopfield.Controls.Add(this.btnHopfieldNoise);
			this.tabHopfield.Controls.Add(this.cmbHopfieldSymbols);
			this.tabHopfield.Controls.Add(this.pciHopfieldClassify);
			this.tabHopfield.Controls.Add(this.picHopfieldLearn);
			this.tabHopfield.Controls.Add(this.btnHopfieldRandom);
			this.tabHopfield.Controls.Add(this.cmbHopfieldValue);
			this.tabHopfield.Controls.Add(this.btnHopfieldClear);
			this.tabHopfield.Controls.Add(this.picHopfieldInput);
			this.tabHopfield.Location = new System.Drawing.Point(4, 25);
			this.tabHopfield.Name = "tabHopfield";
			this.tabHopfield.Size = new System.Drawing.Size(1302, 372);
			this.tabHopfield.TabIndex = 1;
			this.tabHopfield.Text = "Hopfield";
			// 
			// btnHopfieldNoise
			// 
			this.btnHopfieldNoise.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnHopfieldNoise.ForeColor = System.Drawing.Color.White;
			this.btnHopfieldNoise.Location = new System.Drawing.Point(117, 14);
			this.btnHopfieldNoise.Name = "btnHopfieldNoise";
			this.btnHopfieldNoise.Size = new System.Drawing.Size(49, 23);
			this.btnHopfieldNoise.TabIndex = 10;
			this.btnHopfieldNoise.Text = "Noise";
			this.btnHopfieldNoise.UseVisualStyleBackColor = true;
			this.btnHopfieldNoise.Click += new System.EventHandler(this.btnHopfieldNoise_Click);
			// 
			// cmbHopfieldSymbols
			// 
			this.cmbHopfieldSymbols.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.cmbHopfieldSymbols.ForeColor = System.Drawing.Color.White;
			this.cmbHopfieldSymbols.FormattingEnabled = true;
			this.cmbHopfieldSymbols.Location = new System.Drawing.Point(96, 43);
			this.cmbHopfieldSymbols.Name = "cmbHopfieldSymbols";
			this.cmbHopfieldSymbols.Size = new System.Drawing.Size(70, 24);
			this.cmbHopfieldSymbols.TabIndex = 9;
			this.cmbHopfieldSymbols.Text = "1";
			this.cmbHopfieldSymbols.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
			// 
			// pciHopfieldClassify
			// 
			this.pciHopfieldClassify.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.pciHopfieldClassify.ForeColor = System.Drawing.Color.White;
			this.pciHopfieldClassify.Location = new System.Drawing.Point(15, 290);
			this.pciHopfieldClassify.Name = "pciHopfieldClassify";
			this.pciHopfieldClassify.Size = new System.Drawing.Size(151, 23);
			this.pciHopfieldClassify.TabIndex = 8;
			this.pciHopfieldClassify.Text = "Classify";
			this.pciHopfieldClassify.UseVisualStyleBackColor = true;
			this.pciHopfieldClassify.Click += new System.EventHandler(this.pciHopfieldClassify_Click);
			// 
			// picHopfieldLearn
			// 
			this.picHopfieldLearn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.picHopfieldLearn.ForeColor = System.Drawing.Color.White;
			this.picHopfieldLearn.Location = new System.Drawing.Point(15, 319);
			this.picHopfieldLearn.Name = "picHopfieldLearn";
			this.picHopfieldLearn.Size = new System.Drawing.Size(151, 23);
			this.picHopfieldLearn.TabIndex = 7;
			this.picHopfieldLearn.Text = "Train";
			this.picHopfieldLearn.UseVisualStyleBackColor = true;
			this.picHopfieldLearn.Click += new System.EventHandler(this.picHopfieldLearn_Click);
			// 
			// btnHopfieldRandom
			// 
			this.btnHopfieldRandom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnHopfieldRandom.ForeColor = System.Drawing.Color.White;
			this.btnHopfieldRandom.Location = new System.Drawing.Point(68, 14);
			this.btnHopfieldRandom.Name = "btnHopfieldRandom";
			this.btnHopfieldRandom.Size = new System.Drawing.Size(43, 23);
			this.btnHopfieldRandom.TabIndex = 6;
			this.btnHopfieldRandom.Text = "BW";
			this.btnHopfieldRandom.UseVisualStyleBackColor = true;
			this.btnHopfieldRandom.Click += new System.EventHandler(this.btnHopfieldRandom_Click);
			// 
			// cmbHopfieldValue
			// 
			this.cmbHopfieldValue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.cmbHopfieldValue.ForeColor = System.Drawing.Color.White;
			this.cmbHopfieldValue.FormattingEnabled = true;
			this.cmbHopfieldValue.Items.AddRange(new object[] {
            "0",
            "0.25",
            "0.5",
            "0.75",
            "1"});
			this.cmbHopfieldValue.Location = new System.Drawing.Point(15, 43);
			this.cmbHopfieldValue.Name = "cmbHopfieldValue";
			this.cmbHopfieldValue.Size = new System.Drawing.Size(70, 24);
			this.cmbHopfieldValue.TabIndex = 4;
			this.cmbHopfieldValue.Text = "1";
			// 
			// btnHopfieldClear
			// 
			this.btnHopfieldClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnHopfieldClear.ForeColor = System.Drawing.Color.White;
			this.btnHopfieldClear.Location = new System.Drawing.Point(15, 14);
			this.btnHopfieldClear.Name = "btnHopfieldClear";
			this.btnHopfieldClear.Size = new System.Drawing.Size(47, 23);
			this.btnHopfieldClear.TabIndex = 1;
			this.btnHopfieldClear.Text = "Clear";
			this.btnHopfieldClear.UseVisualStyleBackColor = true;
			this.btnHopfieldClear.Click += new System.EventHandler(this.btnHopfieldClear_Click);
			// 
			// picHopfieldInput
			// 
			this.picHopfieldInput.Location = new System.Drawing.Point(15, 73);
			this.picHopfieldInput.Name = "picHopfieldInput";
			this.picHopfieldInput.Size = new System.Drawing.Size(151, 211);
			this.picHopfieldInput.TabIndex = 0;
			this.picHopfieldInput.TabStop = false;
			this.picHopfieldInput.Click += new System.EventHandler(this.picHopfieldInput_Click);
			// 
			// tabFractals
			// 
			this.tabFractals.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabFractals.Controls.Add(this.tabControlFractals);
			this.tabFractals.Controls.Add(this.picFractalsPicture);
			this.tabFractals.ForeColor = System.Drawing.Color.White;
			this.tabFractals.Location = new System.Drawing.Point(4, 25);
			this.tabFractals.Name = "tabFractals";
			this.tabFractals.Size = new System.Drawing.Size(1302, 372);
			this.tabFractals.TabIndex = 2;
			this.tabFractals.Text = "Fractals";
			// 
			// tabControlFractals
			// 
			this.tabControlFractals.Controls.Add(this.tabPage1);
			this.tabControlFractals.Controls.Add(this.tabPage2);
			this.tabControlFractals.Controls.Add(this.tabPage3);
			this.tabControlFractals.Controls.Add(this.tabPage4);
			this.tabControlFractals.Location = new System.Drawing.Point(375, 5);
			this.tabControlFractals.Name = "tabControlFractals";
			this.tabControlFractals.SelectedIndex = 0;
			this.tabControlFractals.Size = new System.Drawing.Size(468, 364);
			this.tabControlFractals.TabIndex = 43;
			// 
			// tabPage1
			// 
			this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabPage1.Controls.Add(this.numFractalsYOffset);
			this.tabPage1.Controls.Add(this.numFractalsXOffset);
			this.tabPage1.Controls.Add(this.label4);
			this.tabPage1.Controls.Add(this.label3);
			this.tabPage1.Controls.Add(this.label2);
			this.tabPage1.Controls.Add(this.label1);
			this.tabPage1.Controls.Add(this.numFractalsScale);
			this.tabPage1.Controls.Add(this.btnFractalsLoad);
			this.tabPage1.Controls.Add(this.btnFractalsReset);
			this.tabPage1.Controls.Add(this.numFractalsIterations);
			this.tabPage1.Controls.Add(this.btnFractalsDraw);
			this.tabPage1.Controls.Add(this.gridFractalsParameters);
			this.tabPage1.Controls.Add(this.btnFractalsSave);
			this.tabPage1.Controls.Add(this.btnFractalsRandomize);
			this.tabPage1.Controls.Add(this.btnFractalsAttractorDelete);
			this.tabPage1.Controls.Add(this.btnFractalsAttractorAdd);
			this.tabPage1.Location = new System.Drawing.Point(4, 25);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
			this.tabPage1.Size = new System.Drawing.Size(460, 335);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "IFS";
			// 
			// numFractalsYOffset
			// 
			this.numFractalsYOffset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsYOffset.ForeColor = System.Drawing.Color.White;
			this.numFractalsYOffset.Location = new System.Drawing.Point(381, 279);
			this.numFractalsYOffset.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numFractalsYOffset.Minimum = new decimal(new int[] {
            1000,
            0,
            0,
            -2147483648});
			this.numFractalsYOffset.Name = "numFractalsYOffset";
			this.numFractalsYOffset.Size = new System.Drawing.Size(75, 22);
			this.numFractalsYOffset.TabIndex = 57;
			this.numFractalsYOffset.Value = new decimal(new int[] {
            230,
            0,
            0,
            0});
			// 
			// numFractalsXOffset
			// 
			this.numFractalsXOffset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsXOffset.ForeColor = System.Drawing.Color.White;
			this.numFractalsXOffset.Location = new System.Drawing.Point(233, 279);
			this.numFractalsXOffset.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numFractalsXOffset.Minimum = new decimal(new int[] {
            1000,
            0,
            0,
            -2147483648});
			this.numFractalsXOffset.Name = "numFractalsXOffset";
			this.numFractalsXOffset.Size = new System.Drawing.Size(75, 22);
			this.numFractalsXOffset.TabIndex = 56;
			this.numFractalsXOffset.Value = new decimal(new int[] {
            170,
            0,
            0,
            0});
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(314, 281);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(61, 17);
			this.label4.TabIndex = 55;
			this.label4.Text = "Y-offset:";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(167, 281);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(61, 17);
			this.label3.TabIndex = 54;
			this.label3.Text = "X-offset:";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(6, 281);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(47, 17);
			this.label2.TabIndex = 53;
			this.label2.Text = "Scale:";
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(138, 9);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(70, 17);
			this.label1.TabIndex = 52;
			this.label1.Text = "Iterations:";
			// 
			// numFractalsScale
			// 
			this.numFractalsScale.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsScale.DecimalPlaces = 2;
			this.numFractalsScale.ForeColor = System.Drawing.Color.White;
			this.numFractalsScale.Location = new System.Drawing.Point(59, 279);
			this.numFractalsScale.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numFractalsScale.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            131072});
			this.numFractalsScale.Name = "numFractalsScale";
			this.numFractalsScale.Size = new System.Drawing.Size(75, 22);
			this.numFractalsScale.TabIndex = 51;
			this.numFractalsScale.Value = new decimal(new int[] {
            50,
            0,
            0,
            0});
			// 
			// btnFractalsLoad
			// 
			this.btnFractalsLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsLoad.Location = new System.Drawing.Point(6, 6);
			this.btnFractalsLoad.Name = "btnFractalsLoad";
			this.btnFractalsLoad.Size = new System.Drawing.Size(126, 22);
			this.btnFractalsLoad.TabIndex = 50;
			this.btnFractalsLoad.Text = "Load";
			this.btnFractalsLoad.UseVisualStyleBackColor = true;
			this.btnFractalsLoad.Click += new System.EventHandler(this.btnFractalsLoad_Click);
			// 
			// btnFractalsReset
			// 
			this.btnFractalsReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsReset.Location = new System.Drawing.Point(380, 6);
			this.btnFractalsReset.Name = "btnFractalsReset";
			this.btnFractalsReset.Size = new System.Drawing.Size(74, 22);
			this.btnFractalsReset.TabIndex = 49;
			this.btnFractalsReset.Text = "Reset";
			this.btnFractalsReset.UseVisualStyleBackColor = true;
			this.btnFractalsReset.Click += new System.EventHandler(this.btnFractalsReset_Click);
			// 
			// numFractalsIterations
			// 
			this.numFractalsIterations.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsIterations.ForeColor = System.Drawing.Color.White;
			this.numFractalsIterations.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numFractalsIterations.Location = new System.Drawing.Point(214, 6);
			this.numFractalsIterations.Maximum = new decimal(new int[] {
            80000,
            0,
            0,
            0});
			this.numFractalsIterations.Minimum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numFractalsIterations.Name = "numFractalsIterations";
			this.numFractalsIterations.Size = new System.Drawing.Size(67, 22);
			this.numFractalsIterations.TabIndex = 48;
			this.numFractalsIterations.Value = new decimal(new int[] {
            20000,
            0,
            0,
            0});
			// 
			// btnFractalsDraw
			// 
			this.btnFractalsDraw.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsDraw.Location = new System.Drawing.Point(367, 307);
			this.btnFractalsDraw.Name = "btnFractalsDraw";
			this.btnFractalsDraw.Size = new System.Drawing.Size(87, 22);
			this.btnFractalsDraw.TabIndex = 47;
			this.btnFractalsDraw.Text = "Draw";
			this.btnFractalsDraw.UseVisualStyleBackColor = true;
			this.btnFractalsDraw.Click += new System.EventHandler(this.btnFractalsDraw_Click);
			// 
			// gridFractalsParameters
			// 
			this.gridFractalsParameters.AllowDrop = true;
			this.gridFractalsParameters.AllowUserToAddRows = false;
			this.gridFractalsParameters.AllowUserToDeleteRows = false;
			this.gridFractalsParameters.AllowUserToOrderColumns = true;
			this.gridFractalsParameters.AllowUserToResizeRows = false;
			this.gridFractalsParameters.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.gridFractalsParameters.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
			this.gridFractalsParameters.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle5.BackColor = System.Drawing.Color.Black;
			dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
			dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText;
			dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
			dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
			this.gridFractalsParameters.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5;
			this.gridFractalsParameters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
			this.gridFractalsParameters.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.columnA,
            this.columnB,
            this.columnC,
            this.columnD,
            this.columnE,
            this.columnF,
            this.columnProbability});
			dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
			dataGridViewCellStyle6.ForeColor = System.Drawing.Color.White;
			dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.Black;
			dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
			this.gridFractalsParameters.DefaultCellStyle = dataGridViewCellStyle6;
			this.gridFractalsParameters.Location = new System.Drawing.Point(5, 33);
			this.gridFractalsParameters.Name = "gridFractalsParameters";
			this.gridFractalsParameters.RowTemplate.Height = 24;
			this.gridFractalsParameters.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.gridFractalsParameters.ShowEditingIcon = false;
			this.gridFractalsParameters.Size = new System.Drawing.Size(449, 240);
			this.gridFractalsParameters.TabIndex = 46;
			// 
			// columnA
			// 
			this.columnA.HeaderText = "A";
			this.columnA.Name = "columnA";
			// 
			// columnB
			// 
			this.columnB.HeaderText = "B";
			this.columnB.Name = "columnB";
			// 
			// columnC
			// 
			this.columnC.HeaderText = "C";
			this.columnC.Name = "columnC";
			// 
			// columnD
			// 
			this.columnD.HeaderText = "D";
			this.columnD.Name = "columnD";
			// 
			// columnE
			// 
			this.columnE.HeaderText = "E";
			this.columnE.Name = "columnE";
			// 
			// columnF
			// 
			this.columnF.HeaderText = "F";
			this.columnF.Name = "columnF";
			// 
			// columnProbability
			// 
			this.columnProbability.HeaderText = "Probability";
			this.columnProbability.Name = "columnProbability";
			// 
			// btnFractalsSave
			// 
			this.btnFractalsSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsSave.Location = new System.Drawing.Point(286, 6);
			this.btnFractalsSave.Name = "btnFractalsSave";
			this.btnFractalsSave.Size = new System.Drawing.Size(88, 22);
			this.btnFractalsSave.TabIndex = 45;
			this.btnFractalsSave.Text = "Save";
			this.btnFractalsSave.UseVisualStyleBackColor = true;
			this.btnFractalsSave.Click += new System.EventHandler(this.btnFractalsSave_Click);
			// 
			// btnFractalsRandomize
			// 
			this.btnFractalsRandomize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsRandomize.Location = new System.Drawing.Point(249, 307);
			this.btnFractalsRandomize.Name = "btnFractalsRandomize";
			this.btnFractalsRandomize.Size = new System.Drawing.Size(112, 22);
			this.btnFractalsRandomize.TabIndex = 44;
			this.btnFractalsRandomize.Text = "Randomize";
			this.btnFractalsRandomize.UseVisualStyleBackColor = true;
			this.btnFractalsRandomize.Click += new System.EventHandler(this.btnFractalsRandomize_Click);
			// 
			// btnFractalsAttractorDelete
			// 
			this.btnFractalsAttractorDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsAttractorDelete.Location = new System.Drawing.Point(122, 307);
			this.btnFractalsAttractorDelete.Name = "btnFractalsAttractorDelete";
			this.btnFractalsAttractorDelete.Size = new System.Drawing.Size(121, 22);
			this.btnFractalsAttractorDelete.TabIndex = 43;
			this.btnFractalsAttractorDelete.Text = "Delete Attractor";
			this.btnFractalsAttractorDelete.UseVisualStyleBackColor = true;
			this.btnFractalsAttractorDelete.Click += new System.EventHandler(this.btnFractalsAttractorDelete_Click);
			// 
			// btnFractalsAttractorAdd
			// 
			this.btnFractalsAttractorAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsAttractorAdd.Location = new System.Drawing.Point(6, 307);
			this.btnFractalsAttractorAdd.Name = "btnFractalsAttractorAdd";
			this.btnFractalsAttractorAdd.Size = new System.Drawing.Size(110, 22);
			this.btnFractalsAttractorAdd.TabIndex = 42;
			this.btnFractalsAttractorAdd.Text = "Add Attractor";
			this.btnFractalsAttractorAdd.UseVisualStyleBackColor = true;
			this.btnFractalsAttractorAdd.Click += new System.EventHandler(this.btnFractalsAttractorAdd_Click);
			// 
			// tabPage2
			// 
			this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabPage2.Controls.Add(this.numFractalsGOCKoef);
			this.tabPage2.Controls.Add(this.btnFractalsGOCDraw);
			this.tabPage2.Controls.Add(this.numFractalsGOCCount);
			this.tabPage2.Location = new System.Drawing.Point(4, 25);
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
			this.tabPage2.Size = new System.Drawing.Size(460, 335);
			this.tabPage2.TabIndex = 1;
			this.tabPage2.Text = "GOC";
			// 
			// numFractalsGOCKoef
			// 
			this.numFractalsGOCKoef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsGOCKoef.DecimalPlaces = 2;
			this.numFractalsGOCKoef.ForeColor = System.Drawing.Color.White;
			this.numFractalsGOCKoef.Location = new System.Drawing.Point(67, 6);
			this.numFractalsGOCKoef.Maximum = new decimal(new int[] {
            15,
            0,
            0,
            65536});
			this.numFractalsGOCKoef.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            131072});
			this.numFractalsGOCKoef.Name = "numFractalsGOCKoef";
			this.numFractalsGOCKoef.Size = new System.Drawing.Size(55, 22);
			this.numFractalsGOCKoef.TabIndex = 53;
			this.numFractalsGOCKoef.Value = new decimal(new int[] {
            5,
            0,
            0,
            65536});
			// 
			// btnFractalsGOCDraw
			// 
			this.btnFractalsGOCDraw.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsGOCDraw.Location = new System.Drawing.Point(6, 34);
			this.btnFractalsGOCDraw.Name = "btnFractalsGOCDraw";
			this.btnFractalsGOCDraw.Size = new System.Drawing.Size(116, 22);
			this.btnFractalsGOCDraw.TabIndex = 52;
			this.btnFractalsGOCDraw.Text = "Draw";
			this.btnFractalsGOCDraw.UseVisualStyleBackColor = true;
			this.btnFractalsGOCDraw.Click += new System.EventHandler(this.btnFractalsGOCDraw_Click);
			// 
			// numFractalsGOCCount
			// 
			this.numFractalsGOCCount.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsGOCCount.ForeColor = System.Drawing.Color.White;
			this.numFractalsGOCCount.Location = new System.Drawing.Point(6, 6);
			this.numFractalsGOCCount.Maximum = new decimal(new int[] {
            13,
            0,
            0,
            0});
			this.numFractalsGOCCount.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
			this.numFractalsGOCCount.Name = "numFractalsGOCCount";
			this.numFractalsGOCCount.Size = new System.Drawing.Size(55, 22);
			this.numFractalsGOCCount.TabIndex = 51;
			this.numFractalsGOCCount.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
			// 
			// tabPage3
			// 
			this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabPage3.Controls.Add(this.cmbFractalsTEAColor);
			this.tabPage3.Controls.Add(this.label6);
			this.tabPage3.Controls.Add(this.label5);
			this.tabPage3.Controls.Add(this.numFractalsTEACim);
			this.tabPage3.Controls.Add(this.numFractalsTEACre);
			this.tabPage3.Controls.Add(this.checkFractalsTEAConstant);
			this.tabPage3.Controls.Add(this.btnFractalsTEAReset);
			this.tabPage3.Location = new System.Drawing.Point(4, 25);
			this.tabPage3.Name = "tabPage3";
			this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
			this.tabPage3.Size = new System.Drawing.Size(460, 335);
			this.tabPage3.TabIndex = 2;
			this.tabPage3.Text = "TEA";
			// 
			// cmbFractalsTEAColor
			// 
			this.cmbFractalsTEAColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.cmbFractalsTEAColor.ForeColor = System.Drawing.Color.White;
			this.cmbFractalsTEAColor.FormattingEnabled = true;
			this.cmbFractalsTEAColor.Items.AddRange(new object[] {
            "BlackWhite",
            "Ultra Fractal",
            "Blue"});
			this.cmbFractalsTEAColor.Location = new System.Drawing.Point(6, 92);
			this.cmbFractalsTEAColor.Name = "cmbFractalsTEAColor";
			this.cmbFractalsTEAColor.Size = new System.Drawing.Size(116, 24);
			this.cmbFractalsTEAColor.TabIndex = 59;
			this.cmbFractalsTEAColor.Text = "BlackWhite";
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(7, 62);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(26, 17);
			this.label6.TabIndex = 58;
			this.label6.Text = "Im:";
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(7, 35);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(30, 17);
			this.label5.TabIndex = 57;
			this.label5.Text = "Re:";
			// 
			// numFractalsTEACim
			// 
			this.numFractalsTEACim.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsTEACim.DecimalPlaces = 4;
			this.numFractalsTEACim.Enabled = false;
			this.numFractalsTEACim.ForeColor = System.Drawing.Color.White;
			this.numFractalsTEACim.Location = new System.Drawing.Point(39, 62);
			this.numFractalsTEACim.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
			this.numFractalsTEACim.Minimum = new decimal(new int[] {
            10000,
            0,
            0,
            -2147483648});
			this.numFractalsTEACim.Name = "numFractalsTEACim";
			this.numFractalsTEACim.Size = new System.Drawing.Size(83, 22);
			this.numFractalsTEACim.TabIndex = 56;
			this.numFractalsTEACim.Value = new decimal(new int[] {
            1,
            0,
            0,
            131072});
			// 
			// numFractalsTEACre
			// 
			this.numFractalsTEACre.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numFractalsTEACre.DecimalPlaces = 4;
			this.numFractalsTEACre.Enabled = false;
			this.numFractalsTEACre.ForeColor = System.Drawing.Color.White;
			this.numFractalsTEACre.Location = new System.Drawing.Point(39, 33);
			this.numFractalsTEACre.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
			this.numFractalsTEACre.Minimum = new decimal(new int[] {
            10000,
            0,
            0,
            -2147483648});
			this.numFractalsTEACre.Name = "numFractalsTEACre";
			this.numFractalsTEACre.Size = new System.Drawing.Size(83, 22);
			this.numFractalsTEACre.TabIndex = 55;
			this.numFractalsTEACre.Value = new decimal(new int[] {
            285,
            0,
            0,
            196608});
			// 
			// checkFractalsTEAConstant
			// 
			this.checkFractalsTEAConstant.AutoSize = true;
			this.checkFractalsTEAConstant.Location = new System.Drawing.Point(6, 6);
			this.checkFractalsTEAConstant.Name = "checkFractalsTEAConstant";
			this.checkFractalsTEAConstant.Size = new System.Drawing.Size(86, 21);
			this.checkFractalsTEAConstant.TabIndex = 54;
			this.checkFractalsTEAConstant.Text = "Constant";
			this.checkFractalsTEAConstant.UseVisualStyleBackColor = true;
			this.checkFractalsTEAConstant.CheckedChanged += new System.EventHandler(this.checkFractalsTEAConstant_CheckedChanged);
			// 
			// btnFractalsTEAReset
			// 
			this.btnFractalsTEAReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsTEAReset.Location = new System.Drawing.Point(6, 122);
			this.btnFractalsTEAReset.Name = "btnFractalsTEAReset";
			this.btnFractalsTEAReset.Size = new System.Drawing.Size(116, 22);
			this.btnFractalsTEAReset.TabIndex = 53;
			this.btnFractalsTEAReset.Text = "Draw";
			this.btnFractalsTEAReset.UseVisualStyleBackColor = true;
			this.btnFractalsTEAReset.Click += new System.EventHandler(this.btnFractalsTEAReset_Click);
			// 
			// tabPage4
			// 
			this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabPage4.Controls.Add(this.btnFractalsSaveImage);
			this.tabPage4.Location = new System.Drawing.Point(4, 25);
			this.tabPage4.Name = "tabPage4";
			this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
			this.tabPage4.Size = new System.Drawing.Size(460, 335);
			this.tabPage4.TabIndex = 3;
			this.tabPage4.Text = "General";
			// 
			// btnFractalsSaveImage
			// 
			this.btnFractalsSaveImage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnFractalsSaveImage.Location = new System.Drawing.Point(6, 6);
			this.btnFractalsSaveImage.Name = "btnFractalsSaveImage";
			this.btnFractalsSaveImage.Size = new System.Drawing.Size(116, 22);
			this.btnFractalsSaveImage.TabIndex = 55;
			this.btnFractalsSaveImage.Text = "Save";
			this.btnFractalsSaveImage.UseVisualStyleBackColor = true;
			this.btnFractalsSaveImage.Click += new System.EventHandler(this.btnFractalsTeaSave_Click);
			// 
			// picFractalsPicture
			// 
			this.picFractalsPicture.Location = new System.Drawing.Point(3, 3);
			this.picFractalsPicture.Name = "picFractalsPicture";
			this.picFractalsPicture.Size = new System.Drawing.Size(366, 366);
			this.picFractalsPicture.TabIndex = 0;
			this.picFractalsPicture.TabStop = false;
			// 
			// tabChaos
			// 
			this.tabChaos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabChaos.ForeColor = System.Drawing.Color.Silver;
			this.tabChaos.Location = new System.Drawing.Point(4, 25);
			this.tabChaos.Name = "tabChaos";
			this.tabChaos.Size = new System.Drawing.Size(1302, 372);
			this.tabChaos.TabIndex = 3;
			this.tabChaos.Text = "Chaos";
			// 
			// tabCellular
			// 
			this.tabCellular.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.tabCellular.Controls.Add(this.label10);
			this.tabCellular.Controls.Add(this.label9);
			this.tabCellular.Controls.Add(this.txtCABirth);
			this.tabCellular.Controls.Add(this.txtCASurvive);
			this.tabCellular.Controls.Add(this.btnCARandom);
			this.tabCellular.Controls.Add(this.btnCAClear);
			this.tabCellular.Controls.Add(this.label8);
			this.tabCellular.Controls.Add(this.label7);
			this.tabCellular.Controls.Add(this.numCAPixel);
			this.tabCellular.Controls.Add(this.numCADelay);
			this.tabCellular.Controls.Add(this.btnCARun);
			this.tabCellular.Controls.Add(this.btnCALoad);
			this.tabCellular.Controls.Add(this.btnCASave);
			this.tabCellular.Controls.Add(this.picCAWorld);
			this.tabCellular.ForeColor = System.Drawing.Color.Silver;
			this.tabCellular.Location = new System.Drawing.Point(4, 25);
			this.tabCellular.Name = "tabCellular";
			this.tabCellular.Size = new System.Drawing.Size(1302, 372);
			this.tabCellular.TabIndex = 4;
			this.tabCellular.Text = "Cellular Automata";
			// 
			// btnCAClear
			// 
			this.btnCAClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCAClear.Location = new System.Drawing.Point(375, 143);
			this.btnCAClear.Name = "btnCAClear";
			this.btnCAClear.Size = new System.Drawing.Size(121, 22);
			this.btnCAClear.TabIndex = 54;
			this.btnCAClear.Text = "Clear";
			this.btnCAClear.UseVisualStyleBackColor = true;
			this.btnCAClear.Click += new System.EventHandler(this.btnCAClear_Click);
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(375, 89);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(48, 17);
			this.label8.TabIndex = 53;
			this.label8.Text = "Delay:";
			// 
			// label7
			// 
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(375, 61);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(48, 17);
			this.label7.TabIndex = 52;
			this.label7.Text = "Zoom:";
			// 
			// numCAPixel
			// 
			this.numCAPixel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numCAPixel.ForeColor = System.Drawing.Color.White;
			this.numCAPixel.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numCAPixel.Location = new System.Drawing.Point(429, 59);
			this.numCAPixel.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
			this.numCAPixel.Name = "numCAPixel";
			this.numCAPixel.Size = new System.Drawing.Size(67, 22);
			this.numCAPixel.TabIndex = 51;
			this.numCAPixel.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.numCAPixel.ValueChanged += new System.EventHandler(this.numCAPixel_ValueChanged);
			// 
			// numCADelay
			// 
			this.numCADelay.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.numCADelay.ForeColor = System.Drawing.Color.White;
			this.numCADelay.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
			this.numCADelay.Location = new System.Drawing.Point(429, 87);
			this.numCADelay.Maximum = new decimal(new int[] {
            2000,
            0,
            0,
            0});
			this.numCADelay.Minimum = new decimal(new int[] {
            16,
            0,
            0,
            0});
			this.numCADelay.Name = "numCADelay";
			this.numCADelay.Size = new System.Drawing.Size(67, 22);
			this.numCADelay.TabIndex = 50;
			this.numCADelay.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
			// 
			// btnCARun
			// 
			this.btnCARun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCARun.Location = new System.Drawing.Point(375, 115);
			this.btnCARun.Name = "btnCARun";
			this.btnCARun.Size = new System.Drawing.Size(121, 22);
			this.btnCARun.TabIndex = 48;
			this.btnCARun.Text = "Run";
			this.btnCARun.UseVisualStyleBackColor = true;
			this.btnCARun.Click += new System.EventHandler(this.btnCARun_Click);
			// 
			// btnCALoad
			// 
			this.btnCALoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCALoad.Location = new System.Drawing.Point(375, 3);
			this.btnCALoad.Name = "btnCALoad";
			this.btnCALoad.Size = new System.Drawing.Size(121, 22);
			this.btnCALoad.TabIndex = 47;
			this.btnCALoad.Text = "Load";
			this.btnCALoad.UseVisualStyleBackColor = true;
			this.btnCALoad.Click += new System.EventHandler(this.btnCALoad_Click);
			// 
			// btnCASave
			// 
			this.btnCASave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCASave.Location = new System.Drawing.Point(375, 31);
			this.btnCASave.Name = "btnCASave";
			this.btnCASave.Size = new System.Drawing.Size(121, 22);
			this.btnCASave.TabIndex = 46;
			this.btnCASave.Text = "Save";
			this.btnCASave.UseVisualStyleBackColor = true;
			this.btnCASave.Click += new System.EventHandler(this.btnCASave_Click);
			// 
			// picCAWorld
			// 
			this.picCAWorld.Location = new System.Drawing.Point(3, 3);
			this.picCAWorld.Name = "picCAWorld";
			this.picCAWorld.Size = new System.Drawing.Size(366, 366);
			this.picCAWorld.TabIndex = 0;
			this.picCAWorld.TabStop = false;
			this.picCAWorld.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picCAWorld_MouseMove);
			this.picCAWorld.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picCAWorld_MouseMove);
			this.picCAWorld.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picCAWorld_MouseUp);
			// 
			// txtLog
			// 
			this.txtLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.txtLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
			this.txtLog.ForeColor = System.Drawing.Color.Silver;
			this.txtLog.Location = new System.Drawing.Point(12, 419);
			this.txtLog.Multiline = true;
			this.txtLog.Name = "txtLog";
			this.txtLog.ReadOnly = true;
			this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtLog.Size = new System.Drawing.Size(362, 259);
			this.txtLog.TabIndex = 1;
			// 
			// openFileDialog1
			// 
			this.openFileDialog1.DefaultExt = "txt";
			this.openFileDialog1.FileName = "openFileDialog1";
			// 
			// chartLSP
			// 
			this.chartLSP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.chartLSP.BackColor = System.Drawing.Color.Black;
			chartArea1.AxisX.TitleForeColor = System.Drawing.Color.Silver;
			chartArea1.AxisX2.TitleForeColor = System.Drawing.Color.Silver;
			chartArea1.AxisY.TitleForeColor = System.Drawing.Color.Silver;
			customLabel1.ForeColor = System.Drawing.Color.Lime;
			chartArea1.AxisY2.CustomLabels.Add(customLabel1);
			chartArea1.AxisY2.TitleForeColor = System.Drawing.Color.Silver;
			chartArea1.Name = "ChartArea1";
			this.chartLSP.ChartAreas.Add(chartArea1);
			legend1.BackColor = System.Drawing.Color.Black;
			legend1.ForeColor = System.Drawing.Color.Silver;
			legend1.Name = "Legend1";
			this.chartLSP.Legends.Add(legend1);
			this.chartLSP.Location = new System.Drawing.Point(928, 419);
			this.chartLSP.Name = "chartLSP";
			series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
			series1.ChartArea = "ChartArea1";
			series1.Color = System.Drawing.Color.Lime;
			series1.LabelBackColor = System.Drawing.Color.Green;
			series1.LabelForeColor = System.Drawing.Color.Maroon;
			series1.Legend = "Legend1";
			series1.Name = "Series1";
			this.chartLSP.Series.Add(series1);
			this.chartLSP.Size = new System.Drawing.Size(394, 259);
			this.chartLSP.TabIndex = 3;
			this.chartLSP.Text = "chart";
			// 
			// chartStatus
			// 
			this.chartStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.chartStatus.BackColor = System.Drawing.Color.Black;
			chartArea2.AxisX.TitleForeColor = System.Drawing.Color.Silver;
			chartArea2.AxisX2.TitleForeColor = System.Drawing.Color.Silver;
			chartArea2.AxisY.TitleForeColor = System.Drawing.Color.Silver;
			customLabel2.ForeColor = System.Drawing.Color.Lime;
			chartArea2.AxisY2.CustomLabels.Add(customLabel2);
			chartArea2.AxisY2.TitleForeColor = System.Drawing.Color.Silver;
			chartArea2.Name = "ChartArea1";
			this.chartStatus.ChartAreas.Add(chartArea2);
			legend2.BackColor = System.Drawing.Color.Black;
			legend2.ForeColor = System.Drawing.Color.Silver;
			legend2.Name = "Legend1";
			this.chartStatus.Legends.Add(legend2);
			this.chartStatus.Location = new System.Drawing.Point(380, 419);
			this.chartStatus.Name = "chartStatus";
			series2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
			series2.ChartArea = "ChartArea1";
			series2.Color = System.Drawing.Color.Lime;
			series2.LabelBackColor = System.Drawing.Color.Green;
			series2.LabelForeColor = System.Drawing.Color.Maroon;
			series2.Legend = "Legend1";
			series2.Name = "Series1";
			this.chartStatus.Series.Add(series2);
			this.chartStatus.Size = new System.Drawing.Size(535, 259);
			this.chartStatus.TabIndex = 4;
			this.chartStatus.Text = "chart";
			// 
			// timerCA
			// 
			this.timerCA.Interval = 20;
			this.timerCA.Tag = "off";
			this.timerCA.Tick += new System.EventHandler(this.timerCA_Tick);
			// 
			// btnCARandom
			// 
			this.btnCARandom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCARandom.Location = new System.Drawing.Point(375, 171);
			this.btnCARandom.Name = "btnCARandom";
			this.btnCARandom.Size = new System.Drawing.Size(121, 22);
			this.btnCARandom.TabIndex = 55;
			this.btnCARandom.Text = "Random";
			this.btnCARandom.UseVisualStyleBackColor = true;
			this.btnCARandom.Click += new System.EventHandler(this.btnCARandom_Click);
			// 
			// txtCASurvive
			// 
			this.txtCASurvive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.txtCASurvive.ForeColor = System.Drawing.Color.Silver;
			this.txtCASurvive.Location = new System.Drawing.Point(440, 199);
			this.txtCASurvive.Name = "txtCASurvive";
			this.txtCASurvive.Size = new System.Drawing.Size(56, 22);
			this.txtCASurvive.TabIndex = 56;
			this.txtCASurvive.Text = "23";
			// 
			// txtCABirth
			// 
			this.txtCABirth.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
			this.txtCABirth.ForeColor = System.Drawing.Color.Silver;
			this.txtCABirth.Location = new System.Drawing.Point(440, 227);
			this.txtCABirth.Name = "txtCABirth";
			this.txtCABirth.Size = new System.Drawing.Size(56, 22);
			this.txtCABirth.TabIndex = 57;
			this.txtCABirth.Text = "3";
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(375, 202);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(59, 17);
			this.label9.TabIndex = 58;
			this.label9.Text = "Survive:";
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(375, 230);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(41, 17);
			this.label10.TabIndex = 59;
			this.label10.Text = "Birth:";
			// 
			// Form1
			// 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			this.BackColor = System.Drawing.Color.Black;
			this.ClientSize = new System.Drawing.Size(1334, 690);
			this.Controls.Add(this.chartStatus);
			this.Controls.Add(this.chartLSP);
			this.Controls.Add(this.txtLog);
			this.Controls.Add(this.tabControl);
			this.Name = "Form1";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "NAVY";
			this.Load += new System.EventHandler(this.Form1_Load);
			this.tabControl.ResumeLayout(false);
			this.tabNeural.ResumeLayout(false);
			this.tabNeural.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.numNeuralEpoch)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridNeuralNeurons)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridNeuralLayers)).EndInit();
			this.tabHopfield.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.picHopfieldInput)).EndInit();
			this.tabFractals.ResumeLayout(false);
			this.tabControlFractals.ResumeLayout(false);
			this.tabPage1.ResumeLayout(false);
			this.tabPage1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsYOffset)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsXOffset)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsScale)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsIterations)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridFractalsParameters)).EndInit();
			this.tabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.numFractalsGOCKoef)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsGOCCount)).EndInit();
			this.tabPage3.ResumeLayout(false);
			this.tabPage3.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsTEACim)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.numFractalsTEACre)).EndInit();
			this.tabPage4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.picFractalsPicture)).EndInit();
			this.tabCellular.ResumeLayout(false);
			this.tabCellular.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.numCAPixel)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.numCADelay)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.picCAWorld)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.chartLSP)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.chartStatus)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

        }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.label24 = new System.Windows.Forms.Label();
     this.Abs4kOut = new System.Windows.Forms.NumericUpDown();
     this.Abs8kOut = new System.Windows.Forms.NumericUpDown();
     this.Abs8k = new System.Windows.Forms.TrackBar();
     this.Abs4k = new System.Windows.Forms.TrackBar();
     this.Label8 = new System.Windows.Forms.Label();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label9 = new System.Windows.Forms.Label();
     this.Abs2k = new System.Windows.Forms.TrackBar();
     this.Abs2kOut = new System.Windows.Forms.NumericUpDown();
     this.Abs1kOut = new System.Windows.Forms.NumericUpDown();
     this.Abs1k = new System.Windows.Forms.TrackBar();
     this.Label10 = new System.Windows.Forms.Label();
     this.Label11 = new System.Windows.Forms.Label();
     this.Label7 = new System.Windows.Forms.Label();
     this.Label12 = new System.Windows.Forms.Label();
     this.Label13 = new System.Windows.Forms.Label();
     this.Abs500 = new System.Windows.Forms.TrackBar();
     this.Abs500Out = new System.Windows.Forms.NumericUpDown();
     this.Abs250Out = new System.Windows.Forms.NumericUpDown();
     this.Abs125Out = new System.Windows.Forms.NumericUpDown();
     this.Abs250 = new System.Windows.Forms.TrackBar();
     this.Abs125 = new System.Windows.Forms.TrackBar();
     this.Abs63Out = new System.Windows.Forms.NumericUpDown();
     this.Abs63 = new System.Windows.Forms.TrackBar();
     this.label18 = new System.Windows.Forms.Label();
     this.AbsFlat = new System.Windows.Forms.TrackBar();
     this.ScatFlat = new System.Windows.Forms.TrackBar();
     this.Scat8kOut = new System.Windows.Forms.NumericUpDown();
     this.Scat8kv = new System.Windows.Forms.TrackBar();
     this.Scat4kv = new System.Windows.Forms.TrackBar();
     this.Scat4kOut = new System.Windows.Forms.NumericUpDown();
     this.Scat2kOut = new System.Windows.Forms.NumericUpDown();
     this.Scat2kv = new System.Windows.Forms.TrackBar();
     this.Scat1kv = new System.Windows.Forms.TrackBar();
     this.Scat1kOut = new System.Windows.Forms.NumericUpDown();
     this.Scat500Out = new System.Windows.Forms.NumericUpDown();
     this.Scat500v = new System.Windows.Forms.TrackBar();
     this.Scat250v = new System.Windows.Forms.TrackBar();
     this.Scat250Out = new System.Windows.Forms.NumericUpDown();
     this.Scat125Out = new System.Windows.Forms.NumericUpDown();
     this.Scat125v = new System.Windows.Forms.TrackBar();
     this.Scat63v = new System.Windows.Forms.TrackBar();
     this.Scat63Out = new System.Windows.Forms.NumericUpDown();
     this.label22 = new System.Windows.Forms.Label();
     this.SmartMat_Display = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.Calculate = new System.Windows.Forms.Button();
     this.RTBox = new System.Windows.Forms.CheckBox();
     this.ISBox = new System.Windows.Forms.CheckBox();
     this.Tabs = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.BTM_ED = new System.Windows.Forms.CheckBox();
     this.Specular_Trace = new System.Windows.Forms.CheckBox();
     this.Spec_RayCount = new System.Windows.Forms.NumericUpDown();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.EdgeFreq = new System.Windows.Forms.CheckBox();
     this.Label21 = new System.Windows.Forms.Label();
     this.Atten_Method = new System.Windows.Forms.ComboBox();
     this.Label19 = new System.Windows.Forms.Label();
     this.Air_Pressure = new System.Windows.Forms.NumericUpDown();
     this.Label3 = new System.Windows.Forms.Label();
     this.Rel_Humidity = new System.Windows.Forms.NumericUpDown();
     this.AirTemp = new System.Windows.Forms.Label();
     this.Air_Temp = new System.Windows.Forms.NumericUpDown();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.Label17 = new System.Windows.Forms.Label();
     this.ReceiverSelection = new System.Windows.Forms.ComboBox();
     this.COTime = new System.Windows.Forms.Label();
     this.CO_TIME = new System.Windows.Forms.NumericUpDown();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this.RT_Count = new System.Windows.Forms.NumericUpDown();
     this.Image_Order = new System.Windows.Forms.NumericUpDown();
     this.TabPage4 = new System.Windows.Forms.TabPage();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.Absorption = new System.Windows.Forms.TabPage();
     this.Scattering = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.label37 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.label44 = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.Transparency = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
     this.Trans_Flat = new System.Windows.Forms.TrackBar();
     this.Trans_8k_Out = new System.Windows.Forms.NumericUpDown();
     this.label29 = new System.Windows.Forms.Label();
     this.Trans_8kv = new System.Windows.Forms.TrackBar();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.Trans_4k_Out = new System.Windows.Forms.NumericUpDown();
     this.Trans_4kv = new System.Windows.Forms.TrackBar();
     this.label33 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.Trans_2k_Out = new System.Windows.Forms.NumericUpDown();
     this.label35 = new System.Windows.Forms.Label();
     this.Trans_2kv = new System.Windows.Forms.TrackBar();
     this.label36 = new System.Windows.Forms.Label();
     this.Trans_63v = new System.Windows.Forms.TrackBar();
     this.Trans_63_Out = new System.Windows.Forms.NumericUpDown();
     this.Trans_1k_Out = new System.Windows.Forms.NumericUpDown();
     this.Trans_1kv = new System.Windows.Forms.TrackBar();
     this.Trans_125_Out = new System.Windows.Forms.NumericUpDown();
     this.Trans_125v = new System.Windows.Forms.TrackBar();
     this.Trans_500_Out = new System.Windows.Forms.NumericUpDown();
     this.Trans_250v = new System.Windows.Forms.TrackBar();
     this.Trans_500v = new System.Windows.Forms.TrackBar();
     this.Trans_250_Out = new System.Windows.Forms.NumericUpDown();
     this.Trans_Check = new System.Windows.Forms.CheckBox();
     this.label28 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.Abs_Designer = new System.Windows.Forms.Button();
     this.LayerLbl = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.SaveAbs = new System.Windows.Forms.Button();
     this.Material_Name = new System.Windows.Forms.MaskedTextBox();
     this.LayerDisplay = new System.Windows.Forms.ComboBox();
     this.Material_Lib = new System.Windows.Forms.ListBox();
     this.Mat_Lbl = new System.Windows.Forms.Label();
     this.TabPage3 = new System.Windows.Forms.TabPage();
     this.Source_Aim = new System.Windows.Forms.ComboBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.Alt_Choice = new System.Windows.Forms.NumericUpDown();
     this.Azi_Choice = new System.Windows.Forms.NumericUpDown();
     this.label25 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.SourceList = new System.Windows.Forms.CheckedListBox();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.IS_Path_Box = new System.Windows.Forms.CheckedListBox();
     this.Analysis_View = new ZedGraph.ZedGraphControl();
     this.Normalize_Graph = new System.Windows.Forms.CheckBox();
     this.LockUserScale = new System.Windows.Forms.CheckBox();
     this.Graph_Octave = new System.Windows.Forms.ComboBox();
     this.Graph_Type = new System.Windows.Forms.ComboBox();
     this.Auralisation = new System.Windows.Forms.Button();
     this.label20 = new System.Windows.Forms.Label();
     this.Receiver_Choice = new System.Windows.Forms.ComboBox();
     this.PathCount = new System.Windows.Forms.Label();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.SRT8 = new System.Windows.Forms.Label();
     this.Parameter_Choice = new System.Windows.Forms.ComboBox();
     this.SRT7 = new System.Windows.Forms.Label();
     this.SRT6 = new System.Windows.Forms.Label();
     this.SRT2 = new System.Windows.Forms.Label();
     this.SRT5 = new System.Windows.Forms.Label();
     this.SRT3 = new System.Windows.Forms.Label();
     this.SRT4 = new System.Windows.Forms.Label();
     this.SRT1 = new System.Windows.Forms.Label();
     this.ISOCOMP = new System.Windows.Forms.Label();
     this.Label5 = new System.Windows.Forms.Label();
     this.ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.FromMeshSphereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.FromPointInputToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.DirectionalSourceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.SelectSourceToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.SelectASphereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.FromSphereObjectToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.FromPointInputToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.ToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.SP_menu = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveParameterResultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.savePTBFormatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveVRSpectraToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Abs4kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs8kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs8k)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs4k)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs2k)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs2kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs1kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs1k)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs500)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs500Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs250Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs125Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs250)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs125)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs63Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs63)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AbsFlat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ScatFlat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat8kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat8kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat4kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat4kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat2kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat2kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat1kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat1kOut)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat500Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat500v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat250v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat250Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat125Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat125v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat63v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat63Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmartMat_Display)).BeginInit();
     this.Tabs.SuspendLayout();
     this.TabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Spec_RayCount)).BeginInit();
     this.GroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Air_Pressure)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rel_Humidity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Air_Temp)).BeginInit();
     this.GroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CO_TIME)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RT_Count)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Image_Order)).BeginInit();
     this.TabPage4.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.Absorption.SuspendLayout();
     this.Scattering.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.Transparency.SuspendLayout();
     this.tableLayoutPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_Flat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_8k_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_8kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_4k_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_4kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_2k_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_2kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_63v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_63_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_1k_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_1kv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_125_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_125v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_500_Out)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_250v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_500v)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_250_Out)).BeginInit();
     this.groupBox5.SuspendLayout();
     this.TabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Alt_Choice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Azi_Choice)).BeginInit();
     this.tableLayoutPanel3.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SP_menu.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel4.ColumnCount = 4;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel4.Controls.Add(this.label24, 0, 9);
     this.tableLayoutPanel4.Controls.Add(this.Abs4kOut, 2, 7);
     this.tableLayoutPanel4.Controls.Add(this.Abs8kOut, 2, 8);
     this.tableLayoutPanel4.Controls.Add(this.Abs8k, 1, 8);
     this.tableLayoutPanel4.Controls.Add(this.Abs4k, 1, 7);
     this.tableLayoutPanel4.Controls.Add(this.Label8, 0, 8);
     this.tableLayoutPanel4.Controls.Add(this.Label6, 0, 7);
     this.tableLayoutPanel4.Controls.Add(this.Label9, 0, 6);
     this.tableLayoutPanel4.Controls.Add(this.Abs2k, 1, 6);
     this.tableLayoutPanel4.Controls.Add(this.Abs2kOut, 2, 6);
     this.tableLayoutPanel4.Controls.Add(this.Abs1kOut, 2, 5);
     this.tableLayoutPanel4.Controls.Add(this.Abs1k, 1, 5);
     this.tableLayoutPanel4.Controls.Add(this.Label10, 0, 5);
     this.tableLayoutPanel4.Controls.Add(this.Label11, 0, 4);
     this.tableLayoutPanel4.Controls.Add(this.Label7, 0, 3);
     this.tableLayoutPanel4.Controls.Add(this.Label12, 0, 2);
     this.tableLayoutPanel4.Controls.Add(this.Label13, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.Abs500, 1, 4);
     this.tableLayoutPanel4.Controls.Add(this.Abs500Out, 2, 4);
     this.tableLayoutPanel4.Controls.Add(this.Abs250Out, 2, 3);
     this.tableLayoutPanel4.Controls.Add(this.Abs125Out, 2, 2);
     this.tableLayoutPanel4.Controls.Add(this.Abs250, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.Abs125, 1, 2);
     this.tableLayoutPanel4.Controls.Add(this.Abs63Out, 2, 1);
     this.tableLayoutPanel4.Controls.Add(this.Abs63, 1, 1);
     this.tableLayoutPanel4.Controls.Add(this.label18, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.AbsFlat, 1, 9);
     this.tableLayoutPanel4.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(6, 8);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 11;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 15F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 5F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(365, 328);
     this.tableLayoutPanel4.TabIndex = 29;
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(3, 215);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(53, 25);
     this.label24.TabIndex = 38;
     this.label24.Text = "Flatten All";
     this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Abs4kOut
     //
     this.Abs4kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs4kOut.AutoSize = true;
     this.Abs4kOut.Location = new System.Drawing.Point(298, 168);
     this.Abs4kOut.Name = "Abs4kOut";
     this.Abs4kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs4kOut.Size = new System.Drawing.Size(54, 20);
     this.Abs4kOut.TabIndex = 32;
     this.Abs4kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs4kOut.ValueChanged += new System.EventHandler(this.Abs4kOut_ValueChanged);
     //
     // Abs8kOut
     //
     this.Abs8kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs8kOut.AutoSize = true;
     this.Abs8kOut.Location = new System.Drawing.Point(298, 193);
     this.Abs8kOut.Name = "Abs8kOut";
     this.Abs8kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs8kOut.Size = new System.Drawing.Size(54, 20);
     this.Abs8kOut.TabIndex = 33;
     this.Abs8kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs8kOut.ValueChanged += new System.EventHandler(this.Abs8kOut_ValueChanged);
     //
     // Abs8k
     //
     this.Abs8k.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs8k.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs8k.LargeChange = 10;
     this.Abs8k.Location = new System.Drawing.Point(103, 193);
     this.Abs8k.Maximum = 100;
     this.Abs8k.Name = "Abs8k";
     this.Abs8k.Size = new System.Drawing.Size(189, 19);
     this.Abs8k.TabIndex = 14;
     this.Abs8k.TickFrequency = 10;
     this.Abs8k.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs8k.Value = 1;
     this.Abs8k.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Abs4k
     //
     this.Abs4k.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs4k.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs4k.LargeChange = 10;
     this.Abs4k.Location = new System.Drawing.Point(103, 168);
     this.Abs4k.Maximum = 100;
     this.Abs4k.Name = "Abs4k";
     this.Abs4k.Size = new System.Drawing.Size(189, 19);
     this.Abs4k.TabIndex = 12;
     this.Abs4k.TickFrequency = 10;
     this.Abs4k.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs4k.Value = 1;
     this.Abs4k.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Label8
     //
     this.Label8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label8.AutoSize = true;
     this.Label8.Location = new System.Drawing.Point(3, 190);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(35, 25);
     this.Label8.TabIndex = 24;
     this.Label8.Text = "8 kHz";
     this.Label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label6
     //
     this.Label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label6.AutoSize = true;
     this.Label6.Location = new System.Drawing.Point(3, 165);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(35, 25);
     this.Label6.TabIndex = 22;
     this.Label6.Text = "4 kHz";
     this.Label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label9
     //
     this.Label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label9.AutoSize = true;
     this.Label9.Location = new System.Drawing.Point(3, 140);
     this.Label9.Name = "Label9";
     this.Label9.Size = new System.Drawing.Size(35, 25);
     this.Label9.TabIndex = 21;
     this.Label9.Text = "2 kHz";
     this.Label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Abs2k
     //
     this.Abs2k.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs2k.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs2k.LargeChange = 10;
     this.Abs2k.Location = new System.Drawing.Point(103, 143);
     this.Abs2k.Maximum = 100;
     this.Abs2k.Name = "Abs2k";
     this.Abs2k.Size = new System.Drawing.Size(189, 19);
     this.Abs2k.TabIndex = 11;
     this.Abs2k.TickFrequency = 10;
     this.Abs2k.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs2k.Value = 1;
     this.Abs2k.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Abs2kOut
     //
     this.Abs2kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs2kOut.AutoSize = true;
     this.Abs2kOut.Location = new System.Drawing.Point(298, 143);
     this.Abs2kOut.Name = "Abs2kOut";
     this.Abs2kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs2kOut.Size = new System.Drawing.Size(54, 20);
     this.Abs2kOut.TabIndex = 31;
     this.Abs2kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs2kOut.ValueChanged += new System.EventHandler(this.Abs2kOut_ValueChanged);
     //
     // Abs1kOut
     //
     this.Abs1kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs1kOut.AutoSize = true;
     this.Abs1kOut.Location = new System.Drawing.Point(298, 118);
     this.Abs1kOut.Name = "Abs1kOut";
     this.Abs1kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs1kOut.Size = new System.Drawing.Size(54, 20);
     this.Abs1kOut.TabIndex = 30;
     this.Abs1kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs1kOut.ValueChanged += new System.EventHandler(this.Abs1kOut_ValueChanged);
     //
     // Abs1k
     //
     this.Abs1k.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs1k.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs1k.LargeChange = 10;
     this.Abs1k.Location = new System.Drawing.Point(103, 118);
     this.Abs1k.Maximum = 100;
     this.Abs1k.Name = "Abs1k";
     this.Abs1k.Size = new System.Drawing.Size(189, 19);
     this.Abs1k.TabIndex = 10;
     this.Abs1k.TickFrequency = 10;
     this.Abs1k.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs1k.Value = 1;
     this.Abs1k.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Label10
     //
     this.Label10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label10.AutoSize = true;
     this.Label10.Location = new System.Drawing.Point(3, 115);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(35, 25);
     this.Label10.TabIndex = 20;
     this.Label10.Text = "1 kHz";
     this.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label11
     //
     this.Label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label11.AutoSize = true;
     this.Label11.Location = new System.Drawing.Point(3, 90);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(41, 25);
     this.Label11.TabIndex = 19;
     this.Label11.Text = "500 Hz";
     this.Label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label7
     //
     this.Label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label7.AutoSize = true;
     this.Label7.Location = new System.Drawing.Point(3, 65);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(41, 25);
     this.Label7.TabIndex = 25;
     this.Label7.Text = "250 Hz";
     this.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label12
     //
     this.Label12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label12.AutoSize = true;
     this.Label12.Location = new System.Drawing.Point(3, 40);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(41, 25);
     this.Label12.TabIndex = 18;
     this.Label12.Text = "125 Hz";
     this.Label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label13
     //
     this.Label13.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.Label13.AutoSize = true;
     this.Label13.Location = new System.Drawing.Point(3, 15);
     this.Label13.Name = "Label13";
     this.Label13.Size = new System.Drawing.Size(44, 25);
     this.Label13.TabIndex = 17;
     this.Label13.Text = "62.5 Hz";
     this.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Abs500
     //
     this.Abs500.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs500.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs500.LargeChange = 10;
     this.Abs500.Location = new System.Drawing.Point(103, 93);
     this.Abs500.Maximum = 100;
     this.Abs500.Name = "Abs500";
     this.Abs500.Size = new System.Drawing.Size(189, 19);
     this.Abs500.TabIndex = 13;
     this.Abs500.TickFrequency = 10;
     this.Abs500.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs500.Value = 1;
     this.Abs500.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Abs500Out
     //
     this.Abs500Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs500Out.AutoSize = true;
     this.Abs500Out.Location = new System.Drawing.Point(298, 93);
     this.Abs500Out.Name = "Abs500Out";
     this.Abs500Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs500Out.Size = new System.Drawing.Size(54, 20);
     this.Abs500Out.TabIndex = 29;
     this.Abs500Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs500Out.ValueChanged += new System.EventHandler(this.Abs500Out_ValueChanged);
     //
     // Abs250Out
     //
     this.Abs250Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs250Out.AutoSize = true;
     this.Abs250Out.Location = new System.Drawing.Point(298, 68);
     this.Abs250Out.Name = "Abs250Out";
     this.Abs250Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs250Out.Size = new System.Drawing.Size(54, 20);
     this.Abs250Out.TabIndex = 28;
     this.Abs250Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs250Out.ValueChanged += new System.EventHandler(this.Abs250Out_ValueChanged);
     //
     // Abs125Out
     //
     this.Abs125Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs125Out.AutoSize = true;
     this.Abs125Out.Location = new System.Drawing.Point(298, 43);
     this.Abs125Out.Name = "Abs125Out";
     this.Abs125Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs125Out.Size = new System.Drawing.Size(54, 20);
     this.Abs125Out.TabIndex = 27;
     this.Abs125Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs125Out.ValueChanged += new System.EventHandler(this.Abs125Out_ValueChanged);
     //
     // Abs250
     //
     this.Abs250.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs250.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs250.LargeChange = 10;
     this.Abs250.Location = new System.Drawing.Point(103, 68);
     this.Abs250.Maximum = 100;
     this.Abs250.Name = "Abs250";
     this.Abs250.Size = new System.Drawing.Size(189, 19);
     this.Abs250.TabIndex = 9;
     this.Abs250.TickFrequency = 10;
     this.Abs250.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs250.Value = 1;
     this.Abs250.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Abs125
     //
     this.Abs125.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs125.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs125.LargeChange = 10;
     this.Abs125.Location = new System.Drawing.Point(103, 43);
     this.Abs125.Maximum = 100;
     this.Abs125.Name = "Abs125";
     this.Abs125.Size = new System.Drawing.Size(189, 19);
     this.Abs125.TabIndex = 15;
     this.Abs125.TickFrequency = 10;
     this.Abs125.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs125.Value = 1;
     this.Abs125.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Abs63Out
     //
     this.Abs63Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs63Out.AutoSize = true;
     this.Abs63Out.Location = new System.Drawing.Point(298, 18);
     this.Abs63Out.Name = "Abs63Out";
     this.Abs63Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Abs63Out.Size = new System.Drawing.Size(54, 20);
     this.Abs63Out.TabIndex = 26;
     this.Abs63Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Abs63Out.ValueChanged += new System.EventHandler(this.Abs63Out_ValueChanged);
     //
     // Abs63
     //
     this.Abs63.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs63.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Abs63.LargeChange = 10;
     this.Abs63.Location = new System.Drawing.Point(103, 18);
     this.Abs63.Maximum = 100;
     this.Abs63.Name = "Abs63";
     this.Abs63.Size = new System.Drawing.Size(189, 19);
     this.Abs63.TabIndex = 16;
     this.Abs63.TickFrequency = 10;
     this.Abs63.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Abs63.Value = 1;
     this.Abs63.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // label18
     //
     this.label18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label18.AutoSize = true;
     this.tableLayoutPanel4.SetColumnSpan(this.label18, 2);
     this.label18.Location = new System.Drawing.Point(3, 2);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(214, 13);
     this.label18.TabIndex = 40;
     this.label18.Text = "Absorption Coefficients (% energy absorbed)";
     //
     // AbsFlat
     //
     this.AbsFlat.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.AbsFlat.BackColor = System.Drawing.SystemColors.HighlightText;
     this.AbsFlat.LargeChange = 10;
     this.AbsFlat.Location = new System.Drawing.Point(103, 218);
     this.AbsFlat.Maximum = 100;
     this.AbsFlat.Name = "AbsFlat";
     this.AbsFlat.Size = new System.Drawing.Size(189, 19);
     this.AbsFlat.TabIndex = 46;
     this.AbsFlat.TickFrequency = 10;
     this.AbsFlat.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.AbsFlat.ValueChanged += new System.EventHandler(this.AbsFlat_ValueChanged);
     //
     // ScatFlat
     //
     this.ScatFlat.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ScatFlat.BackColor = System.Drawing.SystemColors.HighlightText;
     this.ScatFlat.LargeChange = 10;
     this.ScatFlat.Location = new System.Drawing.Point(103, 218);
     this.ScatFlat.Maximum = 100;
     this.ScatFlat.Name = "ScatFlat";
     this.ScatFlat.Size = new System.Drawing.Size(186, 19);
     this.ScatFlat.TabIndex = 37;
     this.ScatFlat.TickFrequency = 10;
     this.ScatFlat.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.ScatFlat.Value = 1;
     this.ScatFlat.ValueChanged += new System.EventHandler(this.ScatFlat_ValueChanged);
     //
     // Scat8kOut
     //
     this.Scat8kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat8kOut.Location = new System.Drawing.Point(295, 193);
     this.Scat8kOut.Name = "Scat8kOut";
     this.Scat8kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat8kOut.Size = new System.Drawing.Size(54, 20);
     this.Scat8kOut.TabIndex = 45;
     this.Scat8kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat8kOut.ValueChanged += new System.EventHandler(this.Scat8kOut_ValueChanged);
     //
     // Scat8kv
     //
     this.Scat8kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat8kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat8kv.LargeChange = 10;
     this.Scat8kv.Location = new System.Drawing.Point(103, 193);
     this.Scat8kv.Maximum = 100;
     this.Scat8kv.Name = "Scat8kv";
     this.Scat8kv.Size = new System.Drawing.Size(186, 19);
     this.Scat8kv.TabIndex = 14;
     this.Scat8kv.TickFrequency = 10;
     this.Scat8kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat8kv.Value = 1;
     this.Scat8kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat4kv
     //
     this.Scat4kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat4kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat4kv.LargeChange = 10;
     this.Scat4kv.Location = new System.Drawing.Point(103, 168);
     this.Scat4kv.Maximum = 100;
     this.Scat4kv.Name = "Scat4kv";
     this.Scat4kv.Size = new System.Drawing.Size(186, 19);
     this.Scat4kv.TabIndex = 12;
     this.Scat4kv.TickFrequency = 10;
     this.Scat4kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat4kv.Value = 1;
     this.Scat4kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat4kOut
     //
     this.Scat4kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat4kOut.Location = new System.Drawing.Point(295, 168);
     this.Scat4kOut.Name = "Scat4kOut";
     this.Scat4kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat4kOut.Size = new System.Drawing.Size(54, 20);
     this.Scat4kOut.TabIndex = 44;
     this.Scat4kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat4kOut.ValueChanged += new System.EventHandler(this.Scat4kOut_ValueChanged);
     //
     // Scat2kOut
     //
     this.Scat2kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat2kOut.Location = new System.Drawing.Point(295, 143);
     this.Scat2kOut.Name = "Scat2kOut";
     this.Scat2kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat2kOut.Size = new System.Drawing.Size(54, 20);
     this.Scat2kOut.TabIndex = 43;
     this.Scat2kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat2kOut.ValueChanged += new System.EventHandler(this.Scat2kOut_ValueChanged);
     //
     // Scat2kv
     //
     this.Scat2kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat2kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat2kv.LargeChange = 10;
     this.Scat2kv.Location = new System.Drawing.Point(103, 143);
     this.Scat2kv.Maximum = 100;
     this.Scat2kv.Name = "Scat2kv";
     this.Scat2kv.Size = new System.Drawing.Size(186, 19);
     this.Scat2kv.TabIndex = 11;
     this.Scat2kv.TickFrequency = 10;
     this.Scat2kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat2kv.Value = 1;
     this.Scat2kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat1kv
     //
     this.Scat1kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat1kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat1kv.LargeChange = 10;
     this.Scat1kv.Location = new System.Drawing.Point(103, 118);
     this.Scat1kv.Maximum = 100;
     this.Scat1kv.Name = "Scat1kv";
     this.Scat1kv.Size = new System.Drawing.Size(186, 19);
     this.Scat1kv.TabIndex = 10;
     this.Scat1kv.TickFrequency = 10;
     this.Scat1kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat1kv.Value = 1;
     this.Scat1kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat1kOut
     //
     this.Scat1kOut.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat1kOut.Location = new System.Drawing.Point(295, 118);
     this.Scat1kOut.Name = "Scat1kOut";
     this.Scat1kOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat1kOut.Size = new System.Drawing.Size(54, 20);
     this.Scat1kOut.TabIndex = 42;
     this.Scat1kOut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat1kOut.ValueChanged += new System.EventHandler(this.Scat1kOut_ValueChanged);
     //
     // Scat500Out
     //
     this.Scat500Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat500Out.Location = new System.Drawing.Point(295, 93);
     this.Scat500Out.Name = "Scat500Out";
     this.Scat500Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat500Out.Size = new System.Drawing.Size(54, 20);
     this.Scat500Out.TabIndex = 41;
     this.Scat500Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat500Out.ValueChanged += new System.EventHandler(this.Scat500Out_ValueChanged);
     //
     // Scat500v
     //
     this.Scat500v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat500v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat500v.LargeChange = 10;
     this.Scat500v.Location = new System.Drawing.Point(103, 93);
     this.Scat500v.Maximum = 100;
     this.Scat500v.Name = "Scat500v";
     this.Scat500v.Size = new System.Drawing.Size(186, 19);
     this.Scat500v.TabIndex = 13;
     this.Scat500v.TickFrequency = 10;
     this.Scat500v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat500v.Value = 1;
     this.Scat500v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat250v
     //
     this.Scat250v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat250v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat250v.LargeChange = 10;
     this.Scat250v.Location = new System.Drawing.Point(103, 68);
     this.Scat250v.Maximum = 100;
     this.Scat250v.Name = "Scat250v";
     this.Scat250v.Size = new System.Drawing.Size(186, 19);
     this.Scat250v.TabIndex = 9;
     this.Scat250v.TickFrequency = 10;
     this.Scat250v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat250v.Value = 1;
     this.Scat250v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat250Out
     //
     this.Scat250Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat250Out.Location = new System.Drawing.Point(295, 68);
     this.Scat250Out.Name = "Scat250Out";
     this.Scat250Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat250Out.Size = new System.Drawing.Size(54, 20);
     this.Scat250Out.TabIndex = 40;
     this.Scat250Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat250Out.ValueChanged += new System.EventHandler(this.Scat250Out_ValueChanged);
     //
     // Scat125Out
     //
     this.Scat125Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat125Out.Location = new System.Drawing.Point(295, 43);
     this.Scat125Out.Name = "Scat125Out";
     this.Scat125Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat125Out.Size = new System.Drawing.Size(54, 20);
     this.Scat125Out.TabIndex = 39;
     this.Scat125Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat125Out.ValueChanged += new System.EventHandler(this.Scat125Out_ValueChanged);
     //
     // Scat125v
     //
     this.Scat125v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat125v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat125v.LargeChange = 10;
     this.Scat125v.Location = new System.Drawing.Point(103, 43);
     this.Scat125v.Maximum = 100;
     this.Scat125v.Name = "Scat125v";
     this.Scat125v.Size = new System.Drawing.Size(186, 19);
     this.Scat125v.TabIndex = 15;
     this.Scat125v.TickFrequency = 10;
     this.Scat125v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat125v.Value = 1;
     this.Scat125v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat63v
     //
     this.Scat63v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat63v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Scat63v.LargeChange = 10;
     this.Scat63v.Location = new System.Drawing.Point(103, 18);
     this.Scat63v.Maximum = 100;
     this.Scat63v.Name = "Scat63v";
     this.Scat63v.Size = new System.Drawing.Size(186, 19);
     this.Scat63v.TabIndex = 16;
     this.Scat63v.TickFrequency = 10;
     this.Scat63v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Scat63v.Value = 1;
     this.Scat63v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Scat63Out
     //
     this.Scat63Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Scat63Out.Location = new System.Drawing.Point(295, 18);
     this.Scat63Out.Name = "Scat63Out";
     this.Scat63Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Scat63Out.Size = new System.Drawing.Size(54, 20);
     this.Scat63Out.TabIndex = 38;
     this.Scat63Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Scat63Out.ValueChanged += new System.EventHandler(this.Scat63Out_ValueChanged);
     //
     // label22
     //
     this.label22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label22.AutoSize = true;
     this.tableLayoutPanel5.SetColumnSpan(this.label22, 3);
     this.label22.Location = new System.Drawing.Point(3, 2);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(273, 13);
     this.label22.TabIndex = 30;
     this.label22.Text = "Scattering Coefficients (% non-specular reflected energy)";
     //
     // SmartMat_Display
     //
     this.SmartMat_Display.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.SmartMat_Display.BackColor = System.Drawing.Color.Transparent;
     customLabel1.FromPosition = 1D;
     customLabel1.Text = "0";
     customLabel1.ToPosition = 2D;
     customLabel2.FromPosition = 1D;
     customLabel2.Text = "30";
     customLabel2.ToPosition = 2D;
     customLabel3.FromPosition = 2D;
     customLabel3.Text = "60";
     customLabel3.ToPosition = 3D;
     customLabel4.FromPosition = 3D;
     customLabel4.Text = "90";
     customLabel4.ToPosition = 4D;
     customLabel10.FromPosition = 8D;
     customLabel10.Text = "-90";
     customLabel10.ToPosition = 9D;
     customLabel11.FromPosition = 9D;
     customLabel11.Text = "-60";
     customLabel11.ToPosition = 10D;
     customLabel12.FromPosition = 11D;
     customLabel12.Text = "-30";
     customLabel12.ToPosition = 12D;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.CustomLabels.Add(customLabel5);
     chartArea1.AxisX.CustomLabels.Add(customLabel6);
     chartArea1.AxisX.CustomLabels.Add(customLabel7);
     chartArea1.AxisX.CustomLabels.Add(customLabel8);
     chartArea1.AxisX.CustomLabels.Add(customLabel9);
     chartArea1.AxisX.CustomLabels.Add(customLabel10);
     chartArea1.AxisX.CustomLabels.Add(customLabel11);
     chartArea1.AxisX.CustomLabels.Add(customLabel12);
     chartArea1.Name = "ChartArea1";
     this.SmartMat_Display.ChartAreas.Add(chartArea1);
     legend1.BackColor = System.Drawing.Color.Transparent;
     legend1.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Left;
     legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Column;
     legend1.Name = "Legend1";
     legend1.Position.Auto = false;
     legend1.Position.Height = 25F;
     legend1.Position.Width = 20F;
     legend1.Position.X = 80F;
     legend1.Position.Y = 75F;
     this.SmartMat_Display.Legends.Add(legend1);
     this.SmartMat_Display.Location = new System.Drawing.Point(3, 6);
     this.SmartMat_Display.Name = "SmartMat_Display";
     this.SmartMat_Display.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     this.SmartMat_Display.PaletteCustomColors = new System.Drawing.Color[] {
     System.Drawing.Color.Red,
     System.Drawing.Color.Orange,
     System.Drawing.Color.Gold,
     System.Drawing.Color.GreenYellow,
     System.Drawing.Color.Green,
     System.Drawing.Color.Blue,
     System.Drawing.Color.Indigo,
     System.Drawing.Color.Violet};
     series1.BorderWidth = 3;
     series1.ChartArea = "ChartArea1";
     series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series1.CustomProperties = "CircularLabelsStyle=Circular";
     series1.Font = new System.Drawing.Font("Microsoft Sans Serif", 5.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.Legend = "Legend1";
     series1.Name = "62.5 Hz.";
     series1.ShadowColor = System.Drawing.Color.DarkGray;
     series1.ShadowOffset = 3;
     series2.BorderWidth = 3;
     series2.ChartArea = "ChartArea1";
     series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series2.Legend = "Legend1";
     series2.Name = "125 Hz.";
     series2.ShadowColor = System.Drawing.Color.DarkGray;
     series2.ShadowOffset = 3;
     series3.BorderWidth = 3;
     series3.ChartArea = "ChartArea1";
     series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series3.Legend = "Legend1";
     series3.Name = "250 Hz.";
     series3.ShadowColor = System.Drawing.Color.DarkGray;
     series3.ShadowOffset = 3;
     series4.BorderWidth = 3;
     series4.ChartArea = "ChartArea1";
     series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series4.Legend = "Legend1";
     series4.Name = "500 Hz.";
     series4.ShadowColor = System.Drawing.Color.DarkGray;
     series4.ShadowOffset = 3;
     series5.BorderWidth = 3;
     series5.ChartArea = "ChartArea1";
     series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series5.Legend = "Legend1";
     series5.Name = "1000 Hz.";
     series5.ShadowColor = System.Drawing.Color.DarkGray;
     series5.ShadowOffset = 3;
     series6.BorderWidth = 3;
     series6.ChartArea = "ChartArea1";
     series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series6.Legend = "Legend1";
     series6.Name = "2000 Hz.";
     series6.ShadowColor = System.Drawing.Color.DarkGray;
     series6.ShadowOffset = 3;
     series7.BorderWidth = 3;
     series7.ChartArea = "ChartArea1";
     series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series7.Legend = "Legend1";
     series7.Name = "4000 Hz.";
     series7.ShadowColor = System.Drawing.Color.DarkGray;
     series7.ShadowOffset = 3;
     series8.BorderWidth = 3;
     series8.ChartArea = "ChartArea1";
     series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Polar;
     series8.Legend = "Legend1";
     series8.Name = "8000 Hz.";
     series8.ShadowColor = System.Drawing.Color.DarkGray;
     series8.ShadowOffset = 3;
     this.SmartMat_Display.Series.Add(series1);
     this.SmartMat_Display.Series.Add(series2);
     this.SmartMat_Display.Series.Add(series3);
     this.SmartMat_Display.Series.Add(series4);
     this.SmartMat_Display.Series.Add(series5);
     this.SmartMat_Display.Series.Add(series6);
     this.SmartMat_Display.Series.Add(series7);
     this.SmartMat_Display.Series.Add(series8);
     this.SmartMat_Display.Size = new System.Drawing.Size(362, 488);
     this.SmartMat_Display.TabIndex = 45;
     this.SmartMat_Display.TabStop = false;
     this.SmartMat_Display.Text = "Absorption By Angle";
     //
     // Calculate
     //
     this.Calculate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Calculate.Location = new System.Drawing.Point(6, 386);
     this.Calculate.Margin = new System.Windows.Forms.Padding(2);
     this.Calculate.Name = "Calculate";
     this.Calculate.Size = new System.Drawing.Size(381, 23);
     this.Calculate.TabIndex = 15;
     this.Calculate.Text = "Calculate Solution";
     this.Calculate.UseVisualStyleBackColor = true;
     this.Calculate.Click += new System.EventHandler(this.Calculate_Click);
     //
     // RTBox
     //
     this.RTBox.AutoSize = true;
     this.RTBox.Checked = true;
     this.RTBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.RTBox.Location = new System.Drawing.Point(6, 158);
     this.RTBox.Name = "RTBox";
     this.RTBox.Size = new System.Drawing.Size(118, 17);
     this.RTBox.TabIndex = 8;
     this.RTBox.Text = "Raytracing Solution";
     this.RTBox.UseVisualStyleBackColor = true;
     this.RTBox.CheckedChanged += new System.EventHandler(this.CalcType_CheckedChanged);
     //
     // ISBox
     //
     this.ISBox.AutoSize = true;
     this.ISBox.Checked = true;
     this.ISBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ISBox.Location = new System.Drawing.Point(6, 71);
     this.ISBox.Name = "ISBox";
     this.ISBox.Size = new System.Drawing.Size(133, 17);
     this.ISBox.TabIndex = 4;
     this.ISBox.Text = "Image Source Solution";
     this.ISBox.UseVisualStyleBackColor = true;
     this.ISBox.CheckedChanged += new System.EventHandler(this.CalcType_CheckedChanged);
     //
     // Tabs
     //
     this.Tabs.AccessibleDescription = "";
     this.Tabs.AccessibleName = "";
     this.Tabs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Tabs.Controls.Add(this.TabPage1);
     this.Tabs.Controls.Add(this.TabPage4);
     this.Tabs.Controls.Add(this.TabPage3);
     this.Tabs.Location = new System.Drawing.Point(3, 27);
     this.Tabs.MinimumSize = new System.Drawing.Size(400, 400);
     this.Tabs.Name = "Tabs";
     this.Tabs.SelectedIndex = 0;
     this.Tabs.Size = new System.Drawing.Size(400, 596);
     this.Tabs.TabIndex = 5;
     this.Tabs.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.Tab_Selecting);
     //
     // TabPage1
     //
     this.TabPage1.AutoScroll = true;
     this.TabPage1.AutoScrollMargin = new System.Drawing.Size(10, 10);
     this.TabPage1.AutoScrollMinSize = new System.Drawing.Size(10, 10);
     this.TabPage1.Controls.Add(this.BTM_ED);
     this.TabPage1.Controls.Add(this.Specular_Trace);
     this.TabPage1.Controls.Add(this.Spec_RayCount);
     this.TabPage1.Controls.Add(this.GroupBox4);
     this.TabPage1.Controls.Add(this.GroupBox2);
     this.TabPage1.Controls.Add(this.COTime);
     this.TabPage1.Controls.Add(this.CO_TIME);
     this.TabPage1.Controls.Add(this.Label2);
     this.TabPage1.Controls.Add(this.Label1);
     this.TabPage1.Controls.Add(this.RT_Count);
     this.TabPage1.Controls.Add(this.Image_Order);
     this.TabPage1.Controls.Add(this.RTBox);
     this.TabPage1.Controls.Add(this.ISBox);
     this.TabPage1.Controls.Add(this.Calculate);
     this.TabPage1.Location = new System.Drawing.Point(4, 22);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage1.Size = new System.Drawing.Size(392, 570);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = "Impulse";
     this.TabPage1.UseVisualStyleBackColor = true;
     //
     // BTM_ED
     //
     this.BTM_ED.AutoSize = true;
     this.BTM_ED.Location = new System.Drawing.Point(19, 112);
     this.BTM_ED.Name = "BTM_ED";
     this.BTM_ED.Size = new System.Drawing.Size(128, 17);
     this.BTM_ED.TabIndex = 34;
     this.BTM_ED.Text = "BTM Edge Diffraction";
     this.BTM_ED.UseVisualStyleBackColor = true;
     //
     // Specular_Trace
     //
     this.Specular_Trace.AutoSize = true;
     this.Specular_Trace.Enabled = false;
     this.Specular_Trace.Location = new System.Drawing.Point(19, 135);
     this.Specular_Trace.Name = "Specular_Trace";
     this.Specular_Trace.Size = new System.Drawing.Size(131, 17);
     this.Specular_Trace.TabIndex = 6;
     this.Specular_Trace.Text = "Image Source Tracing";
     this.Specular_Trace.UseVisualStyleBackColor = true;
     this.Specular_Trace.CheckedChanged += new System.EventHandler(this.CalcType_CheckedChanged);
     //
     // Spec_RayCount
     //
     this.Spec_RayCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Spec_RayCount.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.Spec_RayCount.Increment = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.Spec_RayCount.Location = new System.Drawing.Point(313, 135);
     this.Spec_RayCount.Maximum = new decimal(new int[] {
     10000000,
     0,
     0,
     0});
     this.Spec_RayCount.Minimum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.Spec_RayCount.Name = "Spec_RayCount";
     this.Spec_RayCount.Size = new System.Drawing.Size(67, 20);
     this.Spec_RayCount.TabIndex = 7;
     this.Spec_RayCount.Value = new decimal(new int[] {
     50000,
     0,
     0,
     0});
     //
     // GroupBox4
     //
     this.GroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GroupBox4.Controls.Add(this.EdgeFreq);
     this.GroupBox4.Controls.Add(this.Label21);
     this.GroupBox4.Controls.Add(this.Atten_Method);
     this.GroupBox4.Controls.Add(this.Label19);
     this.GroupBox4.Controls.Add(this.Air_Pressure);
     this.GroupBox4.Controls.Add(this.Label3);
     this.GroupBox4.Controls.Add(this.Rel_Humidity);
     this.GroupBox4.Controls.Add(this.AirTemp);
     this.GroupBox4.Controls.Add(this.Air_Temp);
     this.GroupBox4.Location = new System.Drawing.Point(6, 233);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(380, 149);
     this.GroupBox4.TabIndex = 33;
     this.GroupBox4.TabStop = false;
     this.GroupBox4.Text = "Environmental Factors";
     //
     // EdgeFreq
     //
     this.EdgeFreq.AutoSize = true;
     this.EdgeFreq.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EdgeFreq.Location = new System.Drawing.Point(70, 123);
     this.EdgeFreq.Name = "EdgeFreq";
     this.EdgeFreq.Size = new System.Drawing.Size(155, 17);
     this.EdgeFreq.TabIndex = 35;
     this.EdgeFreq.Text = "Edge Frequency Correction";
     this.EdgeFreq.UseVisualStyleBackColor = true;
     //
     // Label21
     //
     this.Label21.AutoSize = true;
     this.Label21.Location = new System.Drawing.Point(8, 99);
     this.Label21.Name = "Label21";
     this.Label21.Size = new System.Drawing.Size(46, 13);
     this.Label21.TabIndex = 34;
     this.Label21.Text = "Method:";
     //
     // Atten_Method
     //
     this.Atten_Method.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Atten_Method.FormattingEnabled = true;
     this.Atten_Method.Items.AddRange(new object[] {
     "ISO 9613-1 (Outdoor Attenuation)",
     "Evans & Bazley (Indoor Attenuation)",
     "Known values (Vorlander)"});
     this.Atten_Method.Location = new System.Drawing.Point(70, 96);
     this.Atten_Method.Name = "Atten_Method";
     this.Atten_Method.Size = new System.Drawing.Size(301, 21);
     this.Atten_Method.TabIndex = 14;
     this.Atten_Method.Text = "ISO 9613-1 (Outdoor Attenuation)";
     //
     // Label19
     //
     this.Label19.AutoSize = true;
     this.Label19.Location = new System.Drawing.Point(8, 72);
     this.Label19.Name = "Label19";
     this.Label19.Size = new System.Drawing.Size(121, 13);
     this.Label19.TabIndex = 32;
     this.Label19.Text = "Static Air Pressure (hPa)";
     //
     // Air_Pressure
     //
     this.Air_Pressure.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Air_Pressure.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.Air_Pressure.Location = new System.Drawing.Point(307, 70);
     this.Air_Pressure.Maximum = new decimal(new int[] {
     1500,
     0,
     0,
     0});
     this.Air_Pressure.Minimum = new decimal(new int[] {
     50,
     0,
     0,
     -2147483648});
     this.Air_Pressure.Name = "Air_Pressure";
     this.Air_Pressure.Size = new System.Drawing.Size(64, 20);
     this.Air_Pressure.TabIndex = 13;
     this.Air_Pressure.Value = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Location = new System.Drawing.Point(8, 46);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(103, 13);
     this.Label3.TabIndex = 30;
     this.Label3.Text = "Relative Humidity(%)";
     //
     // Rel_Humidity
     //
     this.Rel_Humidity.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Rel_Humidity.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.Rel_Humidity.Location = new System.Drawing.Point(339, 44);
     this.Rel_Humidity.Maximum = new decimal(new int[] {
     80,
     0,
     0,
     0});
     this.Rel_Humidity.Minimum = new decimal(new int[] {
     50,
     0,
     0,
     -2147483648});
     this.Rel_Humidity.Name = "Rel_Humidity";
     this.Rel_Humidity.Size = new System.Drawing.Size(32, 20);
     this.Rel_Humidity.TabIndex = 12;
     this.Rel_Humidity.Value = new decimal(new int[] {
     50,
     0,
     0,
     0});
     //
     // AirTemp
     //
     this.AirTemp.AutoSize = true;
     this.AirTemp.Location = new System.Drawing.Point(8, 20);
     this.AirTemp.Name = "AirTemp";
     this.AirTemp.Size = new System.Drawing.Size(98, 13);
     this.AirTemp.TabIndex = 28;
     this.AirTemp.Text = "Air Temperature (C)";
     //
     // Air_Temp
     //
     this.Air_Temp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Air_Temp.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.Air_Temp.Location = new System.Drawing.Point(339, 18);
     this.Air_Temp.Maximum = new decimal(new int[] {
     80,
     0,
     0,
     0});
     this.Air_Temp.Minimum = new decimal(new int[] {
     50,
     0,
     0,
     -2147483648});
     this.Air_Temp.Name = "Air_Temp";
     this.Air_Temp.Size = new System.Drawing.Size(32, 20);
     this.Air_Temp.TabIndex = 11;
     this.Air_Temp.Value = new decimal(new int[] {
     20,
     0,
     0,
     0});
     //
     // GroupBox2
     //
     this.GroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GroupBox2.Controls.Add(this.Label17);
     this.GroupBox2.Controls.Add(this.ReceiverSelection);
     this.GroupBox2.Location = new System.Drawing.Point(6, 15);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(380, 50);
     this.GroupBox2.TabIndex = 23;
     this.GroupBox2.TabStop = false;
     this.GroupBox2.Text = "Geometry";
     //
     // Label17
     //
     this.Label17.AutoSize = true;
     this.Label17.Location = new System.Drawing.Point(2, 22);
     this.Label17.Name = "Label17";
     this.Label17.Size = new System.Drawing.Size(53, 13);
     this.Label17.TabIndex = 31;
     this.Label17.Text = "Receiver:";
     //
     // ReceiverSelection
     //
     this.ReceiverSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ReceiverSelection.FormattingEnabled = true;
     this.ReceiverSelection.Items.AddRange(new object[] {
     "1 m. Stationary Receiver",
     "Expanding Receiver (Expanding)"});
     this.ReceiverSelection.Location = new System.Drawing.Point(61, 19);
     this.ReceiverSelection.Name = "ReceiverSelection";
     this.ReceiverSelection.Size = new System.Drawing.Size(313, 21);
     this.ReceiverSelection.TabIndex = 3;
     this.ReceiverSelection.Text = "1 m. Stationary Receiver";
     //
     // COTime
     //
     this.COTime.AutoSize = true;
     this.COTime.Location = new System.Drawing.Point(16, 208);
     this.COTime.Name = "COTime";
     this.COTime.Size = new System.Drawing.Size(88, 13);
     this.COTime.TabIndex = 17;
     this.COTime.Text = "Cut Off Time (ms)";
     //
     // CO_TIME
     //
     this.CO_TIME.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.CO_TIME.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.CO_TIME.Location = new System.Drawing.Point(313, 206);
     this.CO_TIME.Maximum = new decimal(new int[] {
     15000,
     0,
     0,
     0});
     this.CO_TIME.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.CO_TIME.Name = "CO_TIME";
     this.CO_TIME.Size = new System.Drawing.Size(64, 20);
     this.CO_TIME.TabIndex = 10;
     this.CO_TIME.Value = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Location = new System.Drawing.Point(16, 182);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(83, 13);
     this.Label2.TabIndex = 13;
     this.Label2.Text = "Number of Rays";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Location = new System.Drawing.Point(16, 91);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(84, 13);
     this.Label1.TabIndex = 12;
     this.Label1.Text = "Reflection Order";
     //
     // RT_Count
     //
     this.RT_Count.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.RT_Count.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.RT_Count.Increment = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.RT_Count.Location = new System.Drawing.Point(313, 180);
     this.RT_Count.Maximum = new decimal(new int[] {
     10000000,
     0,
     0,
     0});
     this.RT_Count.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.RT_Count.Name = "RT_Count";
     this.RT_Count.Size = new System.Drawing.Size(64, 20);
     this.RT_Count.TabIndex = 9;
     this.RT_Count.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // Image_Order
     //
     this.Image_Order.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Image_Order.Cursor = System.Windows.Forms.Cursors.WaitCursor;
     this.Image_Order.Location = new System.Drawing.Point(335, 89);
     this.Image_Order.Maximum = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.Image_Order.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.Image_Order.Name = "Image_Order";
     this.Image_Order.Size = new System.Drawing.Size(45, 20);
     this.Image_Order.TabIndex = 5;
     this.Image_Order.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // TabPage4
     //
     this.TabPage4.Controls.Add(this.tabControl1);
     this.TabPage4.Controls.Add(this.Abs_Designer);
     this.TabPage4.Controls.Add(this.LayerLbl);
     this.TabPage4.Controls.Add(this.groupBox5);
     this.TabPage4.Controls.Add(this.LayerDisplay);
     this.TabPage4.Controls.Add(this.Material_Lib);
     this.TabPage4.Controls.Add(this.Mat_Lbl);
     this.TabPage4.Location = new System.Drawing.Point(4, 22);
     this.TabPage4.Name = "TabPage4";
     this.TabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage4.Size = new System.Drawing.Size(392, 570);
     this.TabPage4.TabIndex = 3;
     this.TabPage4.Text = "Materials";
     this.TabPage4.UseVisualStyleBackColor = true;
     this.TabPage4.MouseEnter += new System.EventHandler(this.Materials_MouseEnter);
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.Absorption);
     this.tabControl1.Controls.Add(this.Scattering);
     this.tabControl1.Controls.Add(this.Transparency);
     this.tabControl1.Location = new System.Drawing.Point(4, 135);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(382, 320);
     this.tabControl1.TabIndex = 47;
     //
     // Absorption
     //
     this.Absorption.Controls.Add(this.tableLayoutPanel4);
     this.Absorption.Controls.Add(this.SmartMat_Display);
     this.Absorption.Location = new System.Drawing.Point(4, 22);
     this.Absorption.Name = "Absorption";
     this.Absorption.Padding = new System.Windows.Forms.Padding(3);
     this.Absorption.Size = new System.Drawing.Size(374, 294);
     this.Absorption.TabIndex = 0;
     this.Absorption.Text = "Absorption";
     this.Absorption.UseVisualStyleBackColor = true;
     //
     // Scattering
     //
     this.Scattering.Controls.Add(this.tableLayoutPanel5);
     this.Scattering.Location = new System.Drawing.Point(4, 22);
     this.Scattering.Name = "Scattering";
     this.Scattering.Padding = new System.Windows.Forms.Padding(3);
     this.Scattering.Size = new System.Drawing.Size(374, 294);
     this.Scattering.TabIndex = 1;
     this.Scattering.Text = "Scattering";
     this.Scattering.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel5.ColumnCount = 4;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel5.Controls.Add(this.label37, 0, 9);
     this.tableLayoutPanel5.Controls.Add(this.ScatFlat, 1, 9);
     this.tableLayoutPanel5.Controls.Add(this.label38, 0, 8);
     this.tableLayoutPanel5.Controls.Add(this.Scat8kOut, 2, 8);
     this.tableLayoutPanel5.Controls.Add(this.label39, 0, 7);
     this.tableLayoutPanel5.Controls.Add(this.Scat8kv, 1, 8);
     this.tableLayoutPanel5.Controls.Add(this.label40, 0, 6);
     this.tableLayoutPanel5.Controls.Add(this.label41, 0, 5);
     this.tableLayoutPanel5.Controls.Add(this.label42, 0, 4);
     this.tableLayoutPanel5.Controls.Add(this.Scat4kOut, 2, 7);
     this.tableLayoutPanel5.Controls.Add(this.Scat4kv, 1, 7);
     this.tableLayoutPanel5.Controls.Add(this.label43, 0, 3);
     this.tableLayoutPanel5.Controls.Add(this.label44, 0, 2);
     this.tableLayoutPanel5.Controls.Add(this.Scat2kOut, 2, 6);
     this.tableLayoutPanel5.Controls.Add(this.label45, 0, 1);
     this.tableLayoutPanel5.Controls.Add(this.Scat2kv, 1, 6);
     this.tableLayoutPanel5.Controls.Add(this.label22, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.Scat63v, 1, 1);
     this.tableLayoutPanel5.Controls.Add(this.Scat63Out, 2, 1);
     this.tableLayoutPanel5.Controls.Add(this.Scat1kOut, 2, 5);
     this.tableLayoutPanel5.Controls.Add(this.Scat1kv, 1, 5);
     this.tableLayoutPanel5.Controls.Add(this.Scat125Out, 2, 2);
     this.tableLayoutPanel5.Controls.Add(this.Scat125v, 1, 2);
     this.tableLayoutPanel5.Controls.Add(this.Scat500Out, 2, 4);
     this.tableLayoutPanel5.Controls.Add(this.Scat250v, 1, 3);
     this.tableLayoutPanel5.Controls.Add(this.Scat500v, 1, 4);
     this.tableLayoutPanel5.Controls.Add(this.Scat250Out, 2, 3);
     this.tableLayoutPanel5.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(6, 6);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 11;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 15F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(362, 282);
     this.tableLayoutPanel5.TabIndex = 46;
     //
     // label37
     //
     this.label37.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(3, 215);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(53, 25);
     this.label37.TabIndex = 38;
     this.label37.Text = "Flatten All";
     this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label38
     //
     this.label38.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(3, 190);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(35, 25);
     this.label38.TabIndex = 24;
     this.label38.Text = "8 kHz";
     this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label39
     //
     this.label39.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(3, 165);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(35, 25);
     this.label39.TabIndex = 22;
     this.label39.Text = "4 kHz";
     this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label40
     //
     this.label40.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(3, 140);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(35, 25);
     this.label40.TabIndex = 21;
     this.label40.Text = "2 kHz";
     this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label41
     //
     this.label41.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(3, 115);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(35, 25);
     this.label41.TabIndex = 20;
     this.label41.Text = "1 kHz";
     this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label42
     //
     this.label42.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(3, 90);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(41, 25);
     this.label42.TabIndex = 19;
     this.label42.Text = "500 Hz";
     this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label43
     //
     this.label43.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(3, 65);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(41, 25);
     this.label43.TabIndex = 25;
     this.label43.Text = "250 Hz";
     this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label44
     //
     this.label44.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(3, 40);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(41, 25);
     this.label44.TabIndex = 18;
     this.label44.Text = "125 Hz";
     this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label45
     //
     this.label45.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(3, 15);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(44, 25);
     this.label45.TabIndex = 17;
     this.label45.Text = "62.5 Hz";
     this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Transparency
     //
     this.Transparency.Controls.Add(this.tableLayoutPanel6);
     this.Transparency.Location = new System.Drawing.Point(4, 22);
     this.Transparency.Name = "Transparency";
     this.Transparency.Size = new System.Drawing.Size(374, 294);
     this.Transparency.TabIndex = 2;
     this.Transparency.Text = "Transparency";
     this.Transparency.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel6.ColumnCount = 4;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel6.Controls.Add(this.Trans_Flat, 1, 9);
     this.tableLayoutPanel6.Controls.Add(this.Trans_8k_Out, 2, 8);
     this.tableLayoutPanel6.Controls.Add(this.label29, 0, 7);
     this.tableLayoutPanel6.Controls.Add(this.Trans_8kv, 1, 8);
     this.tableLayoutPanel6.Controls.Add(this.label30, 0, 6);
     this.tableLayoutPanel6.Controls.Add(this.label31, 0, 5);
     this.tableLayoutPanel6.Controls.Add(this.label32, 0, 4);
     this.tableLayoutPanel6.Controls.Add(this.Trans_4k_Out, 2, 7);
     this.tableLayoutPanel6.Controls.Add(this.Trans_4kv, 1, 7);
     this.tableLayoutPanel6.Controls.Add(this.label33, 0, 3);
     this.tableLayoutPanel6.Controls.Add(this.label34, 0, 2);
     this.tableLayoutPanel6.Controls.Add(this.Trans_2k_Out, 2, 6);
     this.tableLayoutPanel6.Controls.Add(this.label35, 0, 1);
     this.tableLayoutPanel6.Controls.Add(this.Trans_2kv, 1, 6);
     this.tableLayoutPanel6.Controls.Add(this.label36, 0, 0);
     this.tableLayoutPanel6.Controls.Add(this.Trans_63v, 1, 1);
     this.tableLayoutPanel6.Controls.Add(this.Trans_63_Out, 2, 1);
     this.tableLayoutPanel6.Controls.Add(this.Trans_1k_Out, 2, 5);
     this.tableLayoutPanel6.Controls.Add(this.Trans_1kv, 1, 5);
     this.tableLayoutPanel6.Controls.Add(this.Trans_125_Out, 2, 2);
     this.tableLayoutPanel6.Controls.Add(this.Trans_125v, 1, 2);
     this.tableLayoutPanel6.Controls.Add(this.Trans_500_Out, 2, 4);
     this.tableLayoutPanel6.Controls.Add(this.Trans_250v, 1, 3);
     this.tableLayoutPanel6.Controls.Add(this.Trans_500v, 1, 4);
     this.tableLayoutPanel6.Controls.Add(this.Trans_250_Out, 2, 3);
     this.tableLayoutPanel6.Controls.Add(this.Trans_Check, 1, 10);
     this.tableLayoutPanel6.Controls.Add(this.label28, 0, 8);
     this.tableLayoutPanel6.Controls.Add(this.label23, 0, 9);
     this.tableLayoutPanel6.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(6, 6);
     this.tableLayoutPanel6.Name = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 11;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 15F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel6.Size = new System.Drawing.Size(362, 282);
     this.tableLayoutPanel6.TabIndex = 47;
     //
     // Trans_Flat
     //
     this.Trans_Flat.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_Flat.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_Flat.Enabled = false;
     this.Trans_Flat.LargeChange = 10;
     this.Trans_Flat.Location = new System.Drawing.Point(103, 218);
     this.Trans_Flat.Maximum = 100;
     this.Trans_Flat.Name = "Trans_Flat";
     this.Trans_Flat.Size = new System.Drawing.Size(186, 19);
     this.Trans_Flat.TabIndex = 37;
     this.Trans_Flat.TickFrequency = 10;
     this.Trans_Flat.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_Flat.ValueChanged += new System.EventHandler(this.TransFlat_ValueChanged);
     //
     // Trans_8k_Out
     //
     this.Trans_8k_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_8k_Out.Enabled = false;
     this.Trans_8k_Out.Location = new System.Drawing.Point(295, 193);
     this.Trans_8k_Out.Name = "Trans_8k_Out";
     this.Trans_8k_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_8k_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_8k_Out.TabIndex = 45;
     this.Trans_8k_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label29
     //
     this.label29.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(3, 165);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(35, 25);
     this.label29.TabIndex = 22;
     this.label29.Text = "4 kHz";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Trans_8kv
     //
     this.Trans_8kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_8kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_8kv.Enabled = false;
     this.Trans_8kv.LargeChange = 10;
     this.Trans_8kv.Location = new System.Drawing.Point(103, 193);
     this.Trans_8kv.Maximum = 100;
     this.Trans_8kv.Name = "Trans_8kv";
     this.Trans_8kv.Size = new System.Drawing.Size(186, 19);
     this.Trans_8kv.TabIndex = 14;
     this.Trans_8kv.TickFrequency = 10;
     this.Trans_8kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_8kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // label30
     //
     this.label30.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(3, 140);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(35, 25);
     this.label30.TabIndex = 21;
     this.label30.Text = "2 kHz";
     this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label31
     //
     this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(3, 115);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(35, 25);
     this.label31.TabIndex = 20;
     this.label31.Text = "1 kHz";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label32
     //
     this.label32.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(3, 90);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(41, 25);
     this.label32.TabIndex = 19;
     this.label32.Text = "500 Hz";
     this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Trans_4k_Out
     //
     this.Trans_4k_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_4k_Out.Enabled = false;
     this.Trans_4k_Out.Location = new System.Drawing.Point(295, 168);
     this.Trans_4k_Out.Name = "Trans_4k_Out";
     this.Trans_4k_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_4k_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_4k_Out.TabIndex = 44;
     this.Trans_4k_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Trans_4kv
     //
     this.Trans_4kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_4kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_4kv.Enabled = false;
     this.Trans_4kv.LargeChange = 10;
     this.Trans_4kv.Location = new System.Drawing.Point(103, 168);
     this.Trans_4kv.Maximum = 100;
     this.Trans_4kv.Name = "Trans_4kv";
     this.Trans_4kv.Size = new System.Drawing.Size(186, 19);
     this.Trans_4kv.TabIndex = 12;
     this.Trans_4kv.TickFrequency = 10;
     this.Trans_4kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_4kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // label33
     //
     this.label33.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(3, 65);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(41, 25);
     this.label33.TabIndex = 25;
     this.label33.Text = "250 Hz";
     this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label34
     //
     this.label34.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(3, 40);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(41, 25);
     this.label34.TabIndex = 18;
     this.label34.Text = "125 Hz";
     this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Trans_2k_Out
     //
     this.Trans_2k_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_2k_Out.Enabled = false;
     this.Trans_2k_Out.Location = new System.Drawing.Point(295, 143);
     this.Trans_2k_Out.Name = "Trans_2k_Out";
     this.Trans_2k_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_2k_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_2k_Out.TabIndex = 43;
     this.Trans_2k_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label35
     //
     this.label35.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(3, 15);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(44, 25);
     this.label35.TabIndex = 17;
     this.label35.Text = "62.5 Hz";
     this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Trans_2kv
     //
     this.Trans_2kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_2kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_2kv.Enabled = false;
     this.Trans_2kv.LargeChange = 10;
     this.Trans_2kv.Location = new System.Drawing.Point(103, 143);
     this.Trans_2kv.Maximum = 100;
     this.Trans_2kv.Name = "Trans_2kv";
     this.Trans_2kv.Size = new System.Drawing.Size(186, 19);
     this.Trans_2kv.TabIndex = 11;
     this.Trans_2kv.TickFrequency = 10;
     this.Trans_2kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_2kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // label36
     //
     this.label36.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label36.AutoSize = true;
     this.tableLayoutPanel6.SetColumnSpan(this.label36, 3);
     this.label36.Location = new System.Drawing.Point(3, 2);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(303, 13);
     this.label36.TabIndex = 30;
     this.label36.Text = "Transmission Coefficients (%  non-absorbed transmitted energy)";
     //
     // Trans_63v
     //
     this.Trans_63v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_63v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_63v.Enabled = false;
     this.Trans_63v.LargeChange = 10;
     this.Trans_63v.Location = new System.Drawing.Point(103, 18);
     this.Trans_63v.Maximum = 100;
     this.Trans_63v.Name = "Trans_63v";
     this.Trans_63v.Size = new System.Drawing.Size(186, 19);
     this.Trans_63v.TabIndex = 16;
     this.Trans_63v.TickFrequency = 10;
     this.Trans_63v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_63v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Trans_63_Out
     //
     this.Trans_63_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_63_Out.Enabled = false;
     this.Trans_63_Out.Location = new System.Drawing.Point(295, 18);
     this.Trans_63_Out.Name = "Trans_63_Out";
     this.Trans_63_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_63_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_63_Out.TabIndex = 38;
     this.Trans_63_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Trans_1k_Out
     //
     this.Trans_1k_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_1k_Out.Enabled = false;
     this.Trans_1k_Out.Location = new System.Drawing.Point(295, 118);
     this.Trans_1k_Out.Name = "Trans_1k_Out";
     this.Trans_1k_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_1k_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_1k_Out.TabIndex = 42;
     this.Trans_1k_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Trans_1kv
     //
     this.Trans_1kv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_1kv.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_1kv.Enabled = false;
     this.Trans_1kv.LargeChange = 10;
     this.Trans_1kv.Location = new System.Drawing.Point(103, 118);
     this.Trans_1kv.Maximum = 100;
     this.Trans_1kv.Name = "Trans_1kv";
     this.Trans_1kv.Size = new System.Drawing.Size(186, 19);
     this.Trans_1kv.TabIndex = 10;
     this.Trans_1kv.TickFrequency = 10;
     this.Trans_1kv.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_1kv.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Trans_125_Out
     //
     this.Trans_125_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_125_Out.Enabled = false;
     this.Trans_125_Out.Location = new System.Drawing.Point(295, 43);
     this.Trans_125_Out.Name = "Trans_125_Out";
     this.Trans_125_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_125_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_125_Out.TabIndex = 39;
     this.Trans_125_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Trans_125v
     //
     this.Trans_125v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_125v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_125v.Enabled = false;
     this.Trans_125v.LargeChange = 10;
     this.Trans_125v.Location = new System.Drawing.Point(103, 43);
     this.Trans_125v.Maximum = 100;
     this.Trans_125v.Name = "Trans_125v";
     this.Trans_125v.Size = new System.Drawing.Size(186, 19);
     this.Trans_125v.TabIndex = 15;
     this.Trans_125v.TickFrequency = 10;
     this.Trans_125v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_125v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Trans_500_Out
     //
     this.Trans_500_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_500_Out.Enabled = false;
     this.Trans_500_Out.Location = new System.Drawing.Point(295, 93);
     this.Trans_500_Out.Name = "Trans_500_Out";
     this.Trans_500_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_500_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_500_Out.TabIndex = 41;
     this.Trans_500_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Trans_250v
     //
     this.Trans_250v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_250v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_250v.Enabled = false;
     this.Trans_250v.LargeChange = 10;
     this.Trans_250v.Location = new System.Drawing.Point(103, 68);
     this.Trans_250v.Maximum = 100;
     this.Trans_250v.Name = "Trans_250v";
     this.Trans_250v.Size = new System.Drawing.Size(186, 19);
     this.Trans_250v.TabIndex = 9;
     this.Trans_250v.TickFrequency = 10;
     this.Trans_250v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_250v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Trans_500v
     //
     this.Trans_500v.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_500v.BackColor = System.Drawing.SystemColors.HighlightText;
     this.Trans_500v.Enabled = false;
     this.Trans_500v.LargeChange = 10;
     this.Trans_500v.Location = new System.Drawing.Point(103, 93);
     this.Trans_500v.Maximum = 100;
     this.Trans_500v.Name = "Trans_500v";
     this.Trans_500v.Size = new System.Drawing.Size(186, 19);
     this.Trans_500v.TabIndex = 13;
     this.Trans_500v.TickFrequency = 10;
     this.Trans_500v.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.Trans_500v.ValueChanged += new System.EventHandler(this.Acoustics_Coef_Update);
     //
     // Trans_250_Out
     //
     this.Trans_250_Out.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Trans_250_Out.Enabled = false;
     this.Trans_250_Out.Location = new System.Drawing.Point(295, 68);
     this.Trans_250_Out.Name = "Trans_250_Out";
     this.Trans_250_Out.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Trans_250_Out.Size = new System.Drawing.Size(54, 20);
     this.Trans_250_Out.TabIndex = 40;
     this.Trans_250_Out.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Trans_Check
     //
     this.Trans_Check.AutoSize = true;
     this.Trans_Check.Dock = System.Windows.Forms.DockStyle.Top;
     this.Trans_Check.Location = new System.Drawing.Point(103, 243);
     this.Trans_Check.Name = "Trans_Check";
     this.Trans_Check.Size = new System.Drawing.Size(186, 17);
     this.Trans_Check.TabIndex = 46;
     this.Trans_Check.Text = "Semi-Transparent Material";
     this.Trans_Check.UseVisualStyleBackColor = true;
     this.Trans_Check.CheckedChanged += new System.EventHandler(this.Trans_Check_CheckedChanged);
     //
     // label28
     //
     this.label28.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(3, 190);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(35, 25);
     this.label28.TabIndex = 24;
     this.label28.Text = "8 kHz";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label23
     //
     this.label23.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(3, 215);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 25);
     this.label23.TabIndex = 38;
     this.label23.Text = "Flatten All";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Abs_Designer
     //
     this.Abs_Designer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Abs_Designer.Location = new System.Drawing.Point(6, 106);
     this.Abs_Designer.Name = "Abs_Designer";
     this.Abs_Designer.Size = new System.Drawing.Size(373, 23);
     this.Abs_Designer.TabIndex = 2;
     this.Abs_Designer.Text = "Call Absorption Designer";
     this.Abs_Designer.UseVisualStyleBackColor = true;
     this.Abs_Designer.Click += new System.EventHandler(this.Abs_Designer_Click);
     //
     // LayerLbl
     //
     this.LayerLbl.AutoSize = true;
     this.LayerLbl.Location = new System.Drawing.Point(3, 3);
     this.LayerLbl.Name = "LayerLbl";
     this.LayerLbl.Size = new System.Drawing.Size(54, 13);
     this.LayerLbl.TabIndex = 6;
     this.LayerLbl.Text = "For Layer:";
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.SaveAbs);
     this.groupBox5.Controls.Add(this.Material_Name);
     this.groupBox5.Location = new System.Drawing.Point(189, 27);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(190, 72);
     this.groupBox5.TabIndex = 28;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Save Material Absorption";
     //
     // SaveAbs
     //
     this.SaveAbs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveAbs.Location = new System.Drawing.Point(6, 44);
     this.SaveAbs.Name = "SaveAbs";
     this.SaveAbs.Size = new System.Drawing.Size(178, 23);
     this.SaveAbs.TabIndex = 1;
     this.SaveAbs.Text = "Save Material";
     this.SaveAbs.UseVisualStyleBackColor = true;
     this.SaveAbs.Click += new System.EventHandler(this.SaveAbs_Click);
     //
     // Material_Name
     //
     this.Material_Name.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Material_Name.Location = new System.Drawing.Point(6, 18);
     this.Material_Name.Name = "Material_Name";
     this.Material_Name.Size = new System.Drawing.Size(178, 20);
     this.Material_Name.TabIndex = 0;
     //
     // LayerDisplay
     //
     this.LayerDisplay.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.LayerDisplay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.LayerDisplay.FormattingEnabled = true;
     this.LayerDisplay.Location = new System.Drawing.Point(63, 3);
     this.LayerDisplay.MaxDropDownItems = 100;
     this.LayerDisplay.Name = "LayerDisplay";
     this.LayerDisplay.Size = new System.Drawing.Size(316, 21);
     this.LayerDisplay.TabIndex = 27;
     this.LayerDisplay.SelectedValueChanged += new System.EventHandler(this.Retrieve_Layer_Acoustics);
     //
     // Material_Lib
     //
     this.Material_Lib.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Material_Lib.FormattingEnabled = true;
     this.Material_Lib.Location = new System.Drawing.Point(6, 43);
     this.Material_Lib.Name = "Material_Lib";
     this.Material_Lib.ScrollAlwaysVisible = true;
     this.Material_Lib.Size = new System.Drawing.Size(177, 56);
     this.Material_Lib.TabIndex = 8;
     this.Material_Lib.MouseClick += new System.Windows.Forms.MouseEventHandler(this.Material_Lib_MouseClick);
     //
     // Mat_Lbl
     //
     this.Mat_Lbl.AutoSize = true;
     this.Mat_Lbl.Location = new System.Drawing.Point(6, 27);
     this.Mat_Lbl.Name = "Mat_Lbl";
     this.Mat_Lbl.Size = new System.Drawing.Size(81, 13);
     this.Mat_Lbl.TabIndex = 7;
     this.Mat_Lbl.Text = "Material Library:";
     //
     // TabPage3
     //
     this.TabPage3.AutoScroll = true;
     this.TabPage3.AutoScrollMargin = new System.Drawing.Size(10, 10);
     this.TabPage3.AutoScrollMinSize = new System.Drawing.Size(10, 10);
     this.TabPage3.Controls.Add(this.Source_Aim);
     this.TabPage3.Controls.Add(this.label27);
     this.TabPage3.Controls.Add(this.label26);
     this.TabPage3.Controls.Add(this.Alt_Choice);
     this.TabPage3.Controls.Add(this.Azi_Choice);
     this.TabPage3.Controls.Add(this.label25);
     this.TabPage3.Controls.Add(this.label15);
     this.TabPage3.Controls.Add(this.SourceList);
     this.TabPage3.Controls.Add(this.tableLayoutPanel3);
     this.TabPage3.Controls.Add(this.label20);
     this.TabPage3.Controls.Add(this.Receiver_Choice);
     this.TabPage3.Controls.Add(this.PathCount);
     this.TabPage3.Controls.Add(this.GroupBox3);
     this.TabPage3.Controls.Add(this.Label5);
     this.TabPage3.Location = new System.Drawing.Point(4, 22);
     this.TabPage3.Name = "TabPage3";
     this.TabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage3.Size = new System.Drawing.Size(392, 570);
     this.TabPage3.TabIndex = 2;
     this.TabPage3.Text = "Analysis";
     this.TabPage3.UseVisualStyleBackColor = true;
     //
     // Source_Aim
     //
     this.Source_Aim.FormattingEnabled = true;
     this.Source_Aim.Location = new System.Drawing.Point(85, 149);
     this.Source_Aim.Name = "Source_Aim";
     this.Source_Aim.Size = new System.Drawing.Size(53, 21);
     this.Source_Aim.TabIndex = 51;
     this.Source_Aim.Text = "None";
     this.Source_Aim.SelectedIndexChanged += new System.EventHandler(this.Source_Aim_SelectedIndexChanged);
     //
     // label27
     //
     this.label27.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label27.AutoSize = true;
     this.label27.Enabled = false;
     this.label27.Location = new System.Drawing.Point(160, 152);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(42, 13);
     this.label27.TabIndex = 50;
     this.label27.Text = "Altitude";
     //
     // label26
     //
     this.label26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label26.AutoSize = true;
     this.label26.Enabled = false;
     this.label26.Location = new System.Drawing.Point(268, 152);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(44, 13);
     this.label26.TabIndex = 49;
     this.label26.Text = "Azimuth";
     //
     // Alt_Choice
     //
     this.Alt_Choice.DecimalPlaces = 2;
     this.Alt_Choice.Location = new System.Drawing.Point(208, 150);
     this.Alt_Choice.Maximum = new decimal(new int[] {
     91,
     0,
     0,
     0});
     this.Alt_Choice.Minimum = new decimal(new int[] {
     91,
     0,
     0,
     -2147483648});
     this.Alt_Choice.Name = "Alt_Choice";
     this.Alt_Choice.Size = new System.Drawing.Size(60, 20);
     this.Alt_Choice.TabIndex = 48;
     this.Alt_Choice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.Alt_Choice.ValueChanged += new System.EventHandler(this.Alt_Choice_ValueChanged);
     //
     // Azi_Choice
     //
     this.Azi_Choice.DecimalPlaces = 2;
     this.Azi_Choice.Location = new System.Drawing.Point(318, 150);
     this.Azi_Choice.Maximum = new decimal(new int[] {
     360,
     0,
     0,
     0});
     this.Azi_Choice.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     -2147483648});
     this.Azi_Choice.Name = "Azi_Choice";
     this.Azi_Choice.Size = new System.Drawing.Size(60, 20);
     this.Azi_Choice.TabIndex = 47;
     this.Azi_Choice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.Azi_Choice.ValueChanged += new System.EventHandler(this.Azi_Choice_ValueChanged);
     //
     // label25
     //
     this.label25.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label25.AutoSize = true;
     this.label25.Enabled = false;
     this.label25.Location = new System.Drawing.Point(6, 152);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(73, 13);
     this.label25.TabIndex = 46;
     this.label25.Text = "Aim at Source";
     //
     // label15
     //
     this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label15.AutoSize = true;
     this.label15.Enabled = false;
     this.label15.Location = new System.Drawing.Point(4, 6);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(41, 13);
     this.label15.TabIndex = 45;
     this.label15.Text = "Source";
     //
     // SourceList
     //
     this.SourceList.CheckOnClick = true;
     this.SourceList.FormattingEnabled = true;
     this.SourceList.Location = new System.Drawing.Point(13, 22);
     this.SourceList.MinimumSize = new System.Drawing.Size(4, 64);
     this.SourceList.Name = "SourceList";
     this.SourceList.ScrollAlwaysVisible = true;
     this.SourceList.Size = new System.Drawing.Size(125, 94);
     this.SourceList.TabIndex = 44;
     this.SourceList.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SourceList_MouseUp);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel3.AutoScroll = true;
     this.tableLayoutPanel3.ColumnCount = 4;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 21F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.72973F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.27027F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 114F));
     this.tableLayoutPanel3.Controls.Add(this.IS_Path_Box, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.Analysis_View, 0, 3);
     this.tableLayoutPanel3.Controls.Add(this.Normalize_Graph, 2, 2);
     this.tableLayoutPanel3.Controls.Add(this.LockUserScale, 1, 2);
     this.tableLayoutPanel3.Controls.Add(this.Graph_Octave, 2, 1);
     this.tableLayoutPanel3.Controls.Add(this.Graph_Type, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.Auralisation, 0, 4);
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 189);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 5;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(377, 375);
     this.tableLayoutPanel3.TabIndex = 43;
     //
     // IS_Path_Box
     //
     this.IS_Path_Box.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.IS_Path_Box.CheckOnClick = true;
     this.tableLayoutPanel3.SetColumnSpan(this.IS_Path_Box, 4);
     this.IS_Path_Box.FormattingEnabled = true;
     this.IS_Path_Box.Location = new System.Drawing.Point(3, 3);
     this.IS_Path_Box.MinimumSize = new System.Drawing.Size(4, 64);
     this.IS_Path_Box.Name = "IS_Path_Box";
     this.IS_Path_Box.ScrollAlwaysVisible = true;
     this.IS_Path_Box.Size = new System.Drawing.Size(371, 94);
     this.IS_Path_Box.TabIndex = 7;
     this.IS_Path_Box.MouseUp += new System.Windows.Forms.MouseEventHandler(this.IS_Path_Box_MouseUp);
     //
     // Analysis_View
     //
     this.Analysis_View.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Analysis_View.AutoSize = true;
     this.Analysis_View.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanel3.SetColumnSpan(this.Analysis_View, 4);
     this.Analysis_View.EditButtons = System.Windows.Forms.MouseButtons.Left;
     this.Analysis_View.Location = new System.Drawing.Point(3, 153);
     this.Analysis_View.Name = "Analysis_View";
     this.Analysis_View.PanModifierKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.None)));
     this.Analysis_View.ScrollGrace = 0D;
     this.Analysis_View.ScrollMaxX = 0D;
     this.Analysis_View.ScrollMaxY = 0D;
     this.Analysis_View.ScrollMaxY2 = 0D;
     this.Analysis_View.ScrollMinX = 0D;
     this.Analysis_View.ScrollMinY = 0D;
     this.Analysis_View.ScrollMinY2 = 0D;
     this.Analysis_View.Size = new System.Drawing.Size(371, 193);
     this.Analysis_View.TabIndex = 42;
     //
     // Normalize_Graph
     //
     this.Normalize_Graph.AutoSize = true;
     this.Normalize_Graph.Checked = true;
     this.Normalize_Graph.CheckState = System.Windows.Forms.CheckState.Checked;
     this.Normalize_Graph.Location = new System.Drawing.Point(144, 128);
     this.Normalize_Graph.Name = "Normalize_Graph";
     this.Normalize_Graph.Size = new System.Drawing.Size(115, 17);
     this.Normalize_Graph.TabIndex = 43;
     this.Normalize_Graph.Text = "Normalize To Direct";
     this.Normalize_Graph.UseVisualStyleBackColor = true;
     this.Normalize_Graph.CheckedChanged += new System.EventHandler(this.Normalize_Graph_CheckedChanged);
     //
     // LockUserScale
     //
     this.LockUserScale.AutoSize = true;
     this.LockUserScale.Location = new System.Drawing.Point(24, 128);
     this.LockUserScale.Name = "LockUserScale";
     this.LockUserScale.Size = new System.Drawing.Size(105, 17);
     this.LockUserScale.TabIndex = 44;
     this.LockUserScale.Text = "Lock User Scale";
     this.LockUserScale.UseVisualStyleBackColor = true;
     this.LockUserScale.CheckedChanged += new System.EventHandler(this.Update_Graph);
     //
     // Graph_Octave
     //
     this.Graph_Octave.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel3.SetColumnSpan(this.Graph_Octave, 2);
     this.Graph_Octave.FormattingEnabled = true;
     this.Graph_Octave.Items.AddRange(new object[] {
     "Summation: All Octaves",
     "62.5 Hz.",
     "125 Hz.",
     "250 Hz.",
     "500 Hz.",
     "1 kHz.",
     "2 kHz.",
     "4 kHz.",
     "8 kHz."});
     this.Graph_Octave.Location = new System.Drawing.Point(144, 103);
     this.Graph_Octave.Name = "Graph_Octave";
     this.Graph_Octave.Size = new System.Drawing.Size(230, 21);
     this.Graph_Octave.TabIndex = 33;
     this.Graph_Octave.Text = "Summation: All Octaves";
     this.Graph_Octave.TextChanged += new System.EventHandler(this.Update_Graph);
     //
     // Graph_Type
     //
     this.Graph_Type.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel3.SetColumnSpan(this.Graph_Type, 2);
     this.Graph_Type.FormattingEnabled = true;
     this.Graph_Type.Items.AddRange(new object[] {
     "Energy Time Curve",
     "Pressure Time Curve",
     "Lateral ETC",
     "Lateral PTC",
     "Vertical ETC",
     "Vertical PTC",
     "Fore-Aft ETC",
     "Fore-Aft PTC"});
     this.Graph_Type.Location = new System.Drawing.Point(3, 103);
     this.Graph_Type.Name = "Graph_Type";
     this.Graph_Type.Size = new System.Drawing.Size(135, 21);
     this.Graph_Type.TabIndex = 33;
     this.Graph_Type.Text = "Energy Time Curve";
     this.Graph_Type.TextChanged += new System.EventHandler(this.Update_Graph);
     //
     // Auralisation
     //
     this.Auralisation.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel3.SetColumnSpan(this.Auralisation, 4);
     this.Auralisation.Location = new System.Drawing.Point(3, 352);
     this.Auralisation.Name = "Auralisation";
     this.Auralisation.Size = new System.Drawing.Size(371, 20);
     this.Auralisation.TabIndex = 45;
     this.Auralisation.Text = "Go To Auralizations";
     this.Auralisation.UseVisualStyleBackColor = true;
     this.Auralisation.Click += new System.EventHandler(this.Auralisation_Click);
     //
     // label20
     //
     this.label20.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label20.AutoSize = true;
     this.label20.Enabled = false;
     this.label20.Location = new System.Drawing.Point(4, 123);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(50, 13);
     this.label20.TabIndex = 40;
     this.label20.Text = "Receiver";
     //
     // Receiver_Choice
     //
     this.Receiver_Choice.FormattingEnabled = true;
     this.Receiver_Choice.Location = new System.Drawing.Point(60, 123);
     this.Receiver_Choice.Name = "Receiver_Choice";
     this.Receiver_Choice.Size = new System.Drawing.Size(78, 21);
     this.Receiver_Choice.TabIndex = 39;
     this.Receiver_Choice.Text = "No Results Calculated...";
     this.Receiver_Choice.SelectedIndexChanged += new System.EventHandler(this.Receiver_Choice_SelectedIndexChanged);
     //
     // PathCount
     //
     this.PathCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.PathCount.AutoSize = true;
     this.PathCount.Enabled = false;
     this.PathCount.Location = new System.Drawing.Point(315, 173);
     this.PathCount.Name = "PathCount";
     this.PathCount.Size = new System.Drawing.Size(55, 13);
     this.PathCount.TabIndex = 8;
     this.PathCount.Text = "Pending...";
     this.PathCount.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // GroupBox3
     //
     this.GroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GroupBox3.Controls.Add(this.tableLayoutPanel1);
     this.GroupBox3.Location = new System.Drawing.Point(144, 6);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(242, 138);
     this.GroupBox3.TabIndex = 6;
     this.GroupBox3.TabStop = false;
     this.GroupBox3.Text = "Parametric Analysis";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Controls.Add(this.SRT8, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.Parameter_Choice, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.SRT7, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.SRT6, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.SRT2, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.SRT5, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.SRT3, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.SRT4, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.SRT1, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.ISOCOMP, 1, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 19);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(242, 108);
     this.tableLayoutPanel1.TabIndex = 28;
     //
     // SRT8
     //
     this.SRT8.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT8.AutoSize = true;
     this.SRT8.Location = new System.Drawing.Point(124, 88);
     this.SRT8.Name = "SRT8";
     this.SRT8.Size = new System.Drawing.Size(115, 20);
     this.SRT8.TabIndex = 15;
     this.SRT8.Text = "8000 hz:";
     //
     // Parameter_Choice
     //
     this.Parameter_Choice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Parameter_Choice.FormattingEnabled = true;
     this.Parameter_Choice.Items.AddRange(new object[] {
     "Early Decay Time",
     "T-15",
     "T-30",
     "Center Time (TS)",
     "Clarity (C-50)",
     "Clarity (C-80)",
     "Definition (D-50)",
     "Strength/Loudness (G)",
     "Sound Pressure Level (SPL)",
     "Initial Time Delay Gap (ITDG)",
     "Speech Transmission Index (Explicit)",
     "Modulation Transfer Index (MTI - root STI)",
     "Lateral Fraction (LF)",
     "Lateral Efficiency (LE)",
     "Echo Criterion (Music, 10%)",
     "Echo Criterion (Music, 50%)",
     "Echo Criterion (Speech, 10%)",
     "Echo Criterion (Speech, 50%)"});
     this.Parameter_Choice.Location = new System.Drawing.Point(3, 3);
     this.Parameter_Choice.Name = "Parameter_Choice";
     this.Parameter_Choice.Size = new System.Drawing.Size(115, 21);
     this.Parameter_Choice.TabIndex = 27;
     this.Parameter_Choice.Text = "Select Parameter...";
     this.Parameter_Choice.TextChanged += new System.EventHandler(this.Parameter_Choice_SelectedIndexChanged);
     //
     // SRT7
     //
     this.SRT7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT7.AutoSize = true;
     this.SRT7.Location = new System.Drawing.Point(124, 68);
     this.SRT7.Name = "SRT7";
     this.SRT7.Size = new System.Drawing.Size(115, 20);
     this.SRT7.TabIndex = 14;
     this.SRT7.Text = "4000 hz:";
     //
     // SRT6
     //
     this.SRT6.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT6.AutoSize = true;
     this.SRT6.Location = new System.Drawing.Point(124, 48);
     this.SRT6.Name = "SRT6";
     this.SRT6.Size = new System.Drawing.Size(115, 20);
     this.SRT6.TabIndex = 13;
     this.SRT6.Text = "2000 hz:";
     //
     // SRT2
     //
     this.SRT2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT2.AutoSize = true;
     this.SRT2.Location = new System.Drawing.Point(3, 48);
     this.SRT2.Name = "SRT2";
     this.SRT2.Size = new System.Drawing.Size(115, 20);
     this.SRT2.TabIndex = 9;
     this.SRT2.Text = "125 hz:";
     //
     // SRT5
     //
     this.SRT5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT5.AutoSize = true;
     this.SRT5.Location = new System.Drawing.Point(124, 28);
     this.SRT5.Name = "SRT5";
     this.SRT5.Size = new System.Drawing.Size(115, 20);
     this.SRT5.TabIndex = 12;
     this.SRT5.Text = "1000 hz:";
     //
     // SRT3
     //
     this.SRT3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT3.AutoSize = true;
     this.SRT3.Location = new System.Drawing.Point(3, 68);
     this.SRT3.Name = "SRT3";
     this.SRT3.Size = new System.Drawing.Size(115, 20);
     this.SRT3.TabIndex = 10;
     this.SRT3.Text = "250 hz:";
     //
     // SRT4
     //
     this.SRT4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT4.AutoSize = true;
     this.SRT4.Location = new System.Drawing.Point(3, 88);
     this.SRT4.Name = "SRT4";
     this.SRT4.Size = new System.Drawing.Size(115, 20);
     this.SRT4.TabIndex = 11;
     this.SRT4.Text = "500 hz:";
     //
     // SRT1
     //
     this.SRT1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.SRT1.AutoSize = true;
     this.SRT1.Location = new System.Drawing.Point(3, 28);
     this.SRT1.Name = "SRT1";
     this.SRT1.Size = new System.Drawing.Size(115, 20);
     this.SRT1.TabIndex = 8;
     this.SRT1.Text = "62.5 hz:";
     //
     // ISOCOMP
     //
     this.ISOCOMP.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ISOCOMP.AutoSize = true;
     this.ISOCOMP.Location = new System.Drawing.Point(143, 7);
     this.ISOCOMP.Name = "ISOCOMP";
     this.ISOCOMP.Size = new System.Drawing.Size(77, 13);
     this.ISOCOMP.TabIndex = 28;
     this.ISOCOMP.Text = "ISO-Compliant:";
     this.ISOCOMP.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Label5
     //
     this.Label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Label5.AutoSize = true;
     this.Label5.Enabled = false;
     this.Label5.Location = new System.Drawing.Point(6, 173);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(103, 13);
     this.Label5.TabIndex = 1;
     this.Label5.Text = "Image Source Paths";
     //
     // ToolStripMenuItem1
     //
     this.ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.FromMeshSphereToolStripMenuItem,
     this.FromPointInputToolStripMenuItem});
     this.ToolStripMenuItem1.Name = "ToolStripMenuItem1";
     this.ToolStripMenuItem1.Size = new System.Drawing.Size(214, 22);
     this.ToolStripMenuItem1.Text = "Omni-Directional Source...";
     //
     // FromMeshSphereToolStripMenuItem
     //
     this.FromMeshSphereToolStripMenuItem.Name = "FromMeshSphereToolStripMenuItem";
     this.FromMeshSphereToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
     this.FromMeshSphereToolStripMenuItem.Text = "From MeshSphere";
     //
     // FromPointInputToolStripMenuItem
     //
     this.FromPointInputToolStripMenuItem.Name = "FromPointInputToolStripMenuItem";
     this.FromPointInputToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
     this.FromPointInputToolStripMenuItem.Text = "From Point Input";
     //
     // DirectionalSourceToolStripMenuItem
     //
     this.DirectionalSourceToolStripMenuItem.Name = "DirectionalSourceToolStripMenuItem";
     this.DirectionalSourceToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
     this.DirectionalSourceToolStripMenuItem.Text = "Directional Source...";
     //
     // SelectSourceToolStripMenuItem1
     //
     this.SelectSourceToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolStripMenuItem1,
     this.DirectionalSourceToolStripMenuItem});
     this.SelectSourceToolStripMenuItem1.Name = "SelectSourceToolStripMenuItem1";
     this.SelectSourceToolStripMenuItem1.Size = new System.Drawing.Size(84, 20);
     this.SelectSourceToolStripMenuItem1.Text = "Select Source";
     //
     // SelectASphereToolStripMenuItem
     //
     this.SelectASphereToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.FromSphereObjectToolStripMenuItem1,
     this.FromPointInputToolStripMenuItem2});
     this.SelectASphereToolStripMenuItem.Name = "SelectASphereToolStripMenuItem";
     this.SelectASphereToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.SelectASphereToolStripMenuItem.Text = "Select...";
     //
     // FromSphereObjectToolStripMenuItem1
     //
     this.FromSphereObjectToolStripMenuItem1.Name = "FromSphereObjectToolStripMenuItem1";
     this.FromSphereObjectToolStripMenuItem1.Size = new System.Drawing.Size(179, 22);
     this.FromSphereObjectToolStripMenuItem1.Text = "From Sphere Object";
     //
     // FromPointInputToolStripMenuItem2
     //
     this.FromPointInputToolStripMenuItem2.Name = "FromPointInputToolStripMenuItem2";
     this.FromPointInputToolStripMenuItem2.Size = new System.Drawing.Size(179, 22);
     this.FromPointInputToolStripMenuItem2.Text = "From Point Input";
     //
     // ToolStripMenuItem2
     //
     this.ToolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.SelectASphereToolStripMenuItem});
     this.ToolStripMenuItem2.Name = "ToolStripMenuItem2";
     this.ToolStripMenuItem2.Size = new System.Drawing.Size(93, 20);
     this.ToolStripMenuItem2.Text = "Select Receiver";
     //
     // SP_menu
     //
     this.SP_menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem});
     this.SP_menu.Location = new System.Drawing.Point(0, 0);
     this.SP_menu.Name = "SP_menu";
     this.SP_menu.Size = new System.Drawing.Size(400, 24);
     this.SP_menu.TabIndex = 14;
     this.SP_menu.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openDataToolStripMenuItem,
     this.saveDataToolStripMenuItem,
     this.saveParameterResultsToolStripMenuItem,
     this.savePTBFormatToolStripMenuItem,
     this.saveVRSpectraToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // openDataToolStripMenuItem
     //
     this.openDataToolStripMenuItem.Name = "openDataToolStripMenuItem";
     this.openDataToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
     this.openDataToolStripMenuItem.Text = "Open Data...";
     this.openDataToolStripMenuItem.Click += new System.EventHandler(this.OpenDataToolStripMenuItem_Click);
     //
     // saveDataToolStripMenuItem
     //
     this.saveDataToolStripMenuItem.Name = "saveDataToolStripMenuItem";
     this.saveDataToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
     this.saveDataToolStripMenuItem.Text = "Save Data";
     this.saveDataToolStripMenuItem.Click += new System.EventHandler(this.SaveDataToolStripMenuItem_Click);
     //
     // saveParameterResultsToolStripMenuItem
     //
     this.saveParameterResultsToolStripMenuItem.Name = "saveParameterResultsToolStripMenuItem";
     this.saveParameterResultsToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
     this.saveParameterResultsToolStripMenuItem.Text = "Save Results";
     this.saveParameterResultsToolStripMenuItem.Click += new System.EventHandler(this.SaveResultsToolStripMenuItem_Click);
     //
     // savePTBFormatToolStripMenuItem
     //
     this.savePTBFormatToolStripMenuItem.Name = "savePTBFormatToolStripMenuItem";
     this.savePTBFormatToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
     this.savePTBFormatToolStripMenuItem.Text = "Save PTB Format";
     this.savePTBFormatToolStripMenuItem.Click += new System.EventHandler(this.savePTBFormatToolStripMenuItem_Click);
     //
     // saveVRSpectraToolStripMenuItem
     //
     this.saveVRSpectraToolStripMenuItem.Name = "saveVRSpectraToolStripMenuItem";
     this.saveVRSpectraToolStripMenuItem.Size = new System.Drawing.Size(163, 22);
     //
     // Pach_Hybrid_Control
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMargin = new System.Drawing.Size(10, 10);
     this.AutoScrollMinSize = new System.Drawing.Size(10, 10);
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.Controls.Add(this.SP_menu);
     this.Controls.Add(this.Tabs);
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "Pach_Hybrid_Control";
     this.Size = new System.Drawing.Size(400, 626);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Abs4kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs8kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs8k)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs4k)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs2k)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs2kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs1kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs1k)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs500)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs500Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs250Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs125Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs250)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs125)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs63Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Abs63)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AbsFlat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ScatFlat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat8kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat8kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat4kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat4kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat2kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat2kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat1kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat1kOut)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat500Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat500v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat250v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat250Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat125Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat125v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat63v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Scat63Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmartMat_Display)).EndInit();
     this.Tabs.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.TabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Spec_RayCount)).EndInit();
     this.GroupBox4.ResumeLayout(false);
     this.GroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Air_Pressure)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rel_Humidity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Air_Temp)).EndInit();
     this.GroupBox2.ResumeLayout(false);
     this.GroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CO_TIME)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RT_Count)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Image_Order)).EndInit();
     this.TabPage4.ResumeLayout(false);
     this.TabPage4.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.Absorption.ResumeLayout(false);
     this.Scattering.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel5.PerformLayout();
     this.Transparency.ResumeLayout(false);
     this.tableLayoutPanel6.ResumeLayout(false);
     this.tableLayoutPanel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_Flat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_8k_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_8kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_4k_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_4kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_2k_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_2kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_63v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_63_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_1k_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_1kv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_125_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_125v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_500_Out)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_250v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_500v)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Trans_250_Out)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.TabPage3.ResumeLayout(false);
     this.TabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Alt_Choice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Azi_Choice)).EndInit();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel3.PerformLayout();
     this.GroupBox3.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.SP_menu.ResumeLayout(false);
     this.SP_menu.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title2       = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.chart1  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.button1 = new System.Windows.Forms.Button();
     this.chart2  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.button2 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisY.Title = "Monthly Hours";
     chartArea1.Name        = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(-7, 0);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.Legend       = "Legend1";
     series1.Name         = "My Monthly Worked Hours";
     series1.XValueType   = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     series2.ChartArea    = "ChartArea1";
     series2.Legend       = "Legend1";
     series2.Name         = "Average Worked Hours";
     series2.XValueType   = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size         = new System.Drawing.Size(426, 361);
     this.chart1.TabIndex     = 0;
     this.chart1.Text         = "chart";
     title1.DockedToChartArea = "ChartArea1";
     title1.Font            = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     title1.Name            = " Performance";
     title1.Position.Auto   = false;
     title1.Position.Height = 4.538573F;
     title1.Position.Width  = 33.21841F;
     title1.Position.X      = 17.36849F;
     title1.Position.Y      = 1.685162F;
     title1.Text            = "Performance";
     this.chart1.Titles.Add(title1);
     this.chart1.Click += new System.EventHandler(this.chart1_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(534, 313);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(105, 37);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Reservation Stat";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // chart2
     //
     chartArea2.Area3DStyle.Enable3D = true;
     chartArea2.AxisX.Title          = "pl";
     chartArea2.AxisY.Title          = "Occupied";
     chartArea2.Name = "ChartArea1";
     this.chart2.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.chart2.Legends.Add(legend2);
     this.chart2.Location        = new System.Drawing.Point(413, 0);
     this.chart2.Name            = "chart2";
     series3.ChartArea           = "ChartArea1";
     series3.ChartType           = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
     series3.IsValueShownAsLabel = true;
     series3.Legend          = "Legend1";
     series3.Name            = "Series1";
     series3.YValuesPerPoint = 2;
     this.chart2.Series.Add(series3);
     this.chart2.Size     = new System.Drawing.Size(256, 307);
     this.chart2.TabIndex = 2;
     this.chart2.Text     = "chart2";
     title2.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     title2.Name          = "Title1";
     title2.Text          = "Percentage Occupied";
     this.chart2.Titles.Add(title2);
     this.chart2.Click += new System.EventHandler(this.chart2_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(419, 313);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(102, 36);
     this.button2.TabIndex = 3;
     this.button2.Text     = "Employee Performance";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // Statstics
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ButtonHighlight;
     this.ClientSize          = new System.Drawing.Size(663, 362);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.chart2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chart1);
     this.Name        = "Statstics";
     this.Text        = "Statstics";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Statstics_FormClosed);
     this.Load       += new System.EventHandler(this.Statstics_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
     this.ResumeLayout(false);
 }
예제 #45
0
        private void Form2_Load(object sender, EventArgs e)
        {
            switchFunc(true);

            string[]      times           = new string[2];
            List <string> lines           = new List <string>();
            List <int>    process_ID      = new List <int>();
            List <double> intervals_begin = new List <double>();
            List <double> intervals_end   = new List <double>();

            ReadFileToStringArray(Form1.inputFile, ref lines, times);

            max_length = 0;

            foreach (string line in lines)
            {
                MatchCollection mcID   = Regex.Matches(line, @"p\S+:");
                MatchCollection mc_i_b = Regex.Matches(line, @":\S+\s");
                MatchCollection mc_i_e = Regex.Matches(line, @"\s\S+\b");

                Match mID   = mcID[0];
                Match m_i_b = mc_i_b[0];
                Match m_i_e = mc_i_e[0];

                if (line.Contains('.'))
                {
                    int             i             = 0;
                    MatchCollection float_lengths = Regex.Matches(line, @"\.\d+\b");
                    if (m_i_b.ToString().Contains('.'))
                    {
                        if (float_lengths[i].Length > max_length)
                        {
                            max_length = float_lengths[i].Length;
                        }
                        i++;
                    }
                    if (m_i_e.ToString().Contains('.'))
                    {
                        if (float_lengths[i].Length > max_length)
                        {
                            max_length = float_lengths[i].Length;
                        }
                    }
                }

                string begin_line = m_i_b.ToString();
                string end_line   = m_i_e.ToString();
                int    ID         = int.Parse(mID.ToString().Substring(1, mID.ToString().Length - 2));
                double begin      = double.Parse(begin_line.Substring(1));
                double end        = double.Parse(end_line.Substring(1));
                process_ID.Add(ID);
                intervals_begin.Add(begin);
                intervals_end.Add(end);
            }
            if (max_length != 0)
            {
                max_length--;
            }

            for (int i = 0; i < max_length; ++i)
            {
                leastPercision /= 10;
            }

            gantt.ChartAreas[0].CursorY.IsUserEnabled    = true;
            gantt.ChartAreas[0].CursorY.Interval         = leastPercision;
            gantt.ChartAreas[0].AxisY.ScaleView.Zoomable = false;
            gantt.ChartAreas[0].CursorY.LineColor        = Color.FromArgb(255, 128, 0);
            gantt.ChartAreas[0].CursorY.LineWidth        = 1;

            barChart.ChartAreas[0].CursorY.IsUserEnabled    = true;
            barChart.ChartAreas[0].CursorY.Interval         = leastPercision;
            barChart.ChartAreas[0].AxisY.ScaleView.Zoomable = false;
            barChart.ChartAreas[0].CursorY.LineColor        = Color.FromArgb(255, 128, 0);
            barChart.ChartAreas[0].CursorY.LineWidth        = 1;



            toolTip.UseFading    = true;
            toolTip.UseAnimation = false;
            toolTip.AutoPopDelay = 999999;
            toolTip.InitialDelay = 0;
            toolTip.ReshowDelay  = 0;
            toolTip.ForeColor    = Color.FromArgb(255, 128, 0);
            toolTip.ToolTipTitle = "T = ";
            toolTip.BackColor    = hoveredColor;


            barChart.Series.Remove(barChart.Series[0]);
            barChart.ChartAreas[0].AxisX.Minimum = 0;
            barChart.ChartAreas[0].AxisX.Maximum = 2;

            int[] pos   = new int[Form1.numProcess + 1];
            int   count = Form1.numProcess;

            for (int i = 1; i <= Form1.numProcess; ++i)
            {
                pos[i] = count;
                count--;
            }

            for (int i = 0; i < Form1.numProcess; ++i)
            {
                string pName = "P" + (i + 1).ToString();

                //ganttChart

                System.Windows.Forms.DataVisualization.Charting.CustomLabel label = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
                label.Text       = pName;
                label.ToPosition = pos[i + 1] * 2;
                label.GridTicks  = System.Windows.Forms.DataVisualization.Charting.GridTickTypes.All;
                gantt.ChartAreas[0].AxisX.CustomLabels.Add(label);

                //barChart
                System.Windows.Forms.DataVisualization.Charting.Series item = new System.Windows.Forms.DataVisualization.Charting.Series();
                item.Name      = pName;
                item.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.RangeBar;
                barChart.Series.Add(item);
                barChart.Series[i]["PointWidth"] = "2";
            }
            if (Form1.numProcess > 40)
            {
                gantt.ChartAreas[0].AxisY.LabelStyle.Angle = 90;
            }
            gantt.ChartAreas[0].AxisY.LabelStyle.Interval    = (int)Math.Ceiling((double)Form1.numProcess / 20);
            gantt.ChartAreas[0].AxisY.Interval               = (int)Math.Ceiling((double)Form1.numProcess / 20);
            barChart.ChartAreas[0].AxisY.LabelStyle.Interval = (int)Math.Ceiling((double)Form1.numProcess / 20);
            barChart.ChartAreas[0].AxisY.Interval            = (int)Math.Ceiling((double)Form1.numProcess / 20);
            gantt.Series[0]["PointWidth"] = "0.3";

            for (int i = 0; i < process_ID.Count; ++i)
            {
                ganttPlot(process_ID[i], intervals_begin[i], intervals_end[i]);
                barPlot(process_ID[i], intervals_begin[i], intervals_end[i]);
            }

            AvgWT.Text += times[0].Substring(1) + " units of time";
            TAT.Text   += times[1].Substring(1) + " units of time";
        }
예제 #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series4      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea3   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend3      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series5      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmIngresoEgreso));
     this.tabControl1            = new System.Windows.Forms.TabControl();
     this.tabPage1               = new System.Windows.Forms.TabPage();
     this.chartCobroAnoActual    = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tabPage2               = new System.Windows.Forms.TabPage();
     this.charIngresoEgresoTotal = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tabPage3               = new System.Windows.Forms.TabPage();
     this.chartCategoriasGasto   = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.charIngresoEgresoTotal)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartCategoriasGasto)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(695, 488);
     this.tabControl1.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.chartCobroAnoActual);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(687, 462);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Año Actual";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // chartCobroAnoActual
     //
     this.chartCobroAnoActual.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     chartArea1.AxisX.MajorGrid.Enabled = false;
     chartArea1.AxisY.MajorGrid.Enabled = false;
     chartArea1.AxisY.Title             = "Colones";
     chartArea1.AxisY.TitleFont         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.Name = "ChartArea1";
     this.chartCobroAnoActual.ChartAreas.Add(chartArea1);
     legend1.Name  = "Legend1";
     legend1.Title = "Año Actual";
     this.chartCobroAnoActual.Legends.Add(legend1);
     this.chartCobroAnoActual.Location = new System.Drawing.Point(3, 3);
     this.chartCobroAnoActual.Name     = "chartCobroAnoActual";
     this.chartCobroAnoActual.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.ChartArea           = "ChartArea1";
     series1.Color               = System.Drawing.Color.Lime;
     series1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.IsValueShownAsLabel = true;
     series1.LabelForeColor      = System.Drawing.Color.DarkGreen;
     series1.Legend              = "Legend1";
     series1.MarkerSize          = 7;
     series1.MarkerStep          = 4;
     series1.Name                = "Ingresos";
     series1.XValueMember        = "Ingresos";
     series1.YValueMembers       = "Cantidad";
     series2.ChartArea           = "ChartArea1";
     series2.Color               = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series2.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.IsValueShownAsLabel = true;
     series2.LabelForeColor      = System.Drawing.Color.Crimson;
     series2.Legend              = "Legend1";
     series2.Name                = "Gastos";
     this.chartCobroAnoActual.Series.Add(series1);
     this.chartCobroAnoActual.Series.Add(series2);
     this.chartCobroAnoActual.Size     = new System.Drawing.Size(684, 449);
     this.chartCobroAnoActual.TabIndex = 4;
     this.chartCobroAnoActual.Text     = "chart2";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.charIngresoEgresoTotal);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(687, 462);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Todo";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // charIngresoEgresoTotal
     //
     this.charIngresoEgresoTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     chartArea2.AxisX.MajorGrid.Enabled = false;
     chartArea2.AxisY.MajorGrid.Enabled = false;
     chartArea2.AxisY.Title             = "Colones";
     chartArea2.Name = "ChartArea1";
     this.charIngresoEgresoTotal.ChartAreas.Add(chartArea2);
     legend2.Name  = "Legend1";
     legend2.Title = "Total";
     this.charIngresoEgresoTotal.Legends.Add(legend2);
     this.charIngresoEgresoTotal.Location = new System.Drawing.Point(3, 3);
     this.charIngresoEgresoTotal.Name     = "charIngresoEgresoTotal";
     this.charIngresoEgresoTotal.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series3.ChartArea           = "ChartArea1";
     series3.Color               = System.Drawing.Color.Lime;
     series3.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series3.IsValueShownAsLabel = true;
     series3.LabelForeColor      = System.Drawing.Color.DarkGreen;
     series3.Legend              = "Legend1";
     series3.MarkerSize          = 7;
     series3.MarkerStep          = 4;
     series3.Name                = "Ingresos";
     series3.XValueMember        = "Ingresos";
     series3.YValueMembers       = "Cantidad";
     series4.ChartArea           = "ChartArea1";
     series4.Color               = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series4.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series4.IsValueShownAsLabel = true;
     series4.LabelForeColor      = System.Drawing.Color.Crimson;
     series4.Legend              = "Legend1";
     series4.Name                = "Gastos";
     this.charIngresoEgresoTotal.Series.Add(series3);
     this.charIngresoEgresoTotal.Series.Add(series4);
     this.charIngresoEgresoTotal.Size     = new System.Drawing.Size(684, 449);
     this.charIngresoEgresoTotal.TabIndex = 5;
     this.charIngresoEgresoTotal.Text     = "chart2";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.chartCategoriasGasto);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(687, 462);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Categorías";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // chartCategoriasGasto
     //
     customLabel1.Text = "1";
     customLabel2.Text = "2";
     customLabel3.Text = "3";
     customLabel4.Text = "4";
     chartArea3.AxisX.CustomLabels.Add(customLabel1);
     chartArea3.AxisX.CustomLabels.Add(customLabel2);
     chartArea3.AxisX.CustomLabels.Add(customLabel3);
     chartArea3.AxisX.CustomLabels.Add(customLabel4);
     chartArea3.AxisX.StripLines.Add(stripLine1);
     chartArea3.AxisX.Title          = "relative";
     chartArea3.AxisX.TitleAlignment = System.Drawing.StringAlignment.Far;
     customLabel5.LabelMark          = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel5.Text      = "YText0";
     customLabel6.LabelMark = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.LineSideMark;
     customLabel6.RowIndex  = 1;
     customLabel6.Text      = "YText2";
     chartArea3.AxisY.CustomLabels.Add(customLabel5);
     chartArea3.AxisY.CustomLabels.Add(customLabel6);
     chartArea3.AxisY.Title = "Titulo Y";
     chartArea3.Name        = "ChartArea1";
     this.chartCategoriasGasto.ChartAreas.Add(chartArea3);
     this.chartCategoriasGasto.ImeMode = System.Windows.Forms.ImeMode.Disable;
     legend3.Name  = "Legend1";
     legend3.Title = "Uso Categorias Gasto";
     this.chartCategoriasGasto.Legends.Add(legend3);
     this.chartCategoriasGasto.Location = new System.Drawing.Point(-4, 0);
     this.chartCategoriasGasto.Name     = "chartCategoriasGasto";
     this.chartCategoriasGasto.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series5.ChartArea           = "ChartArea1";
     series5.ChartType           = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
     series5.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series5.IsValueShownAsLabel = true;
     series5.Legend              = "Legend1";
     series5.Name                = "Series1";
     series5.XValueMember        = "Categoria";
     series5.XValueType          = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     series5.YValueMembers       = "Cantidad";
     this.chartCategoriasGasto.Series.Add(series5);
     this.chartCategoriasGasto.Size     = new System.Drawing.Size(691, 462);
     this.chartCategoriasGasto.TabIndex = 1;
     this.chartCategoriasGasto.Text     = "chart1";
     //
     // frmIngresoEgreso
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize          = new System.Drawing.Size(695, 487);
     this.Controls.Add(this.tabControl1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "frmIngresoEgreso";
     this.Text  = "Ingreso y Egresos";
     this.Load += new System.EventHandler(this.frmIngresoEgreso_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.charIngresoEgresoTotal)).EndInit();
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartCategoriasGasto)).EndInit();
     this.ResumeLayout(false);
 }
예제 #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ImageAnnotation  imageAnnotation1  = new System.Windows.Forms.DataVisualization.Charting.ImageAnnotation();
     System.Windows.Forms.DataVisualization.Charting.ChartArea        chartArea1        = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel1      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel2      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel3      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel4      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel5      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel6      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel7      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel8      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel9      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel10     = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel11     = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine1        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine2        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine3        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine4        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine5        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine6        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend           legend1           = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn1 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn2 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.Legend           legend2           = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn3 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn4 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.Series           series1           = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series           series2           = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Chart));
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     imageAnnotation1.AnchorAlignment      = System.Drawing.ContentAlignment.TopCenter;
     imageAnnotation1.Height               = 12D;
     imageAnnotation1.IsSizeAlwaysRelative = false;
     imageAnnotation1.Name  = "logo";
     imageAnnotation1.Width = 15D;
     imageAnnotation1.X     = 10D;
     imageAnnotation1.Y     = 0D;
     this.chart1.Annotations.Add(imageAnnotation1);
     this.chart1.BackColor                         = System.Drawing.Color.Black;
     chartArea1.AxisX.Interval                     = 30D;
     chartArea1.AxisX.IntervalOffset               = 1D;
     chartArea1.AxisX.IntervalOffsetType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.IntervalType                 = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.IsMarginVisible              = false;
     chartArea1.AxisX.LabelAutoFitMaxFontSize      = 12;
     chartArea1.AxisX.LabelAutoFitMinFontSize      = 12;
     chartArea1.AxisX.LabelStyle.Enabled           = false;
     chartArea1.AxisX.MajorGrid.Enabled            = false;
     chartArea1.AxisX.MajorGrid.Interval           = 30D;
     chartArea1.AxisX.MajorGrid.IntervalOffset     = 30D;
     chartArea1.AxisX.MajorGrid.LineColor          = System.Drawing.Color.DimGray;
     chartArea1.AxisX.MajorGrid.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisX.MajorTickMark.Enabled        = false;
     chartArea1.AxisX.MajorTickMark.Interval       = 15D;
     chartArea1.AxisX.Minimum                      = 0D;
     chartArea1.AxisX.ScaleView.Position           = 0D;
     chartArea1.AxisX.ScaleView.Size               = 120D;
     chartArea1.AxisX.ScaleView.SizeType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.ScaleView.SmallScrollMinSize = 0D;
     chartArea1.AxisX.ScaleView.Zoomable           = false;
     chartArea1.AxisX.ScrollBar.Enabled            = false;
     chartArea1.AxisY.Crossing                     = -0.5D;
     customLabel1.ForeColor                        = System.Drawing.Color.White;
     customLabel1.Text          = "Baubiologie\nIdéal";
     customLabel1.ToPosition    = 0.06D;
     customLabel2.ForeColor     = System.Drawing.Color.White;
     customLabel2.FromPosition  = 0.06D;
     customLabel2.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel2.LabelMark     = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel2.ToPosition    = 0.06D;
     customLabel3.ForeColor     = System.Drawing.Color.White;
     customLabel3.FromPosition  = 0.06D;
     customLabel3.Text          = "Baubiologie\nMax";
     customLabel3.ToPosition    = 0.6D;
     customLabel4.ForeColor     = System.Drawing.Color.White;
     customLabel4.FromPosition  = 0.6D;
     customLabel4.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel4.LabelMark     = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel4.ToPosition    = 0.6D;
     customLabel5.ForeColor     = System.Drawing.Color.White;
     customLabel5.FromPosition  = 0.3D;
     customLabel5.Text          = "Recom-\nmandation\nUE 0.6 V/m";
     customLabel5.ToPosition    = 0.9D;
     customLabel6.ForeColor     = System.Drawing.Color.White;
     customLabel6.FromPosition  = 6D;
     customLabel6.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel6.ToPosition    = 6D;
     customLabel7.ForeColor     = System.Drawing.Color.White;
     customLabel7.FromPosition  = 3D;
     customLabel7.Text          = "Seuil légal\nSuisse\nRussie\nPologne\nBulgarie\nItalie";
     customLabel7.ToPosition    = 9D;
     customLabel8.FromPosition  = 12D;
     customLabel8.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel8.ToPosition    = 12D;
     customLabel9.ForeColor     = System.Drawing.Color.White;
     customLabel9.FromPosition  = 9D;
     customLabel9.Text          = "Seuil légal\nChine";
     customLabel9.ToPosition    = 15D;
     customLabel10.FromPosition = 20D;
     customLabel10.GridTicks    = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel10.ToPosition   = 20D;
     customLabel11.FromPosition = 17D;
     customLabel11.Text         = "Seuil légal\nLituanie\nInde";
     customLabel11.ToPosition   = 23D;
     chartArea1.AxisY.CustomLabels.Add(customLabel1);
     chartArea1.AxisY.CustomLabels.Add(customLabel2);
     chartArea1.AxisY.CustomLabels.Add(customLabel3);
     chartArea1.AxisY.CustomLabels.Add(customLabel4);
     chartArea1.AxisY.CustomLabels.Add(customLabel5);
     chartArea1.AxisY.CustomLabels.Add(customLabel6);
     chartArea1.AxisY.CustomLabels.Add(customLabel7);
     chartArea1.AxisY.CustomLabels.Add(customLabel8);
     chartArea1.AxisY.CustomLabels.Add(customLabel9);
     chartArea1.AxisY.CustomLabels.Add(customLabel10);
     chartArea1.AxisY.CustomLabels.Add(customLabel11);
     chartArea1.AxisY.Enabled                 = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY.Interval                = 1D;
     chartArea1.AxisY.IsLabelAutoFit          = false;
     chartArea1.AxisY.LabelAutoFitMaxFontSize = 12;
     chartArea1.AxisY.LabelAutoFitMinFontSize = 10;
     chartArea1.AxisY.LabelAutoFitStyle       = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)(((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                                                                                                                         | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep45)
                                                                                                                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep90)
                                                                                                                       | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
     chartArea1.AxisY.LabelStyle.Font             = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.LabelStyle.ForeColor        = System.Drawing.Color.White;
     chartArea1.AxisY.MajorTickMark.LineColor     = System.Drawing.Color.White;
     chartArea1.AxisY.MajorTickMark.LineWidth     = 3;
     chartArea1.AxisY.MajorTickMark.Size          = 1.5F;
     chartArea1.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
     chartArea1.AxisY.Maximum           = 20D;
     chartArea1.AxisY.MaximumAutoSize   = 15F;
     chartArea1.AxisY.Minimum           = -0.5D;
     chartArea1.AxisY.ScrollBar.Enabled = false;
     stripLine1.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(3)))), ((int)(((byte)(3)))));
     stripLine1.ForeColor         = System.Drawing.Color.White;
     stripLine1.IntervalOffset    = -0.5D;
     stripLine1.StripWidth        = 0.56D;
     stripLine1.TextAlignment     = System.Drawing.StringAlignment.Near;
     stripLine1.TextLineAlignment = System.Drawing.StringAlignment.Center;
     stripLine2.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(73)))), ((int)(((byte)(22)))), ((int)(((byte)(23)))));
     stripLine2.IntervalOffset    = 0.06D;
     stripLine2.StripWidth        = 0.54D;
     stripLine3.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(41)))), ((int)(((byte)(31)))));
     stripLine3.IntervalOffset    = 0.6D;
     stripLine3.StripWidth        = 5.4D;
     stripLine4.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(63)))), ((int)(((byte)(35)))));
     stripLine4.IntervalOffset    = 6D;
     stripLine4.StripWidth        = 6D;
     stripLine5.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(91)))), ((int)(((byte)(33)))));
     stripLine5.IntervalOffset    = 12D;
     stripLine5.StripWidth        = 8D;
     stripLine6.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(122)))), ((int)(((byte)(21)))));
     stripLine6.IntervalOffset    = 20D;
     stripLine6.StripWidth        = 50D;
     chartArea1.AxisY.StripLines.Add(stripLine1);
     chartArea1.AxisY.StripLines.Add(stripLine2);
     chartArea1.AxisY.StripLines.Add(stripLine3);
     chartArea1.AxisY.StripLines.Add(stripLine4);
     chartArea1.AxisY.StripLines.Add(stripLine5);
     chartArea1.AxisY.StripLines.Add(stripLine6);
     chartArea1.AxisY.TitleFont                     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.TitleForeColor                = System.Drawing.Color.White;
     chartArea1.AxisY2.Crossing                     = -0.5D;
     chartArea1.AxisY2.Enabled                      = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY2.Interval                     = 1D;
     chartArea1.AxisY2.IsLabelAutoFit               = false;
     chartArea1.AxisY2.IsMarginVisible              = false;
     chartArea1.AxisY2.LabelAutoFitMinFontSize      = 10;
     chartArea1.AxisY2.LabelStyle.Font              = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY2.LabelStyle.ForeColor         = System.Drawing.Color.White;
     chartArea1.AxisY2.LabelStyle.Format            = "0.0# V/m";
     chartArea1.AxisY2.LabelStyle.IsEndLabelVisible = false;
     chartArea1.AxisY2.LineColor                    = System.Drawing.Color.DimGray;
     chartArea1.AxisY2.MajorGrid.Interval           = 0.5D;
     chartArea1.AxisY2.MajorGrid.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY2.MajorGrid.LineColor          = System.Drawing.Color.DimGray;
     chartArea1.AxisY2.MajorGrid.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisY2.MajorTickMark.Interval       = 0.1D;
     chartArea1.AxisY2.MajorTickMark.LineColor      = System.Drawing.Color.White;
     chartArea1.AxisY2.MajorTickMark.LineWidth      = 2;
     chartArea1.AxisY2.MajorTickMark.Size           = 0.5F;
     chartArea1.AxisY2.MajorTickMark.TickMarkStyle  = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
     chartArea1.AxisY2.Maximum                      = 20D;
     chartArea1.AxisY2.Minimum                      = -0.5D;
     chartArea1.AxisY2.ScrollBar.Enabled            = false;
     chartArea1.AxisY2.TitleForeColor               = System.Drawing.Color.White;
     chartArea1.BackColor          = System.Drawing.Color.Black;
     chartArea1.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Top;
     chartArea1.BackImageWrapMode  = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Unscaled;
     chartArea1.BorderColor        = System.Drawing.Color.Transparent;
     chartArea1.Name            = "ChartArea1";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 100F;
     chartArea1.Position.Width  = 100F;
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Alignment              = System.Drawing.StringAlignment.Center;
     legend1.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     legend1.BorderColor            = System.Drawing.Color.Transparent;
     legendCellColumn1.ColumnType   = System.Windows.Forms.DataVisualization.Charting.LegendCellColumnType.SeriesSymbol;
     legendCellColumn1.Name         = "Column1";
     legendCellColumn2.Alignment    = System.Drawing.ContentAlignment.MiddleLeft;
     legendCellColumn2.MinimumWidth = 5000;
     legendCellColumn2.Name         = "Column2";
     legend1.CellColumns.Add(legendCellColumn1);
     legend1.CellColumns.Add(legendCellColumn2);
     legend1.DockedToChartArea = "ChartArea1";
     legend1.Docking           = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     legend1.Font                   = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     legend1.ForeColor              = System.Drawing.Color.White;
     legend1.IsTextAutoFit          = false;
     legend1.LegendStyle            = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Column;
     legend1.Name                   = "LegendS1";
     legend1.Position.Auto          = false;
     legend1.Position.Height        = 10F;
     legend1.Position.Width         = 18F;
     legend1.Position.X             = 31F;
     legend1.Position.Y             = 1F;
     legend1.TableStyle             = System.Windows.Forms.DataVisualization.Charting.LegendTableStyle.Wide;
     legend1.TextWrapThreshold      = 50;
     legend1.TitleFont              = new System.Drawing.Font("Microsoft Sans Serif", 2.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     legend2.Alignment              = System.Drawing.StringAlignment.Center;
     legend2.AutoFitMinFontSize     = 12;
     legend2.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     legend2.BorderColor            = System.Drawing.Color.Transparent;
     legendCellColumn3.ColumnType   = System.Windows.Forms.DataVisualization.Charting.LegendCellColumnType.SeriesSymbol;
     legendCellColumn3.Name         = "Column1";
     legendCellColumn4.Alignment    = System.Drawing.ContentAlignment.MiddleLeft;
     legendCellColumn4.MinimumWidth = 5000;
     legendCellColumn4.Name         = "Column2";
     legend2.CellColumns.Add(legendCellColumn3);
     legend2.CellColumns.Add(legendCellColumn4);
     legend2.DockedToChartArea = "ChartArea1";
     legend2.Docking           = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     legend2.Font              = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
     legend2.ForeColor         = System.Drawing.Color.White;
     legend2.IsTextAutoFit     = false;
     legend2.Name              = "LegendS2";
     legend2.Position.Auto     = false;
     legend2.Position.Height   = 10F;
     legend2.Position.Width    = 18F;
     legend2.Position.X        = 51F;
     legend2.Position.Y        = 1F;
     legend2.TextWrapThreshold = 50;
     legend2.TitleFont         = new System.Drawing.Font("Microsoft Sans Serif", 2.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chart1.Legends.Add(legend1);
     this.chart1.Legends.Add(legend2);
     this.chart1.Location     = new System.Drawing.Point(-25, 0);
     this.chart1.Name         = "chart1";
     series1.BorderWidth      = 5;
     series1.ChartArea        = "ChartArea1";
     series1.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series1.Color            = System.Drawing.Color.DodgerBlue;
     series1.CustomProperties = "PointWidth=1";
     series1.Font             = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.LabelBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series1.LabelBorderWidth = 0;
     series1.LabelForeColor   = System.Drawing.Color.White;
     series1.Legend           = "LegendS1";
     series1.Name             = "Series1";
     series1.ShadowColor      = System.Drawing.Color.Empty;
     series1.SmartLabelStyle.CalloutLineColor = System.Drawing.Color.White;
     series1.SmartLabelStyle.Enabled          = false;
     series1.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.BorderWidth      = 5;
     series2.ChartArea        = "ChartArea1";
     series2.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series2.Color            = System.Drawing.Color.YellowGreen;
     series2.CustomProperties = "PointWidth=1";
     series2.Font             = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.IsXValueIndexed  = true;
     series2.LabelBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series2.LabelBorderWidth = 0;
     series2.LabelForeColor   = System.Drawing.Color.White;
     series2.Legend           = "LegendS2";
     series2.Name             = "Series2";
     series2.SmartLabelStyle.CalloutLineColor = System.Drawing.Color.White;
     series2.SmartLabelStyle.Enabled          = false;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(1030, 731);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // Chart
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(1008, 729);
     this.Controls.Add(this.chart1);
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name           = "Chart";
     this.Text           = "Remous (graphique)";
     this.FormClosed    += new System.Windows.Forms.FormClosedEventHandler(this.Chart_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #48
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Conventional Diesel");
            System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Residual Oil");
            System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Low Sulfur Diesel");
            System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Natural Gas");
            System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Biodiesel");
            System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Fischer Tropsch Diesel");
            System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Conventional Diesel");
            System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Residual Oil");
            System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Low Sulfur Diesel");
            System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Natural Gas");
            System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Biodiesel");
            System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Fischer Tropsch Diesel");
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TEAMS));
            this.engine_tabs = new System.Windows.Forms.TabControl();
            this.EV_Tab = new System.Windows.Forms.TabPage();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.panel_Aux_Engine_Vars = new System.Windows.Forms.Panel();
            this.label_Aux_Num_Engines_Onboard = new System.Windows.Forms.Label();
            this.updown_Aux_Number_Engines = new System.Windows.Forms.NumericUpDown();
            this.updown_Aux_Engines_In_Use = new System.Windows.Forms.NumericUpDown();
            this.updown_Aux_HP_Per_Engine = new System.Windows.Forms.NumericUpDown();
            this.updown_Tot_Onboard_AUX_HP = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_Num_Engines_In_Use = new System.Windows.Forms.Label();
            this.label_Aux_Engine_Rated_HP = new System.Windows.Forms.Label();
            this.label_Aux_Total_Onboard_HP = new System.Windows.Forms.Label();
            this.panel_Main_Engine_Vars = new System.Windows.Forms.Panel();
            this.updown_Single_Engine_HP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Num_Engines = new System.Windows.Forms.Label();
            this.label_Main_Single_Engine_HP = new System.Windows.Forms.Label();
            this.label_Main_Total_HP = new System.Windows.Forms.Label();
            this.updown_Number_Of_Engines = new System.Windows.Forms.NumericUpDown();
            this.updown_Tot_Onboard_HP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Vessel_ID = new System.Windows.Forms.Label();
            this.textBox_Vessel_Type = new System.Windows.Forms.TextBox();
            this.EC_Tab = new System.Windows.Forms.TabPage();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.panel_Aux_Engine_Chars = new System.Windows.Forms.Panel();
            this.label_Aux_Percent_2 = new System.Windows.Forms.Label();
            this.label_Aux_Percent_1 = new System.Windows.Forms.Label();
            this.label_Aux_Percent_Active = new System.Windows.Forms.Label();
            this.updown_Aux_Percent_Trip_Active = new System.Windows.Forms.NumericUpDown();
            this.updown_AUX_Time_Active = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_Time_Active = new System.Windows.Forms.Label();
            this.updown_Aux_HP_Load_Factor = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_HP_Load_Factor = new System.Windows.Forms.Label();
            this.updown_AUX_Active_HP = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_Active_HP = new System.Windows.Forms.Label();
            this.updown_Tot_AUX_Energy = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_Total_Energy = new System.Windows.Forms.Label();
            this.panel_Main_Engine_Chars = new System.Windows.Forms.Panel();
            this.label_Main_Energy_Total = new System.Windows.Forms.Label();
            this.label_Main_Percent_10 = new System.Windows.Forms.Label();
            this.updown_EP_Total = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_9 = new System.Windows.Forms.Label();
            this.updown_EP_Slow_Cruise = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_8 = new System.Windows.Forms.Label();
            this.updown_HP_Slow_Cruise = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_7 = new System.Windows.Forms.Label();
            this.updown_Horsepower_Slow_Cruise = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_6 = new System.Windows.Forms.Label();
            this.updown_Time_Slow_Cruise = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_5 = new System.Windows.Forms.Label();
            this.updown_Percent_Slow_Cruise = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_4 = new System.Windows.Forms.Label();
            this.updown_EP_Precautionary = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_3 = new System.Windows.Forms.Label();
            this.updown_HP_Precautionary = new System.Windows.Forms.NumericUpDown();
            this.updown_EP_Full_Cruise = new System.Windows.Forms.NumericUpDown();
            this.updown_Horsepower_Precautionary = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_2 = new System.Windows.Forms.Label();
            this.updown_Time_Precautionary = new System.Windows.Forms.NumericUpDown();
            this.updown_Percent_Precautionary = new System.Windows.Forms.NumericUpDown();
            this.updown_HP_Full_Cruise = new System.Windows.Forms.NumericUpDown();
            this.updown_EP_Maneuvering = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_1 = new System.Windows.Forms.Label();
            this.updown_HP_Maneuvering = new System.Windows.Forms.NumericUpDown();
            this.updown_Horsepower_Full_Cruise = new System.Windows.Forms.NumericUpDown();
            this.updown_Time_Maneuvering = new System.Windows.Forms.NumericUpDown();
            this.text_Main_Mode_5 = new System.Windows.Forms.TextBox();
            this.updown_Percent_Maneuvering = new System.Windows.Forms.NumericUpDown();
            this.updown_Time_Full_Cruise = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Energy_Production = new System.Windows.Forms.Label();
            this.updown_Percent_Full_Cruise = new System.Windows.Forms.NumericUpDown();
            this.updown_EP_Idle = new System.Windows.Forms.NumericUpDown();
            this.text_Main_Mode_4 = new System.Windows.Forms.TextBox();
            this.label_Main_HP_Per_Engine = new System.Windows.Forms.Label();
            this.text_Main_Mode_3 = new System.Windows.Forms.TextBox();
            this.updown_HP_Idle = new System.Windows.Forms.NumericUpDown();
            this.text_Main_Mode_2 = new System.Windows.Forms.TextBox();
            this.updown_Horsepower_Idle = new System.Windows.Forms.NumericUpDown();
            this.text_Main_Mode_1 = new System.Windows.Forms.TextBox();
            this.updown_Time_Idle = new System.Windows.Forms.NumericUpDown();
            this.updown_Horsepower_Maneuvering = new System.Windows.Forms.NumericUpDown();
            this.updown_Percent_Idle = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Percent_In_Mode = new System.Windows.Forms.Label();
            this.label_Main_HP_Load_Factor = new System.Windows.Forms.Label();
            this.label_Main_Time_Per_Mode = new System.Windows.Forms.Label();
            this.UI_Tab = new System.Windows.Forms.TabPage();
            this.label7 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.panel_Aux_Emissions_Input = new System.Windows.Forms.Panel();
            this.Aux_Residual_Oil_Label = new System.Windows.Forms.Label();
            this.Aux_ULSD_Label = new System.Windows.Forms.Label();
            this.Aux_Ult_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Ult_N2O = new System.Windows.Forms.NumericUpDown();
            this.Aux_Ult_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Ult_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Ult_VOC = new System.Windows.Forms.NumericUpDown();
            this.Aux_Ult_CO = new System.Windows.Forms.NumericUpDown();
            this.Aux_Ult_NOX = new System.Windows.Forms.NumericUpDown();
            this.Aux_Biodiesel_Label = new System.Windows.Forms.Label();
            this.Aux_Bio_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Bio_N2O = new System.Windows.Forms.NumericUpDown();
            this.Aux_Bio_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Bio_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Bio_VOC = new System.Windows.Forms.NumericUpDown();
            this.Aux_Bio_CO = new System.Windows.Forms.NumericUpDown();
            this.Aux_Bio_NOX = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fischer_Label = new System.Windows.Forms.Label();
            this.Aux_Fis_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fis_N2O = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fis_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fis_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fis_VOC = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fis_CO = new System.Windows.Forms.NumericUpDown();
            this.Aux_Fis_NOX = new System.Windows.Forms.NumericUpDown();
            this.Aux_Natural_Gas_Label = new System.Windows.Forms.Label();
            this.Aux_Nat_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Nat_N2O = new System.Windows.Forms.NumericUpDown();
            this.Aux_Nat_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Nat_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Nat_VOC = new System.Windows.Forms.NumericUpDown();
            this.Aux_Nat_CO = new System.Windows.Forms.NumericUpDown();
            this.Aux_Nat_NOX = new System.Windows.Forms.NumericUpDown();
            this.Aux_Diesel_Label = new System.Windows.Forms.Label();
            this.Aux_Die_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Die_N2O = new System.Windows.Forms.NumericUpDown();
            this.Aux_Die_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Die_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Aux_Die_VOC = new System.Windows.Forms.NumericUpDown();
            this.Aux_Die_CO = new System.Windows.Forms.NumericUpDown();
            this.Aux_Die_NOX = new System.Windows.Forms.NumericUpDown();
            this.Aux_Res_CH4 = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_CH4 = new System.Windows.Forms.Label();
            this.Aux_Res_N2O = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_N2O = new System.Windows.Forms.Label();
            this.Aux_Res_PM25 = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_PM25 = new System.Windows.Forms.Label();
            this.Aux_Res_PM10 = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_PM10 = new System.Windows.Forms.Label();
            this.Aux_Res_VOC = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_VOC = new System.Windows.Forms.Label();
            this.Aux_Res_CO = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_CO = new System.Windows.Forms.Label();
            this.Aux_Res_NOX = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_NOX = new System.Windows.Forms.Label();
            this.panel_main_engine_inputs = new System.Windows.Forms.Panel();
            this.Main_ULSD_Label = new System.Windows.Forms.Label();
            this.Ult_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Ult_N2O = new System.Windows.Forms.NumericUpDown();
            this.Ult_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Ult_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Ult_VOC = new System.Windows.Forms.NumericUpDown();
            this.Ult_CO = new System.Windows.Forms.NumericUpDown();
            this.Ult_NOX = new System.Windows.Forms.NumericUpDown();
            this.Main_Biodiesel_Label = new System.Windows.Forms.Label();
            this.Bio_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Bio_N2O = new System.Windows.Forms.NumericUpDown();
            this.Bio_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Bio_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Bio_VOC = new System.Windows.Forms.NumericUpDown();
            this.Bio_CO = new System.Windows.Forms.NumericUpDown();
            this.Bio_NOX = new System.Windows.Forms.NumericUpDown();
            this.Main_Fischer_Label = new System.Windows.Forms.Label();
            this.Fis_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Fis_N2O = new System.Windows.Forms.NumericUpDown();
            this.Fis_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Fis_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Fis_VOC = new System.Windows.Forms.NumericUpDown();
            this.Fis_CO = new System.Windows.Forms.NumericUpDown();
            this.Fis_NOX = new System.Windows.Forms.NumericUpDown();
            this.Main_Natural_Gas_Label = new System.Windows.Forms.Label();
            this.Nat_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Nat_N2O = new System.Windows.Forms.NumericUpDown();
            this.Nat_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Nat_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Nat_VOC = new System.Windows.Forms.NumericUpDown();
            this.Nat_CO = new System.Windows.Forms.NumericUpDown();
            this.Nat_NOX = new System.Windows.Forms.NumericUpDown();
            this.Main_Diesel_Label = new System.Windows.Forms.Label();
            this.Die_CH4 = new System.Windows.Forms.NumericUpDown();
            this.Die_N2O = new System.Windows.Forms.NumericUpDown();
            this.Die_PM25 = new System.Windows.Forms.NumericUpDown();
            this.Die_PM10 = new System.Windows.Forms.NumericUpDown();
            this.Die_VOC = new System.Windows.Forms.NumericUpDown();
            this.Die_CO = new System.Windows.Forms.NumericUpDown();
            this.Die_NOX = new System.Windows.Forms.NumericUpDown();
            this.Main_Residual_Oil_Label = new System.Windows.Forms.Label();
            this.Res_CH4 = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_CH4 = new System.Windows.Forms.Label();
            this.Res_N2O = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_N2O = new System.Windows.Forms.Label();
            this.Res_PM25 = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_PM25 = new System.Windows.Forms.Label();
            this.Res_PM10 = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_PM10 = new System.Windows.Forms.Label();
            this.Res_VOC = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_VOC = new System.Windows.Forms.Label();
            this.Res_CO = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_CO = new System.Windows.Forms.Label();
            this.Res_NOX = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Inputs_NOX = new System.Windows.Forms.Label();
            this.FC_Tab = new System.Windows.Forms.TabPage();
            this.panel_Aux_Fuel_Calc = new System.Windows.Forms.Panel();
            this.label_Aux_Percent_3 = new System.Windows.Forms.Label();
            this.label229 = new System.Windows.Forms.Label();
            this.label_Aux_Gallon = new System.Windows.Forms.Label();
            this.updown_AUX_MMBTU_Out = new System.Windows.Forms.NumericUpDown();
            this.updown_AUX_GALLON = new System.Windows.Forms.NumericUpDown();
            this.updown_Aux_Engine_Efficiency = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_mmbtu_In = new System.Windows.Forms.Label();
            this.label_Aux_Engine_Efficiency = new System.Windows.Forms.Label();
            this.updown_AUX_MMBTU_In = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_KHW_Out = new System.Windows.Forms.Label();
            this.updown_AUX_KW_HR_Out = new System.Windows.Forms.NumericUpDown();
            this.label_Aux_mmbtu_Out = new System.Windows.Forms.Label();
            this.panel_Main_Fuel_Calculations = new System.Windows.Forms.Panel();
            this.label_Main_Percent_11 = new System.Windows.Forms.Label();
            this.label_Main_Engine_Efficiency = new System.Windows.Forms.Label();
            this.label_Main_KWH_Out = new System.Windows.Forms.Label();
            this.label_Main_mmbtu_Out = new System.Windows.Forms.Label();
            this.updown_Engine_Efficiency = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Baseline_Fuel_Consumption = new System.Windows.Forms.Label();
            this.updown_KW_HR_Out = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Gallon = new System.Windows.Forms.Label();
            this.updown_MMBTU_Out = new System.Windows.Forms.NumericUpDown();
            this.updown_GALLON = new System.Windows.Forms.NumericUpDown();
            this.updown_MMBTU_In = new System.Windows.Forms.NumericUpDown();
            this.label_Main_mmbtu_In = new System.Windows.Forms.Label();
            this.Trip_Tab = new System.Windows.Forms.TabPage();
            this.panel_Main_Trip_Distance_Time = new System.Windows.Forms.Panel();
            this.label_Main_Total_Trip_Distance = new System.Windows.Forms.Label();
            this.label_Main_Time_Hours = new System.Windows.Forms.Label();
            this.label_Main_Time_Minutes = new System.Windows.Forms.Label();
            this.updown_Total_Trip_Distance = new System.Windows.Forms.NumericUpDown();
            this.updown_Trip_Time_Hours = new System.Windows.Forms.NumericUpDown();
            this.updown_Trip_Time_Minutes = new System.Windows.Forms.NumericUpDown();
            this.label_Main_Time_Total = new System.Windows.Forms.Label();
            this.updown_Tot_Trip_Hours = new System.Windows.Forms.NumericUpDown();
            this.GWP_Tab = new System.Windows.Forms.TabPage();
            this.panel_Main_GWPs = new System.Windows.Forms.Panel();
            this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
            this.label1 = new System.Windows.Forms.Label();
            this.updown_NO2_GWP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_GWP_NOX = new System.Windows.Forms.Label();
            this.updown_CO_GWP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_GWP_CO = new System.Windows.Forms.Label();
            this.updown_VOC_GWP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_GWP_VOC = new System.Windows.Forms.Label();
            this.updown_N2O_GWP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_GWP_N2O = new System.Windows.Forms.Label();
            this.updown_CH4_GWP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_GWP_CH4 = new System.Windows.Forms.Label();
            this.updown_CO2_GWP = new System.Windows.Forms.NumericUpDown();
            this.label_Main_GWP_CO2 = new System.Windows.Forms.Label();
            this.FS_Tab = new System.Windows.Forms.TabPage();
            this.Panel_FuelSelection = new System.Windows.Forms.Panel();
            this.Aux_Engine_Fule = new System.Windows.Forms.Label();
            this.tree_Aux_Fuel_Pathways = new System.Windows.Forms.TreeView();
            this.label_main_engine_fuel = new System.Windows.Forms.Label();
            this.tree_Main_Fuel_Pathways = new System.Windows.Forms.TreeView();
            this.ResSheet_tab = new System.Windows.Forms.TabPage();
            this.Panel_results_spread = new System.Windows.Forms.Panel();
            this.panel_Table = new System.Windows.Forms.Panel();
            this.label_Aux_VO = new System.Windows.Forms.Label();
            this.label_Aux_WTP = new System.Windows.Forms.Label();
            this.label_Total = new System.Windows.Forms.Label();
            this.label_Main_VO = new System.Windows.Forms.Label();
            this.label_Main_WTP = new System.Windows.Forms.Label();
            this.label_Results_Shown_Per_Trip = new System.Windows.Forms.Label();
            this.table_Results = new System.Windows.Forms.TableLayoutPanel();
            this.label_Aux_TE_VO = new System.Windows.Forms.Label();
            this.label_Aux_N2O_WTP = new System.Windows.Forms.Label();
            this.label_Aux_TE_WTP = new System.Windows.Forms.Label();
            this.label_Main_TE_VO = new System.Windows.Forms.Label();
            this.label_Total_Energy = new System.Windows.Forms.Label();
            this.label_VOC = new System.Windows.Forms.Label();
            this.label_CO = new System.Windows.Forms.Label();
            this.label_NOx = new System.Windows.Forms.Label();
            this.label_PM10 = new System.Windows.Forms.Label();
            this.label_PM25 = new System.Windows.Forms.Label();
            this.label_SOx = new System.Windows.Forms.Label();
            this.label_CH4 = new System.Windows.Forms.Label();
            this.label_CO2 = new System.Windows.Forms.Label();
            this.label_N2O = new System.Windows.Forms.Label();
            this.label_Main_TE_WTP = new System.Windows.Forms.Label();
            this.label_Main_VOC_WTP = new System.Windows.Forms.Label();
            this.label_Main_CO_WTP = new System.Windows.Forms.Label();
            this.label_Main_NOx_WTP = new System.Windows.Forms.Label();
            this.label_Main_PM10_WTP = new System.Windows.Forms.Label();
            this.label_Main_PM25_WTP = new System.Windows.Forms.Label();
            this.label_Main_SOx_WTP = new System.Windows.Forms.Label();
            this.label_Main_CH4_WTP = new System.Windows.Forms.Label();
            this.label_Main_CO2_WTP = new System.Windows.Forms.Label();
            this.label_Main_N2O_WTP = new System.Windows.Forms.Label();
            this.label_Main_N2O_VO = new System.Windows.Forms.Label();
            this.label_Main_CH4_VO = new System.Windows.Forms.Label();
            this.label_Main_PM25_VO = new System.Windows.Forms.Label();
            this.label_Main_NOx_VO = new System.Windows.Forms.Label();
            this.label_Main_VOC_VO = new System.Windows.Forms.Label();
            this.label_Main_CO_VO = new System.Windows.Forms.Label();
            this.label_Main_PM10_VO = new System.Windows.Forms.Label();
            this.label_Main_SOx_VO = new System.Windows.Forms.Label();
            this.label_Main_CO2_VO = new System.Windows.Forms.Label();
            this.label_TE_Total = new System.Windows.Forms.Label();
            this.label_VOC_Total = new System.Windows.Forms.Label();
            this.label_CO_Total = new System.Windows.Forms.Label();
            this.label_NOx_Total = new System.Windows.Forms.Label();
            this.label_PM10_Total = new System.Windows.Forms.Label();
            this.label_PM25_Total = new System.Windows.Forms.Label();
            this.label_SOx_Total = new System.Windows.Forms.Label();
            this.label_CH4_Total = new System.Windows.Forms.Label();
            this.label_CO2_Total = new System.Windows.Forms.Label();
            this.label_N2O_Total = new System.Windows.Forms.Label();
            this.label_Aux_VOC_WTP = new System.Windows.Forms.Label();
            this.label_Aux_CO_WTP = new System.Windows.Forms.Label();
            this.label_Aux_NOx_WTP = new System.Windows.Forms.Label();
            this.label_Aux_PM10_WTP = new System.Windows.Forms.Label();
            this.label_Aux_PM25_WTP = new System.Windows.Forms.Label();
            this.label_Aux_SOx_WTP = new System.Windows.Forms.Label();
            this.label_Aux_CH4_WTP = new System.Windows.Forms.Label();
            this.label_Aux_CO2_WTP = new System.Windows.Forms.Label();
            this.label_Aux_VOC_VO = new System.Windows.Forms.Label();
            this.label_Aux_CO_VO = new System.Windows.Forms.Label();
            this.label_Aux_NOx_VO = new System.Windows.Forms.Label();
            this.label_Aux_PM10_VO = new System.Windows.Forms.Label();
            this.label_Aux_PM25_VO = new System.Windows.Forms.Label();
            this.label_Aux_SOx_VO = new System.Windows.Forms.Label();
            this.label_Aux_CH4_VO = new System.Windows.Forms.Label();
            this.label_Aux_CO2_VO = new System.Windows.Forms.Label();
            this.label_Aux_N2O_VO = new System.Windows.Forms.Label();
            this.Adj_GHG_N20 = new System.Windows.Forms.Label();
            this.Adj_GHG_CH4 = new System.Windows.Forms.Label();
            this.Adj_GHG_CO2 = new System.Windows.Forms.Label();
            this.Adj_GHG_CO2_Label = new System.Windows.Forms.Label();
            this.Adj_GHG_CH4_Label = new System.Windows.Forms.Label();
            this.N20_Adj_Label = new System.Windows.Forms.Label();
            this.panel_Header = new System.Windows.Forms.Panel();
            this.IncludeAux = new System.Windows.Forms.CheckBox();
            this.Save_Excel = new System.Windows.Forms.Button();
            this.label_Aux_Fuel_Header = new System.Windows.Forms.Label();
            this.label_Aux_Fuel_Type = new System.Windows.Forms.Label();
            this.label_Main_Fuel_Header = new System.Windows.Forms.Label();
            this.label_Main_Fuel_Type = new System.Windows.Forms.Label();
            this.ResChart_Tab = new System.Windows.Forms.TabPage();
            this.Panel_results_chart = new System.Windows.Forms.Panel();
            this.graph_VO_vs_WTP = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.TWP_Tab = new System.Windows.Forms.TabPage();
            this.panel1 = new System.Windows.Forms.Panel();
            this.NameOfSuperiorShipLabel = new System.Windows.Forms.Label();
            this.NumberOfYearsTilCrossLabel = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.BttomViableLabel = new System.Windows.Forms.Label();
            this.GraphPanel = new System.Windows.Forms.Panel();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.ShipSelectionPanel = new System.Windows.Forms.Panel();
            this.BottomShipSel = new System.Windows.Forms.ComboBox();
            this.TWP_CalculateButton = new System.Windows.Forms.Button();
            this.YearsInServiceLabel = new System.Windows.Forms.Label();
            this.ShipYearsInService_NumUpDown = new System.Windows.Forms.NumericUpDown();
            this.Blackbar = new System.Windows.Forms.PictureBox();
            this.TopShipSelector = new System.Windows.Forms.ComboBox();
            this.TWPlabel = new System.Windows.Forms.Label();
            this.file_menu = new System.Windows.Forms.ToolStripMenuItem();
            this.file_new_menu = new System.Windows.Forms.ToolStripMenuItem();
            this.file_exit_menu = new System.Windows.Forms.ToolStripMenuItem();
            this.menu_strip = new System.Windows.Forms.MenuStrip();
            this.fontDialog1 = new System.Windows.Forms.FontDialog();
            this.label9 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.engine_tabs.SuspendLayout();
            this.EV_Tab.SuspendLayout();
            this.panel_Aux_Engine_Vars.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Number_Engines)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Engines_In_Use)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_HP_Per_Engine)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_Onboard_AUX_HP)).BeginInit();
            this.panel_Main_Engine_Vars.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Single_Engine_HP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Number_Of_Engines)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_Onboard_HP)).BeginInit();
            this.EC_Tab.SuspendLayout();
            this.panel_Aux_Engine_Chars.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Percent_Trip_Active)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_Time_Active)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_HP_Load_Factor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_Active_HP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_AUX_Energy)).BeginInit();
            this.panel_Main_Engine_Chars.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Total)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Slow_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Slow_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Slow_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Slow_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Slow_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Precautionary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Precautionary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Full_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Precautionary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Precautionary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Precautionary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Full_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Maneuvering)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Maneuvering)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Full_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Maneuvering)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Maneuvering)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Full_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Full_Cruise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Idle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Idle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Idle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Idle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Maneuvering)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Idle)).BeginInit();
            this.UI_Tab.SuspendLayout();
            this.panel_Aux_Emissions_Input.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_NOX)).BeginInit();
            this.panel_main_engine_inputs.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_NOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_CH4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_N2O)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_PM25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_PM10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_VOC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_CO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_NOX)).BeginInit();
            this.FC_Tab.SuspendLayout();
            this.panel_Aux_Fuel_Calc.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_MMBTU_Out)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_GALLON)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Engine_Efficiency)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_MMBTU_In)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_KW_HR_Out)).BeginInit();
            this.panel_Main_Fuel_Calculations.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Engine_Efficiency)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_KW_HR_Out)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_MMBTU_Out)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_GALLON)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_MMBTU_In)).BeginInit();
            this.Trip_Tab.SuspendLayout();
            this.panel_Main_Trip_Distance_Time.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Total_Trip_Distance)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Trip_Time_Hours)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Trip_Time_Minutes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_Trip_Hours)).BeginInit();
            this.GWP_Tab.SuspendLayout();
            this.panel_Main_GWPs.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_NO2_GWP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_CO_GWP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_VOC_GWP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_N2O_GWP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_CH4_GWP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_CO2_GWP)).BeginInit();
            this.FS_Tab.SuspendLayout();
            this.Panel_FuelSelection.SuspendLayout();
            this.ResSheet_tab.SuspendLayout();
            this.Panel_results_spread.SuspendLayout();
            this.panel_Table.SuspendLayout();
            this.table_Results.SuspendLayout();
            this.panel_Header.SuspendLayout();
            this.ResChart_Tab.SuspendLayout();
            this.Panel_results_chart.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.graph_VO_vs_WTP)).BeginInit();
            this.TWP_Tab.SuspendLayout();
            this.panel1.SuspendLayout();
            this.GraphPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.ShipSelectionPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ShipYearsInService_NumUpDown)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Blackbar)).BeginInit();
            this.menu_strip.SuspendLayout();
            this.SuspendLayout();
            // 
            // engine_tabs
            // 
            this.engine_tabs.Controls.Add(this.EV_Tab);
            this.engine_tabs.Controls.Add(this.EC_Tab);
            this.engine_tabs.Controls.Add(this.UI_Tab);
            this.engine_tabs.Controls.Add(this.FC_Tab);
            this.engine_tabs.Controls.Add(this.Trip_Tab);
            this.engine_tabs.Controls.Add(this.GWP_Tab);
            this.engine_tabs.Controls.Add(this.FS_Tab);
            this.engine_tabs.Controls.Add(this.ResSheet_tab);
            this.engine_tabs.Controls.Add(this.ResChart_Tab);
            this.engine_tabs.Controls.Add(this.TWP_Tab);
            this.engine_tabs.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.engine_tabs.ImeMode = System.Windows.Forms.ImeMode.Off;
            this.engine_tabs.Location = new System.Drawing.Point(0, 28);
            this.engine_tabs.Name = "engine_tabs";
            this.engine_tabs.SelectedIndex = 0;
            this.engine_tabs.Size = new System.Drawing.Size(1203, 778);
            this.engine_tabs.TabIndex = 1;
            // 
            // EV_Tab
            // 
            this.EV_Tab.AutoScroll = true;
            this.EV_Tab.Controls.Add(this.label4);
            this.EV_Tab.Controls.Add(this.label3);
            this.EV_Tab.Controls.Add(this.panel_Aux_Engine_Vars);
            this.EV_Tab.Controls.Add(this.panel_Main_Engine_Vars);
            this.EV_Tab.Location = new System.Drawing.Point(4, 22);
            this.EV_Tab.Name = "EV_Tab";
            this.EV_Tab.Size = new System.Drawing.Size(1195, 752);
            this.EV_Tab.TabIndex = 6;
            this.EV_Tab.Text = "Engine Variables";
            this.EV_Tab.UseVisualStyleBackColor = true;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.BackColor = System.Drawing.Color.Transparent;
            this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(1, 155);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(120, 20);
            this.label4.TabIndex = 320;
            this.label4.Text = "Auxiliary Engine";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location = new System.Drawing.Point(1, 5);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(97, 20);
            this.label3.TabIndex = 319;
            this.label3.Text = "Main Engine";
            // 
            // panel_Aux_Engine_Vars
            // 
            this.panel_Aux_Engine_Vars.BackColor = System.Drawing.Color.Silver;
            this.panel_Aux_Engine_Vars.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Aux_Engine_Vars.Controls.Add(this.label_Aux_Num_Engines_Onboard);
            this.panel_Aux_Engine_Vars.Controls.Add(this.updown_Aux_Number_Engines);
            this.panel_Aux_Engine_Vars.Controls.Add(this.updown_Aux_Engines_In_Use);
            this.panel_Aux_Engine_Vars.Controls.Add(this.updown_Aux_HP_Per_Engine);
            this.panel_Aux_Engine_Vars.Controls.Add(this.updown_Tot_Onboard_AUX_HP);
            this.panel_Aux_Engine_Vars.Controls.Add(this.label_Aux_Num_Engines_In_Use);
            this.panel_Aux_Engine_Vars.Controls.Add(this.label_Aux_Engine_Rated_HP);
            this.panel_Aux_Engine_Vars.Controls.Add(this.label_Aux_Total_Onboard_HP);
            this.panel_Aux_Engine_Vars.Location = new System.Drawing.Point(2, 177);
            this.panel_Aux_Engine_Vars.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Aux_Engine_Vars.Name = "panel_Aux_Engine_Vars";
            this.panel_Aux_Engine_Vars.Size = new System.Drawing.Size(1195, 113);
            this.panel_Aux_Engine_Vars.TabIndex = 318;
            // 
            // label_Aux_Num_Engines_Onboard
            // 
            this.label_Aux_Num_Engines_Onboard.AutoSize = true;
            this.label_Aux_Num_Engines_Onboard.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Num_Engines_Onboard.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Num_Engines_Onboard.Location = new System.Drawing.Point(0, 7);
            this.label_Aux_Num_Engines_Onboard.Name = "label_Aux_Num_Engines_Onboard";
            this.label_Aux_Num_Engines_Onboard.Size = new System.Drawing.Size(274, 20);
            this.label_Aux_Num_Engines_Onboard.TabIndex = 127;
            this.label_Aux_Num_Engines_Onboard.Text = "Number of OnBoard Auxillary Engines";
            // 
            // updown_Aux_Number_Engines
            // 
            this.updown_Aux_Number_Engines.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Aux_Number_Engines.Location = new System.Drawing.Point(288, 7);
            this.updown_Aux_Number_Engines.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Aux_Number_Engines.Name = "updown_Aux_Number_Engines";
            this.updown_Aux_Number_Engines.Size = new System.Drawing.Size(92, 20);
            this.updown_Aux_Number_Engines.TabIndex = 123;
            // 
            // updown_Aux_Engines_In_Use
            // 
            this.updown_Aux_Engines_In_Use.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Aux_Engines_In_Use.Location = new System.Drawing.Point(288, 35);
            this.updown_Aux_Engines_In_Use.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Aux_Engines_In_Use.Name = "updown_Aux_Engines_In_Use";
            this.updown_Aux_Engines_In_Use.Size = new System.Drawing.Size(92, 20);
            this.updown_Aux_Engines_In_Use.TabIndex = 124;
            // 
            // updown_Aux_HP_Per_Engine
            // 
            this.updown_Aux_HP_Per_Engine.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Aux_HP_Per_Engine.Location = new System.Drawing.Point(288, 58);
            this.updown_Aux_HP_Per_Engine.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Aux_HP_Per_Engine.Name = "updown_Aux_HP_Per_Engine";
            this.updown_Aux_HP_Per_Engine.Size = new System.Drawing.Size(92, 20);
            this.updown_Aux_HP_Per_Engine.TabIndex = 125;
            // 
            // updown_Tot_Onboard_AUX_HP
            // 
            this.updown_Tot_Onboard_AUX_HP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Tot_Onboard_AUX_HP.Enabled = false;
            this.updown_Tot_Onboard_AUX_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Tot_Onboard_AUX_HP.Location = new System.Drawing.Point(288, 83);
            this.updown_Tot_Onboard_AUX_HP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Tot_Onboard_AUX_HP.Name = "updown_Tot_Onboard_AUX_HP";
            this.updown_Tot_Onboard_AUX_HP.ReadOnly = true;
            this.updown_Tot_Onboard_AUX_HP.Size = new System.Drawing.Size(92, 20);
            this.updown_Tot_Onboard_AUX_HP.TabIndex = 126;
            // 
            // label_Aux_Num_Engines_In_Use
            // 
            this.label_Aux_Num_Engines_In_Use.AutoSize = true;
            this.label_Aux_Num_Engines_In_Use.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Num_Engines_In_Use.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Num_Engines_In_Use.Location = new System.Drawing.Point(0, 35);
            this.label_Aux_Num_Engines_In_Use.Name = "label_Aux_Num_Engines_In_Use";
            this.label_Aux_Num_Engines_In_Use.Size = new System.Drawing.Size(252, 20);
            this.label_Aux_Num_Engines_In_Use.TabIndex = 128;
            this.label_Aux_Num_Engines_In_Use.Text = "Number of Auxillary Engines in use";
            // 
            // label_Aux_Engine_Rated_HP
            // 
            this.label_Aux_Engine_Rated_HP.AutoSize = true;
            this.label_Aux_Engine_Rated_HP.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Engine_Rated_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Engine_Rated_HP.Location = new System.Drawing.Point(0, 61);
            this.label_Aux_Engine_Rated_HP.Name = "label_Aux_Engine_Rated_HP";
            this.label_Aux_Engine_Rated_HP.Size = new System.Drawing.Size(283, 20);
            this.label_Aux_Engine_Rated_HP.TabIndex = 129;
            this.label_Aux_Engine_Rated_HP.Text = "Auxillary Engine Rated HP (per engine)";
            // 
            // label_Aux_Total_Onboard_HP
            // 
            this.label_Aux_Total_Onboard_HP.AutoSize = true;
            this.label_Aux_Total_Onboard_HP.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Total_Onboard_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Total_Onboard_HP.Location = new System.Drawing.Point(0, 84);
            this.label_Aux_Total_Onboard_HP.Name = "label_Aux_Total_Onboard_HP";
            this.label_Aux_Total_Onboard_HP.Size = new System.Drawing.Size(284, 20);
            this.label_Aux_Total_Onboard_HP.TabIndex = 130;
            this.label_Aux_Total_Onboard_HP.Text = "Total OnBoard Aux Engine HP (In Use)";
            // 
            // panel_Main_Engine_Vars
            // 
            this.panel_Main_Engine_Vars.BackColor = System.Drawing.Color.Silver;
            this.panel_Main_Engine_Vars.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Main_Engine_Vars.Controls.Add(this.updown_Single_Engine_HP);
            this.panel_Main_Engine_Vars.Controls.Add(this.label_Main_Num_Engines);
            this.panel_Main_Engine_Vars.Controls.Add(this.label_Main_Single_Engine_HP);
            this.panel_Main_Engine_Vars.Controls.Add(this.label_Main_Total_HP);
            this.panel_Main_Engine_Vars.Controls.Add(this.updown_Number_Of_Engines);
            this.panel_Main_Engine_Vars.Controls.Add(this.updown_Tot_Onboard_HP);
            this.panel_Main_Engine_Vars.Controls.Add(this.label_Main_Vessel_ID);
            this.panel_Main_Engine_Vars.Controls.Add(this.textBox_Vessel_Type);
            this.panel_Main_Engine_Vars.Location = new System.Drawing.Point(0, 27);
            this.panel_Main_Engine_Vars.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Main_Engine_Vars.Name = "panel_Main_Engine_Vars";
            this.panel_Main_Engine_Vars.Size = new System.Drawing.Size(1193, 126);
            this.panel_Main_Engine_Vars.TabIndex = 267;
            // 
            // updown_Single_Engine_HP
            // 
            this.updown_Single_Engine_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Single_Engine_HP.Location = new System.Drawing.Point(173, 63);
            this.updown_Single_Engine_HP.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Single_Engine_HP.Name = "updown_Single_Engine_HP";
            this.updown_Single_Engine_HP.Size = new System.Drawing.Size(92, 20);
            this.updown_Single_Engine_HP.TabIndex = 106;
            // 
            // label_Main_Num_Engines
            // 
            this.label_Main_Num_Engines.AutoSize = true;
            this.label_Main_Num_Engines.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Num_Engines.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Num_Engines.Location = new System.Drawing.Point(0, 39);
            this.label_Main_Num_Engines.Name = "label_Main_Num_Engines";
            this.label_Main_Num_Engines.Size = new System.Drawing.Size(145, 20);
            this.label_Main_Num_Engines.TabIndex = 101;
            this.label_Main_Num_Engines.Text = "Number of Engines";
            // 
            // label_Main_Single_Engine_HP
            // 
            this.label_Main_Single_Engine_HP.AutoSize = true;
            this.label_Main_Single_Engine_HP.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Single_Engine_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Single_Engine_HP.Location = new System.Drawing.Point(0, 65);
            this.label_Main_Single_Engine_HP.Name = "label_Main_Single_Engine_HP";
            this.label_Main_Single_Engine_HP.Size = new System.Drawing.Size(133, 20);
            this.label_Main_Single_Engine_HP.TabIndex = 103;
            this.label_Main_Single_Engine_HP.Text = "Single Engine HP";
            // 
            // label_Main_Total_HP
            // 
            this.label_Main_Total_HP.AutoSize = true;
            this.label_Main_Total_HP.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Total_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Total_HP.Location = new System.Drawing.Point(0, 91);
            this.label_Main_Total_HP.Name = "label_Main_Total_HP";
            this.label_Main_Total_HP.Size = new System.Drawing.Size(142, 20);
            this.label_Main_Total_HP.TabIndex = 104;
            this.label_Main_Total_HP.Text = "Total On Board HP";
            // 
            // updown_Number_Of_Engines
            // 
            this.updown_Number_Of_Engines.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Number_Of_Engines.Location = new System.Drawing.Point(173, 37);
            this.updown_Number_Of_Engines.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Number_Of_Engines.Name = "updown_Number_Of_Engines";
            this.updown_Number_Of_Engines.Size = new System.Drawing.Size(92, 20);
            this.updown_Number_Of_Engines.TabIndex = 105;
            // 
            // updown_Tot_Onboard_HP
            // 
            this.updown_Tot_Onboard_HP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Tot_Onboard_HP.Enabled = false;
            this.updown_Tot_Onboard_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Tot_Onboard_HP.Location = new System.Drawing.Point(173, 88);
            this.updown_Tot_Onboard_HP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Tot_Onboard_HP.Name = "updown_Tot_Onboard_HP";
            this.updown_Tot_Onboard_HP.ReadOnly = true;
            this.updown_Tot_Onboard_HP.Size = new System.Drawing.Size(92, 20);
            this.updown_Tot_Onboard_HP.TabIndex = 107;
            // 
            // label_Main_Vessel_ID
            // 
            this.label_Main_Vessel_ID.AutoSize = true;
            this.label_Main_Vessel_ID.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Vessel_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Vessel_ID.Location = new System.Drawing.Point(0, 12);
            this.label_Main_Vessel_ID.Name = "label_Main_Vessel_ID";
            this.label_Main_Vessel_ID.Size = new System.Drawing.Size(116, 20);
            this.label_Main_Vessel_ID.TabIndex = 108;
            this.label_Main_Vessel_ID.Text = "Vessel Type ID";
            // 
            // textBox_Vessel_Type
            // 
            this.textBox_Vessel_Type.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBox_Vessel_Type.Location = new System.Drawing.Point(173, 10);
            this.textBox_Vessel_Type.Margin = new System.Windows.Forms.Padding(2);
            this.textBox_Vessel_Type.Name = "textBox_Vessel_Type";
            this.textBox_Vessel_Type.Size = new System.Drawing.Size(199, 20);
            this.textBox_Vessel_Type.TabIndex = 109;
            // 
            // EC_Tab
            // 
            this.EC_Tab.Controls.Add(this.label5);
            this.EC_Tab.Controls.Add(this.label6);
            this.EC_Tab.Controls.Add(this.panel_Aux_Engine_Chars);
            this.EC_Tab.Controls.Add(this.panel_Main_Engine_Chars);
            this.EC_Tab.Location = new System.Drawing.Point(4, 22);
            this.EC_Tab.Name = "EC_Tab";
            this.EC_Tab.Size = new System.Drawing.Size(1195, 752);
            this.EC_Tab.TabIndex = 9;
            this.EC_Tab.Text = "Engine Characteristics";
            this.EC_Tab.UseVisualStyleBackColor = true;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.Location = new System.Drawing.Point(10, 211);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(120, 20);
            this.label5.TabIndex = 322;
            this.label5.Text = "Auxiliary Engine";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.BackColor = System.Drawing.Color.Transparent;
            this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(10, 0);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(97, 20);
            this.label6.TabIndex = 321;
            this.label6.Text = "Main Engine";
            // 
            // panel_Aux_Engine_Chars
            // 
            this.panel_Aux_Engine_Chars.BackColor = System.Drawing.Color.Silver;
            this.panel_Aux_Engine_Chars.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_Percent_2);
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_Percent_1);
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_Percent_Active);
            this.panel_Aux_Engine_Chars.Controls.Add(this.updown_Aux_Percent_Trip_Active);
            this.panel_Aux_Engine_Chars.Controls.Add(this.updown_AUX_Time_Active);
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_Time_Active);
            this.panel_Aux_Engine_Chars.Controls.Add(this.updown_Aux_HP_Load_Factor);
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_HP_Load_Factor);
            this.panel_Aux_Engine_Chars.Controls.Add(this.updown_AUX_Active_HP);
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_Active_HP);
            this.panel_Aux_Engine_Chars.Controls.Add(this.updown_Tot_AUX_Energy);
            this.panel_Aux_Engine_Chars.Controls.Add(this.label_Aux_Total_Energy);
            this.panel_Aux_Engine_Chars.Location = new System.Drawing.Point(2, 233);
            this.panel_Aux_Engine_Chars.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Aux_Engine_Chars.Name = "panel_Aux_Engine_Chars";
            this.panel_Aux_Engine_Chars.Size = new System.Drawing.Size(1205, 141);
            this.panel_Aux_Engine_Chars.TabIndex = 319;
            // 
            // label_Aux_Percent_2
            // 
            this.label_Aux_Percent_2.AutoSize = true;
            this.label_Aux_Percent_2.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Percent_2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Percent_2.Location = new System.Drawing.Point(505, 61);
            this.label_Aux_Percent_2.Name = "label_Aux_Percent_2";
            this.label_Aux_Percent_2.Size = new System.Drawing.Size(23, 20);
            this.label_Aux_Percent_2.TabIndex = 325;
            this.label_Aux_Percent_2.Text = "%";
            // 
            // label_Aux_Percent_1
            // 
            this.label_Aux_Percent_1.AutoSize = true;
            this.label_Aux_Percent_1.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Percent_1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Percent_1.Location = new System.Drawing.Point(505, 13);
            this.label_Aux_Percent_1.Name = "label_Aux_Percent_1";
            this.label_Aux_Percent_1.Size = new System.Drawing.Size(23, 20);
            this.label_Aux_Percent_1.TabIndex = 325;
            this.label_Aux_Percent_1.Text = "%";
            // 
            // label_Aux_Percent_Active
            // 
            this.label_Aux_Percent_Active.AutoSize = true;
            this.label_Aux_Percent_Active.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Percent_Active.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Percent_Active.Location = new System.Drawing.Point(7, 12);
            this.label_Aux_Percent_Active.Name = "label_Aux_Percent_Active";
            this.label_Aux_Percent_Active.Size = new System.Drawing.Size(399, 20);
            this.label_Aux_Percent_Active.TabIndex = 133;
            this.label_Aux_Percent_Active.Text = "Percent of Trip Auxillary Engine is Active Based on Time";
            // 
            // updown_Aux_Percent_Trip_Active
            // 
            this.updown_Aux_Percent_Trip_Active.DecimalPlaces = 2;
            this.updown_Aux_Percent_Trip_Active.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Aux_Percent_Trip_Active.Location = new System.Drawing.Point(412, 13);
            this.updown_Aux_Percent_Trip_Active.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Aux_Percent_Trip_Active.Name = "updown_Aux_Percent_Trip_Active";
            this.updown_Aux_Percent_Trip_Active.Size = new System.Drawing.Size(92, 21);
            this.updown_Aux_Percent_Trip_Active.TabIndex = 132;
            // 
            // updown_AUX_Time_Active
            // 
            this.updown_AUX_Time_Active.BackColor = System.Drawing.SystemColors.Window;
            this.updown_AUX_Time_Active.DecimalPlaces = 2;
            this.updown_AUX_Time_Active.Enabled = false;
            this.updown_AUX_Time_Active.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_AUX_Time_Active.Location = new System.Drawing.Point(412, 37);
            this.updown_AUX_Time_Active.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_AUX_Time_Active.Name = "updown_AUX_Time_Active";
            this.updown_AUX_Time_Active.ReadOnly = true;
            this.updown_AUX_Time_Active.Size = new System.Drawing.Size(92, 21);
            this.updown_AUX_Time_Active.TabIndex = 134;
            // 
            // label_Aux_Time_Active
            // 
            this.label_Aux_Time_Active.AutoSize = true;
            this.label_Aux_Time_Active.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Time_Active.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Time_Active.Location = new System.Drawing.Point(7, 36);
            this.label_Aux_Time_Active.Name = "label_Aux_Time_Active";
            this.label_Aux_Time_Active.Size = new System.Drawing.Size(142, 20);
            this.label_Aux_Time_Active.TabIndex = 135;
            this.label_Aux_Time_Active.Text = "Time active (hours)";
            // 
            // updown_Aux_HP_Load_Factor
            // 
            this.updown_Aux_HP_Load_Factor.DecimalPlaces = 2;
            this.updown_Aux_HP_Load_Factor.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Aux_HP_Load_Factor.Location = new System.Drawing.Point(412, 62);
            this.updown_Aux_HP_Load_Factor.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Aux_HP_Load_Factor.Name = "updown_Aux_HP_Load_Factor";
            this.updown_Aux_HP_Load_Factor.Size = new System.Drawing.Size(92, 21);
            this.updown_Aux_HP_Load_Factor.TabIndex = 136;
            // 
            // label_Aux_HP_Load_Factor
            // 
            this.label_Aux_HP_Load_Factor.AutoSize = true;
            this.label_Aux_HP_Load_Factor.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_HP_Load_Factor.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_HP_Load_Factor.Location = new System.Drawing.Point(7, 61);
            this.label_Aux_HP_Load_Factor.Name = "label_Aux_HP_Load_Factor";
            this.label_Aux_HP_Load_Factor.Size = new System.Drawing.Size(233, 20);
            this.label_Aux_HP_Load_Factor.TabIndex = 137;
            this.label_Aux_HP_Load_Factor.Text = "HP Load Factor (Single Engine)";
            // 
            // updown_AUX_Active_HP
            // 
            this.updown_AUX_Active_HP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_AUX_Active_HP.DecimalPlaces = 2;
            this.updown_AUX_Active_HP.Enabled = false;
            this.updown_AUX_Active_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_AUX_Active_HP.Location = new System.Drawing.Point(412, 86);
            this.updown_AUX_Active_HP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_AUX_Active_HP.Name = "updown_AUX_Active_HP";
            this.updown_AUX_Active_HP.ReadOnly = true;
            this.updown_AUX_Active_HP.Size = new System.Drawing.Size(92, 21);
            this.updown_AUX_Active_HP.TabIndex = 138;
            // 
            // label_Aux_Active_HP
            // 
            this.label_Aux_Active_HP.AutoSize = true;
            this.label_Aux_Active_HP.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Active_HP.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Active_HP.Location = new System.Drawing.Point(7, 86);
            this.label_Aux_Active_HP.Name = "label_Aux_Active_HP";
            this.label_Aux_Active_HP.Size = new System.Drawing.Size(220, 20);
            this.label_Aux_Active_HP.TabIndex = 139;
            this.label_Aux_Active_HP.Text = "Active HP per Auxiliary Engine";
            // 
            // updown_Tot_AUX_Energy
            // 
            this.updown_Tot_AUX_Energy.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Tot_AUX_Energy.DecimalPlaces = 2;
            this.updown_Tot_AUX_Energy.Enabled = false;
            this.updown_Tot_AUX_Energy.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Tot_AUX_Energy.Location = new System.Drawing.Point(412, 110);
            this.updown_Tot_AUX_Energy.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Tot_AUX_Energy.Name = "updown_Tot_AUX_Energy";
            this.updown_Tot_AUX_Energy.ReadOnly = true;
            this.updown_Tot_AUX_Energy.Size = new System.Drawing.Size(92, 21);
            this.updown_Tot_AUX_Energy.TabIndex = 140;
            // 
            // label_Aux_Total_Energy
            // 
            this.label_Aux_Total_Energy.AutoSize = true;
            this.label_Aux_Total_Energy.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Total_Energy.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Total_Energy.Location = new System.Drawing.Point(7, 110);
            this.label_Aux_Total_Energy.Name = "label_Aux_Total_Energy";
            this.label_Aux_Total_Energy.Size = new System.Drawing.Size(287, 20);
            this.label_Aux_Total_Energy.TabIndex = 141;
            this.label_Aux_Total_Energy.Text = "Total Auxiliary Energy Production (KWh)";
            // 
            // panel_Main_Engine_Chars
            // 
            this.panel_Main_Engine_Chars.BackColor = System.Drawing.Color.Silver;
            this.panel_Main_Engine_Chars.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Energy_Total);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_10);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_EP_Total);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_9);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_EP_Slow_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_8);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_HP_Slow_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_7);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Horsepower_Slow_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_6);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Time_Slow_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_5);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Percent_Slow_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_4);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_EP_Precautionary);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_3);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_HP_Precautionary);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_EP_Full_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Horsepower_Precautionary);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_2);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Time_Precautionary);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Percent_Precautionary);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_HP_Full_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_EP_Maneuvering);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_1);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_HP_Maneuvering);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Horsepower_Full_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Time_Maneuvering);
            this.panel_Main_Engine_Chars.Controls.Add(this.text_Main_Mode_5);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Percent_Maneuvering);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Time_Full_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Energy_Production);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Percent_Full_Cruise);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_EP_Idle);
            this.panel_Main_Engine_Chars.Controls.Add(this.text_Main_Mode_4);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_HP_Per_Engine);
            this.panel_Main_Engine_Chars.Controls.Add(this.text_Main_Mode_3);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_HP_Idle);
            this.panel_Main_Engine_Chars.Controls.Add(this.text_Main_Mode_2);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Horsepower_Idle);
            this.panel_Main_Engine_Chars.Controls.Add(this.text_Main_Mode_1);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Time_Idle);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Horsepower_Maneuvering);
            this.panel_Main_Engine_Chars.Controls.Add(this.updown_Percent_Idle);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Percent_In_Mode);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_HP_Load_Factor);
            this.panel_Main_Engine_Chars.Controls.Add(this.label_Main_Time_Per_Mode);
            this.panel_Main_Engine_Chars.Location = new System.Drawing.Point(2, 22);
            this.panel_Main_Engine_Chars.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Main_Engine_Chars.Name = "panel_Main_Engine_Chars";
            this.panel_Main_Engine_Chars.Size = new System.Drawing.Size(1197, 187);
            this.panel_Main_Engine_Chars.TabIndex = 269;
            // 
            // label_Main_Energy_Total
            // 
            this.label_Main_Energy_Total.AutoSize = true;
            this.label_Main_Energy_Total.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Energy_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Energy_Total.Location = new System.Drawing.Point(7, 143);
            this.label_Main_Energy_Total.Name = "label_Main_Energy_Total";
            this.label_Main_Energy_Total.Size = new System.Drawing.Size(173, 20);
            this.label_Main_Energy_Total.TabIndex = 168;
            this.label_Main_Energy_Total.Text = "Energy Total (KWh out)";
            // 
            // label_Main_Percent_10
            // 
            this.label_Main_Percent_10.AutoSize = true;
            this.label_Main_Percent_10.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_10.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_10.Location = new System.Drawing.Point(681, 73);
            this.label_Main_Percent_10.Name = "label_Main_Percent_10";
            this.label_Main_Percent_10.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_10.TabIndex = 303;
            this.label_Main_Percent_10.Text = "%";
            // 
            // updown_EP_Total
            // 
            this.updown_EP_Total.BackColor = System.Drawing.SystemColors.Window;
            this.updown_EP_Total.DecimalPlaces = 2;
            this.updown_EP_Total.Enabled = false;
            this.updown_EP_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_EP_Total.Location = new System.Drawing.Point(282, 148);
            this.updown_EP_Total.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_EP_Total.Name = "updown_EP_Total";
            this.updown_EP_Total.ReadOnly = true;
            this.updown_EP_Total.Size = new System.Drawing.Size(116, 20);
            this.updown_EP_Total.TabIndex = 167;
            // 
            // label_Main_Percent_9
            // 
            this.label_Main_Percent_9.AutoSize = true;
            this.label_Main_Percent_9.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_9.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_9.Location = new System.Drawing.Point(605, 73);
            this.label_Main_Percent_9.Name = "label_Main_Percent_9";
            this.label_Main_Percent_9.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_9.TabIndex = 304;
            this.label_Main_Percent_9.Text = "%";
            // 
            // updown_EP_Slow_Cruise
            // 
            this.updown_EP_Slow_Cruise.BackColor = System.Drawing.SystemColors.Window;
            this.updown_EP_Slow_Cruise.DecimalPlaces = 2;
            this.updown_EP_Slow_Cruise.Enabled = false;
            this.updown_EP_Slow_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_EP_Slow_Cruise.Location = new System.Drawing.Point(542, 122);
            this.updown_EP_Slow_Cruise.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_EP_Slow_Cruise.Name = "updown_EP_Slow_Cruise";
            this.updown_EP_Slow_Cruise.ReadOnly = true;
            this.updown_EP_Slow_Cruise.Size = new System.Drawing.Size(64, 20);
            this.updown_EP_Slow_Cruise.TabIndex = 159;
            // 
            // label_Main_Percent_8
            // 
            this.label_Main_Percent_8.AutoSize = true;
            this.label_Main_Percent_8.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_8.Location = new System.Drawing.Point(518, 72);
            this.label_Main_Percent_8.Name = "label_Main_Percent_8";
            this.label_Main_Percent_8.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_8.TabIndex = 303;
            this.label_Main_Percent_8.Text = "%";
            // 
            // updown_HP_Slow_Cruise
            // 
            this.updown_HP_Slow_Cruise.BackColor = System.Drawing.SystemColors.Window;
            this.updown_HP_Slow_Cruise.Enabled = false;
            this.updown_HP_Slow_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_HP_Slow_Cruise.Location = new System.Drawing.Point(542, 96);
            this.updown_HP_Slow_Cruise.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_HP_Slow_Cruise.Name = "updown_HP_Slow_Cruise";
            this.updown_HP_Slow_Cruise.ReadOnly = true;
            this.updown_HP_Slow_Cruise.Size = new System.Drawing.Size(64, 20);
            this.updown_HP_Slow_Cruise.TabIndex = 158;
            // 
            // label_Main_Percent_7
            // 
            this.label_Main_Percent_7.AutoSize = true;
            this.label_Main_Percent_7.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_7.Location = new System.Drawing.Point(431, 71);
            this.label_Main_Percent_7.Name = "label_Main_Percent_7";
            this.label_Main_Percent_7.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_7.TabIndex = 303;
            this.label_Main_Percent_7.Text = "%";
            // 
            // updown_Horsepower_Slow_Cruise
            // 
            this.updown_Horsepower_Slow_Cruise.DecimalPlaces = 2;
            this.updown_Horsepower_Slow_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Horsepower_Slow_Cruise.Location = new System.Drawing.Point(542, 72);
            this.updown_Horsepower_Slow_Cruise.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Horsepower_Slow_Cruise.Name = "updown_Horsepower_Slow_Cruise";
            this.updown_Horsepower_Slow_Cruise.Size = new System.Drawing.Size(64, 20);
            this.updown_Horsepower_Slow_Cruise.TabIndex = 157;
            // 
            // label_Main_Percent_6
            // 
            this.label_Main_Percent_6.AutoSize = true;
            this.label_Main_Percent_6.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_6.Location = new System.Drawing.Point(350, 73);
            this.label_Main_Percent_6.Name = "label_Main_Percent_6";
            this.label_Main_Percent_6.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_6.TabIndex = 303;
            this.label_Main_Percent_6.Text = "%";
            // 
            // updown_Time_Slow_Cruise
            // 
            this.updown_Time_Slow_Cruise.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Time_Slow_Cruise.DecimalPlaces = 2;
            this.updown_Time_Slow_Cruise.Enabled = false;
            this.updown_Time_Slow_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Time_Slow_Cruise.Location = new System.Drawing.Point(542, 48);
            this.updown_Time_Slow_Cruise.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Time_Slow_Cruise.Name = "updown_Time_Slow_Cruise";
            this.updown_Time_Slow_Cruise.ReadOnly = true;
            this.updown_Time_Slow_Cruise.Size = new System.Drawing.Size(64, 20);
            this.updown_Time_Slow_Cruise.TabIndex = 156;
            // 
            // label_Main_Percent_5
            // 
            this.label_Main_Percent_5.AutoSize = true;
            this.label_Main_Percent_5.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_5.Location = new System.Drawing.Point(681, 23);
            this.label_Main_Percent_5.Name = "label_Main_Percent_5";
            this.label_Main_Percent_5.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_5.TabIndex = 303;
            this.label_Main_Percent_5.Text = "%";
            // 
            // updown_Percent_Slow_Cruise
            // 
            this.updown_Percent_Slow_Cruise.DecimalPlaces = 2;
            this.updown_Percent_Slow_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Percent_Slow_Cruise.Location = new System.Drawing.Point(542, 22);
            this.updown_Percent_Slow_Cruise.Name = "updown_Percent_Slow_Cruise";
            this.updown_Percent_Slow_Cruise.Size = new System.Drawing.Size(64, 20);
            this.updown_Percent_Slow_Cruise.TabIndex = 155;
            // 
            // label_Main_Percent_4
            // 
            this.label_Main_Percent_4.AutoSize = true;
            this.label_Main_Percent_4.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_4.Location = new System.Drawing.Point(605, 23);
            this.label_Main_Percent_4.Name = "label_Main_Percent_4";
            this.label_Main_Percent_4.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_4.TabIndex = 303;
            this.label_Main_Percent_4.Text = "%";
            // 
            // updown_EP_Precautionary
            // 
            this.updown_EP_Precautionary.BackColor = System.Drawing.SystemColors.Window;
            this.updown_EP_Precautionary.DecimalPlaces = 2;
            this.updown_EP_Precautionary.Enabled = false;
            this.updown_EP_Precautionary.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_EP_Precautionary.Location = new System.Drawing.Point(452, 122);
            this.updown_EP_Precautionary.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_EP_Precautionary.Name = "updown_EP_Precautionary";
            this.updown_EP_Precautionary.ReadOnly = true;
            this.updown_EP_Precautionary.Size = new System.Drawing.Size(68, 20);
            this.updown_EP_Precautionary.TabIndex = 153;
            // 
            // label_Main_Percent_3
            // 
            this.label_Main_Percent_3.AutoSize = true;
            this.label_Main_Percent_3.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_3.Location = new System.Drawing.Point(518, 23);
            this.label_Main_Percent_3.Name = "label_Main_Percent_3";
            this.label_Main_Percent_3.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_3.TabIndex = 303;
            this.label_Main_Percent_3.Text = "%";
            // 
            // updown_HP_Precautionary
            // 
            this.updown_HP_Precautionary.BackColor = System.Drawing.SystemColors.Window;
            this.updown_HP_Precautionary.Enabled = false;
            this.updown_HP_Precautionary.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_HP_Precautionary.Location = new System.Drawing.Point(452, 96);
            this.updown_HP_Precautionary.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_HP_Precautionary.Name = "updown_HP_Precautionary";
            this.updown_HP_Precautionary.ReadOnly = true;
            this.updown_HP_Precautionary.Size = new System.Drawing.Size(68, 20);
            this.updown_HP_Precautionary.TabIndex = 152;
            // 
            // updown_EP_Full_Cruise
            // 
            this.updown_EP_Full_Cruise.BackColor = System.Drawing.SystemColors.Window;
            this.updown_EP_Full_Cruise.DecimalPlaces = 2;
            this.updown_EP_Full_Cruise.Enabled = false;
            this.updown_EP_Full_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_EP_Full_Cruise.Location = new System.Drawing.Point(628, 122);
            this.updown_EP_Full_Cruise.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_EP_Full_Cruise.Name = "updown_EP_Full_Cruise";
            this.updown_EP_Full_Cruise.ReadOnly = true;
            this.updown_EP_Full_Cruise.Size = new System.Drawing.Size(55, 20);
            this.updown_EP_Full_Cruise.TabIndex = 165;
            // 
            // updown_Horsepower_Precautionary
            // 
            this.updown_Horsepower_Precautionary.DecimalPlaces = 2;
            this.updown_Horsepower_Precautionary.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Horsepower_Precautionary.Location = new System.Drawing.Point(452, 72);
            this.updown_Horsepower_Precautionary.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Horsepower_Precautionary.Name = "updown_Horsepower_Precautionary";
            this.updown_Horsepower_Precautionary.Size = new System.Drawing.Size(68, 20);
            this.updown_Horsepower_Precautionary.TabIndex = 151;
            // 
            // label_Main_Percent_2
            // 
            this.label_Main_Percent_2.AutoSize = true;
            this.label_Main_Percent_2.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_2.Location = new System.Drawing.Point(431, 22);
            this.label_Main_Percent_2.Name = "label_Main_Percent_2";
            this.label_Main_Percent_2.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_2.TabIndex = 303;
            this.label_Main_Percent_2.Text = "%";
            // 
            // updown_Time_Precautionary
            // 
            this.updown_Time_Precautionary.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Time_Precautionary.DecimalPlaces = 2;
            this.updown_Time_Precautionary.Enabled = false;
            this.updown_Time_Precautionary.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Time_Precautionary.Location = new System.Drawing.Point(452, 48);
            this.updown_Time_Precautionary.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Time_Precautionary.Name = "updown_Time_Precautionary";
            this.updown_Time_Precautionary.ReadOnly = true;
            this.updown_Time_Precautionary.Size = new System.Drawing.Size(68, 20);
            this.updown_Time_Precautionary.TabIndex = 150;
            // 
            // updown_Percent_Precautionary
            // 
            this.updown_Percent_Precautionary.DecimalPlaces = 2;
            this.updown_Percent_Precautionary.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Percent_Precautionary.Location = new System.Drawing.Point(452, 22);
            this.updown_Percent_Precautionary.Name = "updown_Percent_Precautionary";
            this.updown_Percent_Precautionary.Size = new System.Drawing.Size(68, 20);
            this.updown_Percent_Precautionary.TabIndex = 149;
            // 
            // updown_HP_Full_Cruise
            // 
            this.updown_HP_Full_Cruise.BackColor = System.Drawing.SystemColors.Window;
            this.updown_HP_Full_Cruise.Enabled = false;
            this.updown_HP_Full_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_HP_Full_Cruise.Location = new System.Drawing.Point(628, 96);
            this.updown_HP_Full_Cruise.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_HP_Full_Cruise.Name = "updown_HP_Full_Cruise";
            this.updown_HP_Full_Cruise.ReadOnly = true;
            this.updown_HP_Full_Cruise.Size = new System.Drawing.Size(55, 20);
            this.updown_HP_Full_Cruise.TabIndex = 164;
            // 
            // updown_EP_Maneuvering
            // 
            this.updown_EP_Maneuvering.BackColor = System.Drawing.SystemColors.Window;
            this.updown_EP_Maneuvering.DecimalPlaces = 2;
            this.updown_EP_Maneuvering.Enabled = false;
            this.updown_EP_Maneuvering.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_EP_Maneuvering.Location = new System.Drawing.Point(371, 122);
            this.updown_EP_Maneuvering.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_EP_Maneuvering.Name = "updown_EP_Maneuvering";
            this.updown_EP_Maneuvering.ReadOnly = true;
            this.updown_EP_Maneuvering.Size = new System.Drawing.Size(60, 20);
            this.updown_EP_Maneuvering.TabIndex = 147;
            // 
            // label_Main_Percent_1
            // 
            this.label_Main_Percent_1.AutoSize = true;
            this.label_Main_Percent_1.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_1.Location = new System.Drawing.Point(350, 23);
            this.label_Main_Percent_1.Name = "label_Main_Percent_1";
            this.label_Main_Percent_1.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_1.TabIndex = 302;
            this.label_Main_Percent_1.Text = "%";
            // 
            // updown_HP_Maneuvering
            // 
            this.updown_HP_Maneuvering.BackColor = System.Drawing.SystemColors.Window;
            this.updown_HP_Maneuvering.Enabled = false;
            this.updown_HP_Maneuvering.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_HP_Maneuvering.Location = new System.Drawing.Point(371, 96);
            this.updown_HP_Maneuvering.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_HP_Maneuvering.Name = "updown_HP_Maneuvering";
            this.updown_HP_Maneuvering.ReadOnly = true;
            this.updown_HP_Maneuvering.Size = new System.Drawing.Size(60, 20);
            this.updown_HP_Maneuvering.TabIndex = 146;
            // 
            // updown_Horsepower_Full_Cruise
            // 
            this.updown_Horsepower_Full_Cruise.DecimalPlaces = 2;
            this.updown_Horsepower_Full_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Horsepower_Full_Cruise.Location = new System.Drawing.Point(628, 72);
            this.updown_Horsepower_Full_Cruise.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Horsepower_Full_Cruise.Name = "updown_Horsepower_Full_Cruise";
            this.updown_Horsepower_Full_Cruise.Size = new System.Drawing.Size(55, 20);
            this.updown_Horsepower_Full_Cruise.TabIndex = 163;
            // 
            // updown_Time_Maneuvering
            // 
            this.updown_Time_Maneuvering.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Time_Maneuvering.DecimalPlaces = 2;
            this.updown_Time_Maneuvering.Enabled = false;
            this.updown_Time_Maneuvering.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Time_Maneuvering.Location = new System.Drawing.Point(371, 48);
            this.updown_Time_Maneuvering.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Time_Maneuvering.Name = "updown_Time_Maneuvering";
            this.updown_Time_Maneuvering.ReadOnly = true;
            this.updown_Time_Maneuvering.Size = new System.Drawing.Size(60, 20);
            this.updown_Time_Maneuvering.TabIndex = 144;
            // 
            // text_Main_Mode_5
            // 
            this.text_Main_Mode_5.BackColor = System.Drawing.Color.Silver;
            this.text_Main_Mode_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.text_Main_Mode_5.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.text_Main_Mode_5.Location = new System.Drawing.Point(628, 3);
            this.text_Main_Mode_5.Margin = new System.Windows.Forms.Padding(2);
            this.text_Main_Mode_5.Name = "text_Main_Mode_5";
            this.text_Main_Mode_5.Size = new System.Drawing.Size(68, 17);
            this.text_Main_Mode_5.TabIndex = 278;
            this.text_Main_Mode_5.Text = "Mode 5";
            // 
            // updown_Percent_Maneuvering
            // 
            this.updown_Percent_Maneuvering.DecimalPlaces = 2;
            this.updown_Percent_Maneuvering.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Percent_Maneuvering.Location = new System.Drawing.Point(371, 22);
            this.updown_Percent_Maneuvering.Name = "updown_Percent_Maneuvering";
            this.updown_Percent_Maneuvering.Size = new System.Drawing.Size(60, 20);
            this.updown_Percent_Maneuvering.TabIndex = 143;
            // 
            // updown_Time_Full_Cruise
            // 
            this.updown_Time_Full_Cruise.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Time_Full_Cruise.DecimalPlaces = 2;
            this.updown_Time_Full_Cruise.Enabled = false;
            this.updown_Time_Full_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Time_Full_Cruise.Location = new System.Drawing.Point(628, 48);
            this.updown_Time_Full_Cruise.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Time_Full_Cruise.Name = "updown_Time_Full_Cruise";
            this.updown_Time_Full_Cruise.ReadOnly = true;
            this.updown_Time_Full_Cruise.Size = new System.Drawing.Size(55, 20);
            this.updown_Time_Full_Cruise.TabIndex = 162;
            // 
            // label_Main_Energy_Production
            // 
            this.label_Main_Energy_Production.AutoSize = true;
            this.label_Main_Energy_Production.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Energy_Production.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Energy_Production.Location = new System.Drawing.Point(6, 121);
            this.label_Main_Energy_Production.Name = "label_Main_Energy_Production";
            this.label_Main_Energy_Production.Size = new System.Drawing.Size(276, 20);
            this.label_Main_Energy_Production.TabIndex = 141;
            this.label_Main_Energy_Production.Text = "Energy Production (KWh)(All Engines)";
            // 
            // updown_Percent_Full_Cruise
            // 
            this.updown_Percent_Full_Cruise.DecimalPlaces = 2;
            this.updown_Percent_Full_Cruise.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Percent_Full_Cruise.Location = new System.Drawing.Point(628, 22);
            this.updown_Percent_Full_Cruise.Name = "updown_Percent_Full_Cruise";
            this.updown_Percent_Full_Cruise.Size = new System.Drawing.Size(55, 20);
            this.updown_Percent_Full_Cruise.TabIndex = 161;
            // 
            // updown_EP_Idle
            // 
            this.updown_EP_Idle.BackColor = System.Drawing.SystemColors.Window;
            this.updown_EP_Idle.DecimalPlaces = 2;
            this.updown_EP_Idle.Enabled = false;
            this.updown_EP_Idle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_EP_Idle.Location = new System.Drawing.Point(282, 122);
            this.updown_EP_Idle.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_EP_Idle.Name = "updown_EP_Idle";
            this.updown_EP_Idle.ReadOnly = true;
            this.updown_EP_Idle.Size = new System.Drawing.Size(68, 20);
            this.updown_EP_Idle.TabIndex = 140;
            // 
            // text_Main_Mode_4
            // 
            this.text_Main_Mode_4.BackColor = System.Drawing.Color.Silver;
            this.text_Main_Mode_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.text_Main_Mode_4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.text_Main_Mode_4.Location = new System.Drawing.Point(542, 3);
            this.text_Main_Mode_4.Margin = new System.Windows.Forms.Padding(2);
            this.text_Main_Mode_4.Name = "text_Main_Mode_4";
            this.text_Main_Mode_4.Size = new System.Drawing.Size(68, 17);
            this.text_Main_Mode_4.TabIndex = 277;
            this.text_Main_Mode_4.Text = "Mode 4";
            // 
            // label_Main_HP_Per_Engine
            // 
            this.label_Main_HP_Per_Engine.AutoSize = true;
            this.label_Main_HP_Per_Engine.BackColor = System.Drawing.Color.Silver;
            this.label_Main_HP_Per_Engine.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_HP_Per_Engine.Location = new System.Drawing.Point(6, 95);
            this.label_Main_HP_Per_Engine.Name = "label_Main_HP_Per_Engine";
            this.label_Main_HP_Per_Engine.Size = new System.Drawing.Size(113, 20);
            this.label_Main_HP_Per_Engine.TabIndex = 139;
            this.label_Main_HP_Per_Engine.Text = "HP Per Engine";
            // 
            // text_Main_Mode_3
            // 
            this.text_Main_Mode_3.BackColor = System.Drawing.Color.Silver;
            this.text_Main_Mode_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.text_Main_Mode_3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.text_Main_Mode_3.Location = new System.Drawing.Point(452, 3);
            this.text_Main_Mode_3.Margin = new System.Windows.Forms.Padding(2);
            this.text_Main_Mode_3.Name = "text_Main_Mode_3";
            this.text_Main_Mode_3.Size = new System.Drawing.Size(68, 17);
            this.text_Main_Mode_3.TabIndex = 276;
            this.text_Main_Mode_3.Text = "Mode 3";
            // 
            // updown_HP_Idle
            // 
            this.updown_HP_Idle.BackColor = System.Drawing.SystemColors.Window;
            this.updown_HP_Idle.Enabled = false;
            this.updown_HP_Idle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_HP_Idle.Location = new System.Drawing.Point(282, 96);
            this.updown_HP_Idle.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_HP_Idle.Name = "updown_HP_Idle";
            this.updown_HP_Idle.ReadOnly = true;
            this.updown_HP_Idle.Size = new System.Drawing.Size(68, 20);
            this.updown_HP_Idle.TabIndex = 138;
            // 
            // text_Main_Mode_2
            // 
            this.text_Main_Mode_2.BackColor = System.Drawing.Color.Silver;
            this.text_Main_Mode_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.text_Main_Mode_2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.text_Main_Mode_2.Location = new System.Drawing.Point(371, 3);
            this.text_Main_Mode_2.Margin = new System.Windows.Forms.Padding(2);
            this.text_Main_Mode_2.Name = "text_Main_Mode_2";
            this.text_Main_Mode_2.Size = new System.Drawing.Size(68, 17);
            this.text_Main_Mode_2.TabIndex = 275;
            this.text_Main_Mode_2.Text = "Mode 2";
            // 
            // updown_Horsepower_Idle
            // 
            this.updown_Horsepower_Idle.DecimalPlaces = 2;
            this.updown_Horsepower_Idle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Horsepower_Idle.Location = new System.Drawing.Point(282, 72);
            this.updown_Horsepower_Idle.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Horsepower_Idle.Name = "updown_Horsepower_Idle";
            this.updown_Horsepower_Idle.Size = new System.Drawing.Size(68, 20);
            this.updown_Horsepower_Idle.TabIndex = 136;
            // 
            // text_Main_Mode_1
            // 
            this.text_Main_Mode_1.BackColor = System.Drawing.Color.Silver;
            this.text_Main_Mode_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.text_Main_Mode_1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.text_Main_Mode_1.Location = new System.Drawing.Point(282, 3);
            this.text_Main_Mode_1.Margin = new System.Windows.Forms.Padding(2);
            this.text_Main_Mode_1.Name = "text_Main_Mode_1";
            this.text_Main_Mode_1.Size = new System.Drawing.Size(68, 17);
            this.text_Main_Mode_1.TabIndex = 274;
            this.text_Main_Mode_1.Text = "Mode 1";
            // 
            // updown_Time_Idle
            // 
            this.updown_Time_Idle.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Time_Idle.DecimalPlaces = 2;
            this.updown_Time_Idle.Enabled = false;
            this.updown_Time_Idle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Time_Idle.Location = new System.Drawing.Point(282, 48);
            this.updown_Time_Idle.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Time_Idle.Name = "updown_Time_Idle";
            this.updown_Time_Idle.ReadOnly = true;
            this.updown_Time_Idle.Size = new System.Drawing.Size(68, 20);
            this.updown_Time_Idle.TabIndex = 135;
            // 
            // updown_Horsepower_Maneuvering
            // 
            this.updown_Horsepower_Maneuvering.DecimalPlaces = 2;
            this.updown_Horsepower_Maneuvering.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Horsepower_Maneuvering.Location = new System.Drawing.Point(371, 72);
            this.updown_Horsepower_Maneuvering.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Horsepower_Maneuvering.Name = "updown_Horsepower_Maneuvering";
            this.updown_Horsepower_Maneuvering.Size = new System.Drawing.Size(60, 20);
            this.updown_Horsepower_Maneuvering.TabIndex = 145;
            // 
            // updown_Percent_Idle
            // 
            this.updown_Percent_Idle.DecimalPlaces = 2;
            this.updown_Percent_Idle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Percent_Idle.Location = new System.Drawing.Point(282, 22);
            this.updown_Percent_Idle.Name = "updown_Percent_Idle";
            this.updown_Percent_Idle.Size = new System.Drawing.Size(68, 20);
            this.updown_Percent_Idle.TabIndex = 134;
            // 
            // label_Main_Percent_In_Mode
            // 
            this.label_Main_Percent_In_Mode.AutoSize = true;
            this.label_Main_Percent_In_Mode.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_In_Mode.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_In_Mode.Location = new System.Drawing.Point(6, 18);
            this.label_Main_Percent_In_Mode.Name = "label_Main_Percent_In_Mode";
            this.label_Main_Percent_In_Mode.Size = new System.Drawing.Size(218, 20);
            this.label_Main_Percent_In_Mode.TabIndex = 131;
            this.label_Main_Percent_In_Mode.Text = "Percent of Trip In Mode (time)";
            // 
            // label_Main_HP_Load_Factor
            // 
            this.label_Main_HP_Load_Factor.AutoSize = true;
            this.label_Main_HP_Load_Factor.BackColor = System.Drawing.Color.Silver;
            this.label_Main_HP_Load_Factor.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_HP_Load_Factor.Location = new System.Drawing.Point(6, 70);
            this.label_Main_HP_Load_Factor.Name = "label_Main_HP_Load_Factor";
            this.label_Main_HP_Load_Factor.Size = new System.Drawing.Size(228, 20);
            this.label_Main_HP_Load_Factor.TabIndex = 133;
            this.label_Main_HP_Load_Factor.Text = "HP Load Factor (single engine)";
            // 
            // label_Main_Time_Per_Mode
            // 
            this.label_Main_Time_Per_Mode.AutoSize = true;
            this.label_Main_Time_Per_Mode.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Time_Per_Mode.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Time_Per_Mode.Location = new System.Drawing.Point(6, 44);
            this.label_Main_Time_Per_Mode.Name = "label_Main_Time_Per_Mode";
            this.label_Main_Time_Per_Mode.Size = new System.Drawing.Size(169, 20);
            this.label_Main_Time_Per_Mode.TabIndex = 132;
            this.label_Main_Time_Per_Mode.Text = "Time Per Mode (hours)";
            // 
            // UI_Tab
            // 
            this.UI_Tab.Controls.Add(this.label7);
            this.UI_Tab.Controls.Add(this.label8);
            this.UI_Tab.Controls.Add(this.panel_Aux_Emissions_Input);
            this.UI_Tab.Controls.Add(this.panel_main_engine_inputs);
            this.UI_Tab.Location = new System.Drawing.Point(4, 22);
            this.UI_Tab.Name = "UI_Tab";
            this.UI_Tab.Padding = new System.Windows.Forms.Padding(3);
            this.UI_Tab.Size = new System.Drawing.Size(1195, 752);
            this.UI_Tab.TabIndex = 8;
            this.UI_Tab.Text = "User Inputs";
            this.UI_Tab.UseVisualStyleBackColor = true;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.BackColor = System.Drawing.Color.Transparent;
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.Location = new System.Drawing.Point(6, 296);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(120, 20);
            this.label7.TabIndex = 326;
            this.label7.Text = "Auxiliary Engine";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.BackColor = System.Drawing.Color.Transparent;
            this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(6, 5);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(97, 20);
            this.label8.TabIndex = 325;
            this.label8.Text = "Main Engine";
            // 
            // panel_Aux_Emissions_Input
            // 
            this.panel_Aux_Emissions_Input.BackColor = System.Drawing.Color.Silver;
            this.panel_Aux_Emissions_Input.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Residual_Oil_Label);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_ULSD_Label);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Ult_NOX);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Biodiesel_Label);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Bio_NOX);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fischer_Label);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Fis_NOX);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Natural_Gas_Label);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Nat_NOX);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Diesel_Label);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Die_NOX);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_CH4);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_N2O);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_PM25);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_PM10);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_VOC);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_CO);
            this.panel_Aux_Emissions_Input.Controls.Add(this.Aux_Res_NOX);
            this.panel_Aux_Emissions_Input.Controls.Add(this.label_Aux_NOX);
            this.panel_Aux_Emissions_Input.Location = new System.Drawing.Point(2, 318);
            this.panel_Aux_Emissions_Input.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Aux_Emissions_Input.Name = "panel_Aux_Emissions_Input";
            this.panel_Aux_Emissions_Input.Size = new System.Drawing.Size(1193, 247);
            this.panel_Aux_Emissions_Input.TabIndex = 324;
            // 
            // Aux_Residual_Oil_Label
            // 
            this.Aux_Residual_Oil_Label.AutoSize = true;
            this.Aux_Residual_Oil_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Residual_Oil_Label.Location = new System.Drawing.Point(78, 17);
            this.Aux_Residual_Oil_Label.Name = "Aux_Residual_Oil_Label";
            this.Aux_Residual_Oil_Label.Size = new System.Drawing.Size(93, 20);
            this.Aux_Residual_Oil_Label.TabIndex = 325;
            this.Aux_Residual_Oil_Label.Text = "Residual Oil";
            // 
            // Aux_ULSD_Label
            // 
            this.Aux_ULSD_Label.AutoSize = true;
            this.Aux_ULSD_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_ULSD_Label.Location = new System.Drawing.Point(597, 0);
            this.Aux_ULSD_Label.Name = "Aux_ULSD_Label";
            this.Aux_ULSD_Label.Size = new System.Drawing.Size(117, 40);
            this.Aux_ULSD_Label.TabIndex = 381;
            this.Aux_ULSD_Label.Text = "Ultra-low Sulfur\r\nDiesel";
            // 
            // Aux_Ult_CH4
            // 
            this.Aux_Ult_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_CH4.DecimalPlaces = 3;
            this.Aux_Ult_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_CH4.Location = new System.Drawing.Point(600, 195);
            this.Aux_Ult_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_CH4.Name = "Aux_Ult_CH4";
            this.Aux_Ult_CH4.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_CH4.TabIndex = 380;
            // 
            // Aux_Ult_N2O
            // 
            this.Aux_Ult_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_N2O.DecimalPlaces = 3;
            this.Aux_Ult_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_N2O.Location = new System.Drawing.Point(600, 168);
            this.Aux_Ult_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_N2O.Name = "Aux_Ult_N2O";
            this.Aux_Ult_N2O.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_N2O.TabIndex = 379;
            // 
            // Aux_Ult_PM25
            // 
            this.Aux_Ult_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_PM25.DecimalPlaces = 3;
            this.Aux_Ult_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_PM25.Location = new System.Drawing.Point(600, 142);
            this.Aux_Ult_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_PM25.Name = "Aux_Ult_PM25";
            this.Aux_Ult_PM25.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_PM25.TabIndex = 378;
            // 
            // Aux_Ult_PM10
            // 
            this.Aux_Ult_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_PM10.DecimalPlaces = 3;
            this.Aux_Ult_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_PM10.Location = new System.Drawing.Point(600, 115);
            this.Aux_Ult_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_PM10.Name = "Aux_Ult_PM10";
            this.Aux_Ult_PM10.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_PM10.TabIndex = 377;
            // 
            // Aux_Ult_VOC
            // 
            this.Aux_Ult_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_VOC.DecimalPlaces = 3;
            this.Aux_Ult_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_VOC.Location = new System.Drawing.Point(600, 88);
            this.Aux_Ult_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_VOC.Name = "Aux_Ult_VOC";
            this.Aux_Ult_VOC.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_VOC.TabIndex = 376;
            // 
            // Aux_Ult_CO
            // 
            this.Aux_Ult_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_CO.DecimalPlaces = 3;
            this.Aux_Ult_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_CO.Location = new System.Drawing.Point(600, 62);
            this.Aux_Ult_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_CO.Name = "Aux_Ult_CO";
            this.Aux_Ult_CO.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_CO.TabIndex = 375;
            // 
            // Aux_Ult_NOX
            // 
            this.Aux_Ult_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Ult_NOX.DecimalPlaces = 3;
            this.Aux_Ult_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Ult_NOX.Location = new System.Drawing.Point(600, 36);
            this.Aux_Ult_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Ult_NOX.Name = "Aux_Ult_NOX";
            this.Aux_Ult_NOX.Size = new System.Drawing.Size(97, 21);
            this.Aux_Ult_NOX.TabIndex = 374;
            // 
            // Aux_Biodiesel_Label
            // 
            this.Aux_Biodiesel_Label.AutoSize = true;
            this.Aux_Biodiesel_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Biodiesel_Label.Location = new System.Drawing.Point(494, 17);
            this.Aux_Biodiesel_Label.Name = "Aux_Biodiesel_Label";
            this.Aux_Biodiesel_Label.Size = new System.Drawing.Size(73, 20);
            this.Aux_Biodiesel_Label.TabIndex = 373;
            this.Aux_Biodiesel_Label.Text = "Biodiesel";
            // 
            // Aux_Bio_CH4
            // 
            this.Aux_Bio_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_CH4.DecimalPlaces = 3;
            this.Aux_Bio_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_CH4.Location = new System.Drawing.Point(497, 195);
            this.Aux_Bio_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_CH4.Name = "Aux_Bio_CH4";
            this.Aux_Bio_CH4.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_CH4.TabIndex = 372;
            // 
            // Aux_Bio_N2O
            // 
            this.Aux_Bio_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_N2O.DecimalPlaces = 3;
            this.Aux_Bio_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_N2O.Location = new System.Drawing.Point(497, 168);
            this.Aux_Bio_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_N2O.Name = "Aux_Bio_N2O";
            this.Aux_Bio_N2O.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_N2O.TabIndex = 371;
            // 
            // Aux_Bio_PM25
            // 
            this.Aux_Bio_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_PM25.DecimalPlaces = 3;
            this.Aux_Bio_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_PM25.Location = new System.Drawing.Point(497, 142);
            this.Aux_Bio_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_PM25.Name = "Aux_Bio_PM25";
            this.Aux_Bio_PM25.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_PM25.TabIndex = 370;
            // 
            // Aux_Bio_PM10
            // 
            this.Aux_Bio_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_PM10.DecimalPlaces = 3;
            this.Aux_Bio_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_PM10.Location = new System.Drawing.Point(497, 115);
            this.Aux_Bio_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_PM10.Name = "Aux_Bio_PM10";
            this.Aux_Bio_PM10.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_PM10.TabIndex = 369;
            // 
            // Aux_Bio_VOC
            // 
            this.Aux_Bio_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_VOC.DecimalPlaces = 3;
            this.Aux_Bio_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_VOC.Location = new System.Drawing.Point(497, 88);
            this.Aux_Bio_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_VOC.Name = "Aux_Bio_VOC";
            this.Aux_Bio_VOC.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_VOC.TabIndex = 368;
            // 
            // Aux_Bio_CO
            // 
            this.Aux_Bio_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_CO.DecimalPlaces = 3;
            this.Aux_Bio_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_CO.Location = new System.Drawing.Point(497, 62);
            this.Aux_Bio_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_CO.Name = "Aux_Bio_CO";
            this.Aux_Bio_CO.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_CO.TabIndex = 367;
            // 
            // Aux_Bio_NOX
            // 
            this.Aux_Bio_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Bio_NOX.DecimalPlaces = 3;
            this.Aux_Bio_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Bio_NOX.Location = new System.Drawing.Point(497, 36);
            this.Aux_Bio_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Bio_NOX.Name = "Aux_Bio_NOX";
            this.Aux_Bio_NOX.Size = new System.Drawing.Size(97, 21);
            this.Aux_Bio_NOX.TabIndex = 366;
            // 
            // Aux_Fischer_Label
            // 
            this.Aux_Fischer_Label.AutoSize = true;
            this.Aux_Fischer_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fischer_Label.Location = new System.Drawing.Point(388, 0);
            this.Aux_Fischer_Label.Name = "Aux_Fischer_Label";
            this.Aux_Fischer_Label.Size = new System.Drawing.Size(124, 40);
            this.Aux_Fischer_Label.TabIndex = 365;
            this.Aux_Fischer_Label.Text = "Fischer–Tropsch\r\nDiesel";
            // 
            // Aux_Fis_CH4
            // 
            this.Aux_Fis_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_CH4.DecimalPlaces = 3;
            this.Aux_Fis_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_CH4.Location = new System.Drawing.Point(391, 195);
            this.Aux_Fis_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_CH4.Name = "Aux_Fis_CH4";
            this.Aux_Fis_CH4.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_CH4.TabIndex = 364;
            // 
            // Aux_Fis_N2O
            // 
            this.Aux_Fis_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_N2O.DecimalPlaces = 3;
            this.Aux_Fis_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_N2O.Location = new System.Drawing.Point(391, 168);
            this.Aux_Fis_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_N2O.Name = "Aux_Fis_N2O";
            this.Aux_Fis_N2O.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_N2O.TabIndex = 363;
            // 
            // Aux_Fis_PM25
            // 
            this.Aux_Fis_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_PM25.DecimalPlaces = 3;
            this.Aux_Fis_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_PM25.Location = new System.Drawing.Point(391, 142);
            this.Aux_Fis_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_PM25.Name = "Aux_Fis_PM25";
            this.Aux_Fis_PM25.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_PM25.TabIndex = 362;
            // 
            // Aux_Fis_PM10
            // 
            this.Aux_Fis_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_PM10.DecimalPlaces = 3;
            this.Aux_Fis_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_PM10.Location = new System.Drawing.Point(391, 115);
            this.Aux_Fis_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_PM10.Name = "Aux_Fis_PM10";
            this.Aux_Fis_PM10.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_PM10.TabIndex = 361;
            // 
            // Aux_Fis_VOC
            // 
            this.Aux_Fis_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_VOC.DecimalPlaces = 3;
            this.Aux_Fis_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_VOC.Location = new System.Drawing.Point(391, 88);
            this.Aux_Fis_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_VOC.Name = "Aux_Fis_VOC";
            this.Aux_Fis_VOC.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_VOC.TabIndex = 360;
            // 
            // Aux_Fis_CO
            // 
            this.Aux_Fis_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_CO.DecimalPlaces = 3;
            this.Aux_Fis_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_CO.Location = new System.Drawing.Point(391, 62);
            this.Aux_Fis_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_CO.Name = "Aux_Fis_CO";
            this.Aux_Fis_CO.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_CO.TabIndex = 359;
            // 
            // Aux_Fis_NOX
            // 
            this.Aux_Fis_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Fis_NOX.DecimalPlaces = 3;
            this.Aux_Fis_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Fis_NOX.Location = new System.Drawing.Point(391, 36);
            this.Aux_Fis_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Fis_NOX.Name = "Aux_Fis_NOX";
            this.Aux_Fis_NOX.Size = new System.Drawing.Size(97, 21);
            this.Aux_Fis_NOX.TabIndex = 358;
            // 
            // Aux_Natural_Gas_Label
            // 
            this.Aux_Natural_Gas_Label.AutoSize = true;
            this.Aux_Natural_Gas_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Natural_Gas_Label.Location = new System.Drawing.Point(285, 17);
            this.Aux_Natural_Gas_Label.Name = "Aux_Natural_Gas_Label";
            this.Aux_Natural_Gas_Label.Size = new System.Drawing.Size(94, 20);
            this.Aux_Natural_Gas_Label.TabIndex = 357;
            this.Aux_Natural_Gas_Label.Text = "Natural Gas";
            // 
            // Aux_Nat_CH4
            // 
            this.Aux_Nat_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_CH4.DecimalPlaces = 3;
            this.Aux_Nat_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_CH4.Location = new System.Drawing.Point(288, 195);
            this.Aux_Nat_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_CH4.Name = "Aux_Nat_CH4";
            this.Aux_Nat_CH4.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_CH4.TabIndex = 356;
            // 
            // Aux_Nat_N2O
            // 
            this.Aux_Nat_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_N2O.DecimalPlaces = 3;
            this.Aux_Nat_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_N2O.Location = new System.Drawing.Point(288, 168);
            this.Aux_Nat_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_N2O.Name = "Aux_Nat_N2O";
            this.Aux_Nat_N2O.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_N2O.TabIndex = 355;
            // 
            // Aux_Nat_PM25
            // 
            this.Aux_Nat_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_PM25.DecimalPlaces = 3;
            this.Aux_Nat_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_PM25.Location = new System.Drawing.Point(288, 142);
            this.Aux_Nat_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_PM25.Name = "Aux_Nat_PM25";
            this.Aux_Nat_PM25.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_PM25.TabIndex = 354;
            // 
            // Aux_Nat_PM10
            // 
            this.Aux_Nat_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_PM10.DecimalPlaces = 3;
            this.Aux_Nat_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_PM10.Location = new System.Drawing.Point(288, 115);
            this.Aux_Nat_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_PM10.Name = "Aux_Nat_PM10";
            this.Aux_Nat_PM10.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_PM10.TabIndex = 353;
            // 
            // Aux_Nat_VOC
            // 
            this.Aux_Nat_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_VOC.DecimalPlaces = 3;
            this.Aux_Nat_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_VOC.Location = new System.Drawing.Point(288, 88);
            this.Aux_Nat_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_VOC.Name = "Aux_Nat_VOC";
            this.Aux_Nat_VOC.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_VOC.TabIndex = 352;
            // 
            // Aux_Nat_CO
            // 
            this.Aux_Nat_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_CO.DecimalPlaces = 3;
            this.Aux_Nat_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_CO.Location = new System.Drawing.Point(288, 62);
            this.Aux_Nat_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_CO.Name = "Aux_Nat_CO";
            this.Aux_Nat_CO.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_CO.TabIndex = 351;
            // 
            // Aux_Nat_NOX
            // 
            this.Aux_Nat_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Nat_NOX.DecimalPlaces = 3;
            this.Aux_Nat_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Nat_NOX.Location = new System.Drawing.Point(288, 36);
            this.Aux_Nat_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Nat_NOX.Name = "Aux_Nat_NOX";
            this.Aux_Nat_NOX.Size = new System.Drawing.Size(97, 21);
            this.Aux_Nat_NOX.TabIndex = 350;
            // 
            // Aux_Diesel_Label
            // 
            this.Aux_Diesel_Label.AutoSize = true;
            this.Aux_Diesel_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Diesel_Label.Location = new System.Drawing.Point(182, 17);
            this.Aux_Diesel_Label.Name = "Aux_Diesel_Label";
            this.Aux_Diesel_Label.Size = new System.Drawing.Size(53, 20);
            this.Aux_Diesel_Label.TabIndex = 349;
            this.Aux_Diesel_Label.Text = "Diesel";
            // 
            // Aux_Die_CH4
            // 
            this.Aux_Die_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_CH4.DecimalPlaces = 3;
            this.Aux_Die_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_CH4.Location = new System.Drawing.Point(185, 195);
            this.Aux_Die_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_CH4.Name = "Aux_Die_CH4";
            this.Aux_Die_CH4.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_CH4.TabIndex = 348;
            // 
            // Aux_Die_N2O
            // 
            this.Aux_Die_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_N2O.DecimalPlaces = 3;
            this.Aux_Die_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_N2O.Location = new System.Drawing.Point(185, 168);
            this.Aux_Die_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_N2O.Name = "Aux_Die_N2O";
            this.Aux_Die_N2O.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_N2O.TabIndex = 347;
            // 
            // Aux_Die_PM25
            // 
            this.Aux_Die_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_PM25.DecimalPlaces = 3;
            this.Aux_Die_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_PM25.Location = new System.Drawing.Point(185, 142);
            this.Aux_Die_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_PM25.Name = "Aux_Die_PM25";
            this.Aux_Die_PM25.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_PM25.TabIndex = 346;
            // 
            // Aux_Die_PM10
            // 
            this.Aux_Die_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_PM10.DecimalPlaces = 3;
            this.Aux_Die_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_PM10.Location = new System.Drawing.Point(185, 115);
            this.Aux_Die_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_PM10.Name = "Aux_Die_PM10";
            this.Aux_Die_PM10.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_PM10.TabIndex = 345;
            // 
            // Aux_Die_VOC
            // 
            this.Aux_Die_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_VOC.DecimalPlaces = 3;
            this.Aux_Die_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_VOC.Location = new System.Drawing.Point(185, 88);
            this.Aux_Die_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_VOC.Name = "Aux_Die_VOC";
            this.Aux_Die_VOC.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_VOC.TabIndex = 344;
            // 
            // Aux_Die_CO
            // 
            this.Aux_Die_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_CO.DecimalPlaces = 3;
            this.Aux_Die_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_CO.Location = new System.Drawing.Point(185, 62);
            this.Aux_Die_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_CO.Name = "Aux_Die_CO";
            this.Aux_Die_CO.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_CO.TabIndex = 343;
            // 
            // Aux_Die_NOX
            // 
            this.Aux_Die_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Die_NOX.DecimalPlaces = 3;
            this.Aux_Die_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Die_NOX.Location = new System.Drawing.Point(185, 36);
            this.Aux_Die_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Die_NOX.Name = "Aux_Die_NOX";
            this.Aux_Die_NOX.Size = new System.Drawing.Size(97, 21);
            this.Aux_Die_NOX.TabIndex = 342;
            // 
            // Aux_Res_CH4
            // 
            this.Aux_Res_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_CH4.DecimalPlaces = 2;
            this.Aux_Res_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_CH4.Location = new System.Drawing.Point(81, 194);
            this.Aux_Res_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_CH4.Name = "Aux_Res_CH4";
            this.Aux_Res_CH4.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_CH4.TabIndex = 298;
            // 
            // label_Aux_CH4
            // 
            this.label_Aux_CH4.AutoSize = true;
            this.label_Aux_CH4.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CH4.Location = new System.Drawing.Point(4, 199);
            this.label_Aux_CH4.Name = "label_Aux_CH4";
            this.label_Aux_CH4.Size = new System.Drawing.Size(41, 18);
            this.label_Aux_CH4.TabIndex = 297;
            this.label_Aux_CH4.Text = "CH4";
            // 
            // Aux_Res_N2O
            // 
            this.Aux_Res_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_N2O.DecimalPlaces = 2;
            this.Aux_Res_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_N2O.Location = new System.Drawing.Point(81, 167);
            this.Aux_Res_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_N2O.Name = "Aux_Res_N2O";
            this.Aux_Res_N2O.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_N2O.TabIndex = 296;
            // 
            // label_Aux_N2O
            // 
            this.label_Aux_N2O.AutoSize = true;
            this.label_Aux_N2O.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_N2O.Location = new System.Drawing.Point(4, 172);
            this.label_Aux_N2O.Name = "label_Aux_N2O";
            this.label_Aux_N2O.Size = new System.Drawing.Size(42, 18);
            this.label_Aux_N2O.TabIndex = 295;
            this.label_Aux_N2O.Text = "N2O";
            // 
            // Aux_Res_PM25
            // 
            this.Aux_Res_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_PM25.DecimalPlaces = 2;
            this.Aux_Res_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_PM25.Location = new System.Drawing.Point(81, 141);
            this.Aux_Res_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_PM25.Name = "Aux_Res_PM25";
            this.Aux_Res_PM25.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_PM25.TabIndex = 294;
            // 
            // label_Aux_PM25
            // 
            this.label_Aux_PM25.AutoSize = true;
            this.label_Aux_PM25.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM25.Location = new System.Drawing.Point(4, 146);
            this.label_Aux_PM25.Name = "label_Aux_PM25";
            this.label_Aux_PM25.Size = new System.Drawing.Size(56, 18);
            this.label_Aux_PM25.TabIndex = 293;
            this.label_Aux_PM25.Text = "PM2.5";
            // 
            // Aux_Res_PM10
            // 
            this.Aux_Res_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_PM10.DecimalPlaces = 2;
            this.Aux_Res_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_PM10.Location = new System.Drawing.Point(81, 114);
            this.Aux_Res_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_PM10.Name = "Aux_Res_PM10";
            this.Aux_Res_PM10.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_PM10.TabIndex = 292;
            // 
            // label_Aux_PM10
            // 
            this.label_Aux_PM10.AutoSize = true;
            this.label_Aux_PM10.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM10.Location = new System.Drawing.Point(4, 119);
            this.label_Aux_PM10.Name = "label_Aux_PM10";
            this.label_Aux_PM10.Size = new System.Drawing.Size(51, 18);
            this.label_Aux_PM10.TabIndex = 291;
            this.label_Aux_PM10.Text = "PM10";
            // 
            // Aux_Res_VOC
            // 
            this.Aux_Res_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_VOC.DecimalPlaces = 2;
            this.Aux_Res_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_VOC.Location = new System.Drawing.Point(81, 88);
            this.Aux_Res_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_VOC.Name = "Aux_Res_VOC";
            this.Aux_Res_VOC.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_VOC.TabIndex = 290;
            // 
            // label_Aux_VOC
            // 
            this.label_Aux_VOC.AutoSize = true;
            this.label_Aux_VOC.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VOC.Location = new System.Drawing.Point(4, 92);
            this.label_Aux_VOC.Name = "label_Aux_VOC";
            this.label_Aux_VOC.Size = new System.Drawing.Size(43, 18);
            this.label_Aux_VOC.TabIndex = 289;
            this.label_Aux_VOC.Text = "VOC";
            // 
            // Aux_Res_CO
            // 
            this.Aux_Res_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_CO.DecimalPlaces = 2;
            this.Aux_Res_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_CO.Location = new System.Drawing.Point(81, 61);
            this.Aux_Res_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_CO.Name = "Aux_Res_CO";
            this.Aux_Res_CO.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_CO.TabIndex = 288;
            // 
            // label_Aux_CO
            // 
            this.label_Aux_CO.AutoSize = true;
            this.label_Aux_CO.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO.Location = new System.Drawing.Point(4, 66);
            this.label_Aux_CO.Name = "label_Aux_CO";
            this.label_Aux_CO.Size = new System.Drawing.Size(33, 18);
            this.label_Aux_CO.TabIndex = 287;
            this.label_Aux_CO.Text = "CO";
            // 
            // Aux_Res_NOX
            // 
            this.Aux_Res_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Aux_Res_NOX.DecimalPlaces = 2;
            this.Aux_Res_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Res_NOX.Location = new System.Drawing.Point(81, 35);
            this.Aux_Res_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Aux_Res_NOX.Name = "Aux_Res_NOX";
            this.Aux_Res_NOX.Size = new System.Drawing.Size(97, 21);
            this.Aux_Res_NOX.TabIndex = 285;
            // 
            // label_Aux_NOX
            // 
            this.label_Aux_NOX.AutoSize = true;
            this.label_Aux_NOX.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_NOX.Location = new System.Drawing.Point(4, 40);
            this.label_Aux_NOX.Name = "label_Aux_NOX";
            this.label_Aux_NOX.Size = new System.Drawing.Size(44, 18);
            this.label_Aux_NOX.TabIndex = 265;
            this.label_Aux_NOX.Text = "NOX";
            // 
            // panel_main_engine_inputs
            // 
            this.panel_main_engine_inputs.AutoScroll = true;
            this.panel_main_engine_inputs.BackColor = System.Drawing.Color.Silver;
            this.panel_main_engine_inputs.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_main_engine_inputs.Controls.Add(this.Main_ULSD_Label);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_CO);
            this.panel_main_engine_inputs.Controls.Add(this.Ult_NOX);
            this.panel_main_engine_inputs.Controls.Add(this.Main_Biodiesel_Label);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_CO);
            this.panel_main_engine_inputs.Controls.Add(this.Bio_NOX);
            this.panel_main_engine_inputs.Controls.Add(this.Main_Fischer_Label);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_CO);
            this.panel_main_engine_inputs.Controls.Add(this.Fis_NOX);
            this.panel_main_engine_inputs.Controls.Add(this.Main_Natural_Gas_Label);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_CO);
            this.panel_main_engine_inputs.Controls.Add(this.Nat_NOX);
            this.panel_main_engine_inputs.Controls.Add(this.Main_Diesel_Label);
            this.panel_main_engine_inputs.Controls.Add(this.Die_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.Die_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.Die_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.Die_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.Die_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.Die_CO);
            this.panel_main_engine_inputs.Controls.Add(this.Die_NOX);
            this.panel_main_engine_inputs.Controls.Add(this.Main_Residual_Oil_Label);
            this.panel_main_engine_inputs.Controls.Add(this.Res_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_CH4);
            this.panel_main_engine_inputs.Controls.Add(this.Res_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_N2O);
            this.panel_main_engine_inputs.Controls.Add(this.Res_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_PM25);
            this.panel_main_engine_inputs.Controls.Add(this.Res_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_PM10);
            this.panel_main_engine_inputs.Controls.Add(this.Res_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_VOC);
            this.panel_main_engine_inputs.Controls.Add(this.Res_CO);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_CO);
            this.panel_main_engine_inputs.Controls.Add(this.Res_NOX);
            this.panel_main_engine_inputs.Controls.Add(this.label_Main_Inputs_NOX);
            this.panel_main_engine_inputs.Location = new System.Drawing.Point(2, 27);
            this.panel_main_engine_inputs.Margin = new System.Windows.Forms.Padding(2);
            this.panel_main_engine_inputs.Name = "panel_main_engine_inputs";
            this.panel_main_engine_inputs.Size = new System.Drawing.Size(1191, 267);
            this.panel_main_engine_inputs.TabIndex = 284;
            // 
            // Main_ULSD_Label
            // 
            this.Main_ULSD_Label.AutoSize = true;
            this.Main_ULSD_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Main_ULSD_Label.Location = new System.Drawing.Point(597, 12);
            this.Main_ULSD_Label.Name = "Main_ULSD_Label";
            this.Main_ULSD_Label.Size = new System.Drawing.Size(117, 40);
            this.Main_ULSD_Label.TabIndex = 341;
            this.Main_ULSD_Label.Text = "Ultra-low Sulfur\r\nDiesel";
            // 
            // Ult_CH4
            // 
            this.Ult_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_CH4.DecimalPlaces = 3;
            this.Ult_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_CH4.Location = new System.Drawing.Point(600, 207);
            this.Ult_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_CH4.Name = "Ult_CH4";
            this.Ult_CH4.Size = new System.Drawing.Size(97, 21);
            this.Ult_CH4.TabIndex = 340;
            // 
            // Ult_N2O
            // 
            this.Ult_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_N2O.DecimalPlaces = 3;
            this.Ult_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_N2O.Location = new System.Drawing.Point(600, 180);
            this.Ult_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_N2O.Name = "Ult_N2O";
            this.Ult_N2O.Size = new System.Drawing.Size(97, 21);
            this.Ult_N2O.TabIndex = 339;
            // 
            // Ult_PM25
            // 
            this.Ult_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_PM25.DecimalPlaces = 3;
            this.Ult_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_PM25.Location = new System.Drawing.Point(600, 154);
            this.Ult_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_PM25.Name = "Ult_PM25";
            this.Ult_PM25.Size = new System.Drawing.Size(97, 21);
            this.Ult_PM25.TabIndex = 338;
            // 
            // Ult_PM10
            // 
            this.Ult_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_PM10.DecimalPlaces = 3;
            this.Ult_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_PM10.Location = new System.Drawing.Point(600, 127);
            this.Ult_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_PM10.Name = "Ult_PM10";
            this.Ult_PM10.Size = new System.Drawing.Size(97, 21);
            this.Ult_PM10.TabIndex = 337;
            // 
            // Ult_VOC
            // 
            this.Ult_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_VOC.DecimalPlaces = 3;
            this.Ult_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_VOC.Location = new System.Drawing.Point(600, 100);
            this.Ult_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_VOC.Name = "Ult_VOC";
            this.Ult_VOC.Size = new System.Drawing.Size(97, 21);
            this.Ult_VOC.TabIndex = 336;
            // 
            // Ult_CO
            // 
            this.Ult_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_CO.DecimalPlaces = 3;
            this.Ult_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_CO.Location = new System.Drawing.Point(600, 74);
            this.Ult_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_CO.Name = "Ult_CO";
            this.Ult_CO.Size = new System.Drawing.Size(97, 21);
            this.Ult_CO.TabIndex = 335;
            // 
            // Ult_NOX
            // 
            this.Ult_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Ult_NOX.DecimalPlaces = 3;
            this.Ult_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Ult_NOX.Location = new System.Drawing.Point(600, 48);
            this.Ult_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Ult_NOX.Name = "Ult_NOX";
            this.Ult_NOX.Size = new System.Drawing.Size(97, 21);
            this.Ult_NOX.TabIndex = 334;
            // 
            // Main_Biodiesel_Label
            // 
            this.Main_Biodiesel_Label.AutoSize = true;
            this.Main_Biodiesel_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Main_Biodiesel_Label.Location = new System.Drawing.Point(494, 29);
            this.Main_Biodiesel_Label.Name = "Main_Biodiesel_Label";
            this.Main_Biodiesel_Label.Size = new System.Drawing.Size(73, 20);
            this.Main_Biodiesel_Label.TabIndex = 333;
            this.Main_Biodiesel_Label.Text = "Biodiesel";
            // 
            // Bio_CH4
            // 
            this.Bio_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_CH4.DecimalPlaces = 3;
            this.Bio_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_CH4.Location = new System.Drawing.Point(497, 207);
            this.Bio_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_CH4.Name = "Bio_CH4";
            this.Bio_CH4.Size = new System.Drawing.Size(97, 21);
            this.Bio_CH4.TabIndex = 332;
            // 
            // Bio_N2O
            // 
            this.Bio_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_N2O.DecimalPlaces = 3;
            this.Bio_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_N2O.Location = new System.Drawing.Point(497, 180);
            this.Bio_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_N2O.Name = "Bio_N2O";
            this.Bio_N2O.Size = new System.Drawing.Size(97, 21);
            this.Bio_N2O.TabIndex = 331;
            // 
            // Bio_PM25
            // 
            this.Bio_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_PM25.DecimalPlaces = 3;
            this.Bio_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_PM25.Location = new System.Drawing.Point(497, 154);
            this.Bio_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_PM25.Name = "Bio_PM25";
            this.Bio_PM25.Size = new System.Drawing.Size(97, 21);
            this.Bio_PM25.TabIndex = 330;
            // 
            // Bio_PM10
            // 
            this.Bio_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_PM10.DecimalPlaces = 3;
            this.Bio_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_PM10.Location = new System.Drawing.Point(497, 127);
            this.Bio_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_PM10.Name = "Bio_PM10";
            this.Bio_PM10.Size = new System.Drawing.Size(97, 21);
            this.Bio_PM10.TabIndex = 329;
            // 
            // Bio_VOC
            // 
            this.Bio_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_VOC.DecimalPlaces = 3;
            this.Bio_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_VOC.Location = new System.Drawing.Point(497, 100);
            this.Bio_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_VOC.Name = "Bio_VOC";
            this.Bio_VOC.Size = new System.Drawing.Size(97, 21);
            this.Bio_VOC.TabIndex = 328;
            // 
            // Bio_CO
            // 
            this.Bio_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_CO.DecimalPlaces = 3;
            this.Bio_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_CO.Location = new System.Drawing.Point(497, 74);
            this.Bio_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_CO.Name = "Bio_CO";
            this.Bio_CO.Size = new System.Drawing.Size(97, 21);
            this.Bio_CO.TabIndex = 327;
            // 
            // Bio_NOX
            // 
            this.Bio_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Bio_NOX.DecimalPlaces = 3;
            this.Bio_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Bio_NOX.Location = new System.Drawing.Point(497, 48);
            this.Bio_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Bio_NOX.Name = "Bio_NOX";
            this.Bio_NOX.Size = new System.Drawing.Size(97, 21);
            this.Bio_NOX.TabIndex = 326;
            // 
            // Main_Fischer_Label
            // 
            this.Main_Fischer_Label.AutoSize = true;
            this.Main_Fischer_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Main_Fischer_Label.Location = new System.Drawing.Point(388, 12);
            this.Main_Fischer_Label.Name = "Main_Fischer_Label";
            this.Main_Fischer_Label.Size = new System.Drawing.Size(124, 40);
            this.Main_Fischer_Label.TabIndex = 325;
            this.Main_Fischer_Label.Text = "Fischer–Tropsch\r\nDiesel";
            // 
            // Fis_CH4
            // 
            this.Fis_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_CH4.DecimalPlaces = 3;
            this.Fis_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_CH4.Location = new System.Drawing.Point(391, 207);
            this.Fis_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_CH4.Name = "Fis_CH4";
            this.Fis_CH4.Size = new System.Drawing.Size(97, 21);
            this.Fis_CH4.TabIndex = 324;
            // 
            // Fis_N2O
            // 
            this.Fis_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_N2O.DecimalPlaces = 3;
            this.Fis_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_N2O.Location = new System.Drawing.Point(391, 180);
            this.Fis_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_N2O.Name = "Fis_N2O";
            this.Fis_N2O.Size = new System.Drawing.Size(97, 21);
            this.Fis_N2O.TabIndex = 323;
            // 
            // Fis_PM25
            // 
            this.Fis_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_PM25.DecimalPlaces = 3;
            this.Fis_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_PM25.Location = new System.Drawing.Point(391, 154);
            this.Fis_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_PM25.Name = "Fis_PM25";
            this.Fis_PM25.Size = new System.Drawing.Size(97, 21);
            this.Fis_PM25.TabIndex = 322;
            // 
            // Fis_PM10
            // 
            this.Fis_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_PM10.DecimalPlaces = 3;
            this.Fis_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_PM10.Location = new System.Drawing.Point(391, 127);
            this.Fis_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_PM10.Name = "Fis_PM10";
            this.Fis_PM10.Size = new System.Drawing.Size(97, 21);
            this.Fis_PM10.TabIndex = 321;
            // 
            // Fis_VOC
            // 
            this.Fis_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_VOC.DecimalPlaces = 3;
            this.Fis_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_VOC.Location = new System.Drawing.Point(391, 100);
            this.Fis_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_VOC.Name = "Fis_VOC";
            this.Fis_VOC.Size = new System.Drawing.Size(97, 21);
            this.Fis_VOC.TabIndex = 320;
            // 
            // Fis_CO
            // 
            this.Fis_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_CO.DecimalPlaces = 3;
            this.Fis_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_CO.Location = new System.Drawing.Point(391, 74);
            this.Fis_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_CO.Name = "Fis_CO";
            this.Fis_CO.Size = new System.Drawing.Size(97, 21);
            this.Fis_CO.TabIndex = 319;
            // 
            // Fis_NOX
            // 
            this.Fis_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Fis_NOX.DecimalPlaces = 3;
            this.Fis_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Fis_NOX.Location = new System.Drawing.Point(391, 48);
            this.Fis_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Fis_NOX.Name = "Fis_NOX";
            this.Fis_NOX.Size = new System.Drawing.Size(97, 21);
            this.Fis_NOX.TabIndex = 318;
            // 
            // Main_Natural_Gas_Label
            // 
            this.Main_Natural_Gas_Label.AutoSize = true;
            this.Main_Natural_Gas_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Main_Natural_Gas_Label.Location = new System.Drawing.Point(285, 29);
            this.Main_Natural_Gas_Label.Name = "Main_Natural_Gas_Label";
            this.Main_Natural_Gas_Label.Size = new System.Drawing.Size(94, 20);
            this.Main_Natural_Gas_Label.TabIndex = 317;
            this.Main_Natural_Gas_Label.Text = "Natural Gas";
            // 
            // Nat_CH4
            // 
            this.Nat_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_CH4.DecimalPlaces = 3;
            this.Nat_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_CH4.Location = new System.Drawing.Point(288, 207);
            this.Nat_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_CH4.Name = "Nat_CH4";
            this.Nat_CH4.Size = new System.Drawing.Size(97, 21);
            this.Nat_CH4.TabIndex = 316;
            // 
            // Nat_N2O
            // 
            this.Nat_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_N2O.DecimalPlaces = 3;
            this.Nat_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_N2O.Location = new System.Drawing.Point(288, 180);
            this.Nat_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_N2O.Name = "Nat_N2O";
            this.Nat_N2O.Size = new System.Drawing.Size(97, 21);
            this.Nat_N2O.TabIndex = 315;
            // 
            // Nat_PM25
            // 
            this.Nat_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_PM25.DecimalPlaces = 3;
            this.Nat_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_PM25.Location = new System.Drawing.Point(288, 154);
            this.Nat_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_PM25.Name = "Nat_PM25";
            this.Nat_PM25.Size = new System.Drawing.Size(97, 21);
            this.Nat_PM25.TabIndex = 314;
            // 
            // Nat_PM10
            // 
            this.Nat_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_PM10.DecimalPlaces = 3;
            this.Nat_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_PM10.Location = new System.Drawing.Point(288, 127);
            this.Nat_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_PM10.Name = "Nat_PM10";
            this.Nat_PM10.Size = new System.Drawing.Size(97, 21);
            this.Nat_PM10.TabIndex = 313;
            // 
            // Nat_VOC
            // 
            this.Nat_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_VOC.DecimalPlaces = 3;
            this.Nat_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_VOC.Location = new System.Drawing.Point(288, 100);
            this.Nat_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_VOC.Name = "Nat_VOC";
            this.Nat_VOC.Size = new System.Drawing.Size(97, 21);
            this.Nat_VOC.TabIndex = 312;
            // 
            // Nat_CO
            // 
            this.Nat_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_CO.DecimalPlaces = 3;
            this.Nat_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_CO.Location = new System.Drawing.Point(288, 74);
            this.Nat_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_CO.Name = "Nat_CO";
            this.Nat_CO.Size = new System.Drawing.Size(97, 21);
            this.Nat_CO.TabIndex = 311;
            // 
            // Nat_NOX
            // 
            this.Nat_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Nat_NOX.DecimalPlaces = 3;
            this.Nat_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Nat_NOX.Location = new System.Drawing.Point(288, 48);
            this.Nat_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Nat_NOX.Name = "Nat_NOX";
            this.Nat_NOX.Size = new System.Drawing.Size(97, 21);
            this.Nat_NOX.TabIndex = 310;
            // 
            // Main_Diesel_Label
            // 
            this.Main_Diesel_Label.AutoSize = true;
            this.Main_Diesel_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Main_Diesel_Label.Location = new System.Drawing.Point(182, 29);
            this.Main_Diesel_Label.Name = "Main_Diesel_Label";
            this.Main_Diesel_Label.Size = new System.Drawing.Size(53, 20);
            this.Main_Diesel_Label.TabIndex = 309;
            this.Main_Diesel_Label.Text = "Diesel";
            // 
            // Die_CH4
            // 
            this.Die_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Die_CH4.DecimalPlaces = 3;
            this.Die_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_CH4.Location = new System.Drawing.Point(185, 207);
            this.Die_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_CH4.Name = "Die_CH4";
            this.Die_CH4.Size = new System.Drawing.Size(97, 21);
            this.Die_CH4.TabIndex = 308;
            // 
            // Die_N2O
            // 
            this.Die_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Die_N2O.DecimalPlaces = 3;
            this.Die_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_N2O.Location = new System.Drawing.Point(185, 180);
            this.Die_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_N2O.Name = "Die_N2O";
            this.Die_N2O.Size = new System.Drawing.Size(97, 21);
            this.Die_N2O.TabIndex = 306;
            // 
            // Die_PM25
            // 
            this.Die_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Die_PM25.DecimalPlaces = 3;
            this.Die_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_PM25.Location = new System.Drawing.Point(185, 154);
            this.Die_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_PM25.Name = "Die_PM25";
            this.Die_PM25.Size = new System.Drawing.Size(97, 21);
            this.Die_PM25.TabIndex = 305;
            // 
            // Die_PM10
            // 
            this.Die_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Die_PM10.DecimalPlaces = 3;
            this.Die_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_PM10.Location = new System.Drawing.Point(185, 127);
            this.Die_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_PM10.Name = "Die_PM10";
            this.Die_PM10.Size = new System.Drawing.Size(97, 21);
            this.Die_PM10.TabIndex = 304;
            // 
            // Die_VOC
            // 
            this.Die_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Die_VOC.DecimalPlaces = 3;
            this.Die_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_VOC.Location = new System.Drawing.Point(185, 100);
            this.Die_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_VOC.Name = "Die_VOC";
            this.Die_VOC.Size = new System.Drawing.Size(97, 21);
            this.Die_VOC.TabIndex = 303;
            // 
            // Die_CO
            // 
            this.Die_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Die_CO.DecimalPlaces = 3;
            this.Die_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_CO.Location = new System.Drawing.Point(185, 74);
            this.Die_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_CO.Name = "Die_CO";
            this.Die_CO.Size = new System.Drawing.Size(97, 21);
            this.Die_CO.TabIndex = 302;
            // 
            // Die_NOX
            // 
            this.Die_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Die_NOX.DecimalPlaces = 3;
            this.Die_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Die_NOX.Location = new System.Drawing.Point(185, 48);
            this.Die_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Die_NOX.Name = "Die_NOX";
            this.Die_NOX.Size = new System.Drawing.Size(97, 21);
            this.Die_NOX.TabIndex = 301;
            // 
            // Main_Residual_Oil_Label
            // 
            this.Main_Residual_Oil_Label.AutoSize = true;
            this.Main_Residual_Oil_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Main_Residual_Oil_Label.Location = new System.Drawing.Point(76, 29);
            this.Main_Residual_Oil_Label.Name = "Main_Residual_Oil_Label";
            this.Main_Residual_Oil_Label.Size = new System.Drawing.Size(93, 20);
            this.Main_Residual_Oil_Label.TabIndex = 299;
            this.Main_Residual_Oil_Label.Text = "Residual Oil";
            // 
            // Res_CH4
            // 
            this.Res_CH4.BackColor = System.Drawing.SystemColors.Window;
            this.Res_CH4.DecimalPlaces = 3;
            this.Res_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_CH4.Location = new System.Drawing.Point(79, 207);
            this.Res_CH4.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_CH4.Name = "Res_CH4";
            this.Res_CH4.Size = new System.Drawing.Size(97, 21);
            this.Res_CH4.TabIndex = 298;
            // 
            // label_Main_Inputs_CH4
            // 
            this.label_Main_Inputs_CH4.AutoSize = true;
            this.label_Main_Inputs_CH4.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_CH4.Location = new System.Drawing.Point(2, 212);
            this.label_Main_Inputs_CH4.Name = "label_Main_Inputs_CH4";
            this.label_Main_Inputs_CH4.Size = new System.Drawing.Size(41, 18);
            this.label_Main_Inputs_CH4.TabIndex = 297;
            this.label_Main_Inputs_CH4.Text = "CH4";
            // 
            // Res_N2O
            // 
            this.Res_N2O.BackColor = System.Drawing.SystemColors.Window;
            this.Res_N2O.DecimalPlaces = 3;
            this.Res_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_N2O.Location = new System.Drawing.Point(79, 180);
            this.Res_N2O.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_N2O.Name = "Res_N2O";
            this.Res_N2O.Size = new System.Drawing.Size(97, 21);
            this.Res_N2O.TabIndex = 296;
            // 
            // label_Main_Inputs_N2O
            // 
            this.label_Main_Inputs_N2O.AutoSize = true;
            this.label_Main_Inputs_N2O.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_N2O.Location = new System.Drawing.Point(2, 185);
            this.label_Main_Inputs_N2O.Name = "label_Main_Inputs_N2O";
            this.label_Main_Inputs_N2O.Size = new System.Drawing.Size(42, 18);
            this.label_Main_Inputs_N2O.TabIndex = 295;
            this.label_Main_Inputs_N2O.Text = "N2O";
            // 
            // Res_PM25
            // 
            this.Res_PM25.BackColor = System.Drawing.SystemColors.Window;
            this.Res_PM25.DecimalPlaces = 3;
            this.Res_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_PM25.Location = new System.Drawing.Point(79, 154);
            this.Res_PM25.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_PM25.Name = "Res_PM25";
            this.Res_PM25.Size = new System.Drawing.Size(97, 21);
            this.Res_PM25.TabIndex = 294;
            // 
            // label_Main_Inputs_PM25
            // 
            this.label_Main_Inputs_PM25.AutoSize = true;
            this.label_Main_Inputs_PM25.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_PM25.Location = new System.Drawing.Point(2, 159);
            this.label_Main_Inputs_PM25.Name = "label_Main_Inputs_PM25";
            this.label_Main_Inputs_PM25.Size = new System.Drawing.Size(56, 18);
            this.label_Main_Inputs_PM25.TabIndex = 293;
            this.label_Main_Inputs_PM25.Text = "PM2.5";
            // 
            // Res_PM10
            // 
            this.Res_PM10.BackColor = System.Drawing.SystemColors.Window;
            this.Res_PM10.DecimalPlaces = 3;
            this.Res_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_PM10.Location = new System.Drawing.Point(79, 127);
            this.Res_PM10.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_PM10.Name = "Res_PM10";
            this.Res_PM10.Size = new System.Drawing.Size(97, 21);
            this.Res_PM10.TabIndex = 292;
            // 
            // label_Main_Inputs_PM10
            // 
            this.label_Main_Inputs_PM10.AutoSize = true;
            this.label_Main_Inputs_PM10.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_PM10.Location = new System.Drawing.Point(2, 132);
            this.label_Main_Inputs_PM10.Name = "label_Main_Inputs_PM10";
            this.label_Main_Inputs_PM10.Size = new System.Drawing.Size(51, 18);
            this.label_Main_Inputs_PM10.TabIndex = 291;
            this.label_Main_Inputs_PM10.Text = "PM10";
            // 
            // Res_VOC
            // 
            this.Res_VOC.BackColor = System.Drawing.SystemColors.Window;
            this.Res_VOC.DecimalPlaces = 3;
            this.Res_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_VOC.Location = new System.Drawing.Point(79, 101);
            this.Res_VOC.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_VOC.Name = "Res_VOC";
            this.Res_VOC.Size = new System.Drawing.Size(97, 21);
            this.Res_VOC.TabIndex = 290;
            // 
            // label_Main_Inputs_VOC
            // 
            this.label_Main_Inputs_VOC.AutoSize = true;
            this.label_Main_Inputs_VOC.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_VOC.Location = new System.Drawing.Point(2, 105);
            this.label_Main_Inputs_VOC.Name = "label_Main_Inputs_VOC";
            this.label_Main_Inputs_VOC.Size = new System.Drawing.Size(43, 18);
            this.label_Main_Inputs_VOC.TabIndex = 289;
            this.label_Main_Inputs_VOC.Text = "VOC";
            // 
            // Res_CO
            // 
            this.Res_CO.BackColor = System.Drawing.SystemColors.Window;
            this.Res_CO.DecimalPlaces = 3;
            this.Res_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_CO.Location = new System.Drawing.Point(79, 74);
            this.Res_CO.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_CO.Name = "Res_CO";
            this.Res_CO.Size = new System.Drawing.Size(97, 21);
            this.Res_CO.TabIndex = 288;
            // 
            // label_Main_Inputs_CO
            // 
            this.label_Main_Inputs_CO.AutoSize = true;
            this.label_Main_Inputs_CO.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_CO.Location = new System.Drawing.Point(2, 79);
            this.label_Main_Inputs_CO.Name = "label_Main_Inputs_CO";
            this.label_Main_Inputs_CO.Size = new System.Drawing.Size(33, 18);
            this.label_Main_Inputs_CO.TabIndex = 287;
            this.label_Main_Inputs_CO.Text = "CO";
            // 
            // Res_NOX
            // 
            this.Res_NOX.BackColor = System.Drawing.SystemColors.Window;
            this.Res_NOX.DecimalPlaces = 3;
            this.Res_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Res_NOX.Location = new System.Drawing.Point(79, 48);
            this.Res_NOX.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.Res_NOX.Name = "Res_NOX";
            this.Res_NOX.Size = new System.Drawing.Size(97, 21);
            this.Res_NOX.TabIndex = 285;
            // 
            // label_Main_Inputs_NOX
            // 
            this.label_Main_Inputs_NOX.AutoSize = true;
            this.label_Main_Inputs_NOX.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Inputs_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Inputs_NOX.Location = new System.Drawing.Point(2, 53);
            this.label_Main_Inputs_NOX.Name = "label_Main_Inputs_NOX";
            this.label_Main_Inputs_NOX.Size = new System.Drawing.Size(44, 18);
            this.label_Main_Inputs_NOX.TabIndex = 265;
            this.label_Main_Inputs_NOX.Text = "NOX";
            // 
            // FC_Tab
            // 
            this.FC_Tab.Controls.Add(this.label9);
            this.FC_Tab.Controls.Add(this.label10);
            this.FC_Tab.Controls.Add(this.panel_Aux_Fuel_Calc);
            this.FC_Tab.Controls.Add(this.panel_Main_Fuel_Calculations);
            this.FC_Tab.Location = new System.Drawing.Point(4, 22);
            this.FC_Tab.Name = "FC_Tab";
            this.FC_Tab.Padding = new System.Windows.Forms.Padding(3);
            this.FC_Tab.Size = new System.Drawing.Size(1195, 752);
            this.FC_Tab.TabIndex = 12;
            this.FC_Tab.Text = "Fuel Calculations";
            this.FC_Tab.UseVisualStyleBackColor = true;
            // 
            // panel_Aux_Fuel_Calc
            // 
            this.panel_Aux_Fuel_Calc.BackColor = System.Drawing.Color.Silver;
            this.panel_Aux_Fuel_Calc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label_Aux_Percent_3);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label229);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label_Aux_Gallon);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.updown_AUX_MMBTU_Out);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.updown_AUX_GALLON);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.updown_Aux_Engine_Efficiency);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label_Aux_mmbtu_In);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label_Aux_Engine_Efficiency);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.updown_AUX_MMBTU_In);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label_Aux_KHW_Out);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.updown_AUX_KW_HR_Out);
            this.panel_Aux_Fuel_Calc.Controls.Add(this.label_Aux_mmbtu_Out);
            this.panel_Aux_Fuel_Calc.Location = new System.Drawing.Point(2, 244);
            this.panel_Aux_Fuel_Calc.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Aux_Fuel_Calc.Name = "panel_Aux_Fuel_Calc";
            this.panel_Aux_Fuel_Calc.Size = new System.Drawing.Size(1191, 156);
            this.panel_Aux_Fuel_Calc.TabIndex = 321;
            // 
            // label_Aux_Percent_3
            // 
            this.label_Aux_Percent_3.AutoSize = true;
            this.label_Aux_Percent_3.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Percent_3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Percent_3.Location = new System.Drawing.Point(345, 25);
            this.label_Aux_Percent_3.Name = "label_Aux_Percent_3";
            this.label_Aux_Percent_3.Size = new System.Drawing.Size(23, 20);
            this.label_Aux_Percent_3.TabIndex = 303;
            this.label_Aux_Percent_3.Text = "%";
            // 
            // label229
            // 
            this.label229.AutoSize = true;
            this.label229.BackColor = System.Drawing.Color.Silver;
            this.label229.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label229.Location = new System.Drawing.Point(164, 4);
            this.label229.Name = "label229";
            this.label229.Size = new System.Drawing.Size(214, 18);
            this.label229.TabIndex = 200;
            this.label229.Text = "Baseline Fuel Consumption";
            // 
            // label_Aux_Gallon
            // 
            this.label_Aux_Gallon.AutoSize = true;
            this.label_Aux_Gallon.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Gallon.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Gallon.Location = new System.Drawing.Point(4, 124);
            this.label_Aux_Gallon.Name = "label_Aux_Gallon";
            this.label_Aux_Gallon.Size = new System.Drawing.Size(77, 20);
            this.label_Aux_Gallon.TabIndex = 199;
            this.label_Aux_Gallon.Text = "gallon/trip";
            // 
            // updown_AUX_MMBTU_Out
            // 
            this.updown_AUX_MMBTU_Out.BackColor = System.Drawing.SystemColors.Window;
            this.updown_AUX_MMBTU_Out.DecimalPlaces = 2;
            this.updown_AUX_MMBTU_Out.Enabled = false;
            this.updown_AUX_MMBTU_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_AUX_MMBTU_Out.Location = new System.Drawing.Point(163, 74);
            this.updown_AUX_MMBTU_Out.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_AUX_MMBTU_Out.Name = "updown_AUX_MMBTU_Out";
            this.updown_AUX_MMBTU_Out.ReadOnly = true;
            this.updown_AUX_MMBTU_Out.Size = new System.Drawing.Size(179, 21);
            this.updown_AUX_MMBTU_Out.TabIndex = 195;
            // 
            // updown_AUX_GALLON
            // 
            this.updown_AUX_GALLON.BackColor = System.Drawing.SystemColors.Window;
            this.updown_AUX_GALLON.DecimalPlaces = 2;
            this.updown_AUX_GALLON.Enabled = false;
            this.updown_AUX_GALLON.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_AUX_GALLON.Location = new System.Drawing.Point(163, 123);
            this.updown_AUX_GALLON.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_AUX_GALLON.Name = "updown_AUX_GALLON";
            this.updown_AUX_GALLON.ReadOnly = true;
            this.updown_AUX_GALLON.Size = new System.Drawing.Size(179, 21);
            this.updown_AUX_GALLON.TabIndex = 198;
            // 
            // updown_Aux_Engine_Efficiency
            // 
            this.updown_Aux_Engine_Efficiency.DecimalPlaces = 2;
            this.updown_Aux_Engine_Efficiency.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Aux_Engine_Efficiency.Location = new System.Drawing.Point(163, 23);
            this.updown_Aux_Engine_Efficiency.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Aux_Engine_Efficiency.Minimum = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.updown_Aux_Engine_Efficiency.Name = "updown_Aux_Engine_Efficiency";
            this.updown_Aux_Engine_Efficiency.Size = new System.Drawing.Size(179, 21);
            this.updown_Aux_Engine_Efficiency.TabIndex = 193;
            this.updown_Aux_Engine_Efficiency.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            // 
            // label_Aux_mmbtu_In
            // 
            this.label_Aux_mmbtu_In.AutoSize = true;
            this.label_Aux_mmbtu_In.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_mmbtu_In.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_mmbtu_In.Location = new System.Drawing.Point(4, 98);
            this.label_Aux_mmbtu_In.Name = "label_Aux_mmbtu_In";
            this.label_Aux_mmbtu_In.Size = new System.Drawing.Size(100, 20);
            this.label_Aux_mmbtu_In.TabIndex = 197;
            this.label_Aux_mmbtu_In.Text = "mmbtu in/trip";
            // 
            // label_Aux_Engine_Efficiency
            // 
            this.label_Aux_Engine_Efficiency.AutoSize = true;
            this.label_Aux_Engine_Efficiency.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_Engine_Efficiency.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Engine_Efficiency.Location = new System.Drawing.Point(4, 20);
            this.label_Aux_Engine_Efficiency.Name = "label_Aux_Engine_Efficiency";
            this.label_Aux_Engine_Efficiency.Size = new System.Drawing.Size(162, 20);
            this.label_Aux_Engine_Efficiency.TabIndex = 190;
            this.label_Aux_Engine_Efficiency.Text = "Aux Engine Efficiency";
            // 
            // updown_AUX_MMBTU_In
            // 
            this.updown_AUX_MMBTU_In.BackColor = System.Drawing.SystemColors.Window;
            this.updown_AUX_MMBTU_In.DecimalPlaces = 2;
            this.updown_AUX_MMBTU_In.Enabled = false;
            this.updown_AUX_MMBTU_In.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_AUX_MMBTU_In.Location = new System.Drawing.Point(163, 97);
            this.updown_AUX_MMBTU_In.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_AUX_MMBTU_In.Name = "updown_AUX_MMBTU_In";
            this.updown_AUX_MMBTU_In.ReadOnly = true;
            this.updown_AUX_MMBTU_In.Size = new System.Drawing.Size(179, 21);
            this.updown_AUX_MMBTU_In.TabIndex = 196;
            // 
            // label_Aux_KHW_Out
            // 
            this.label_Aux_KHW_Out.AutoSize = true;
            this.label_Aux_KHW_Out.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_KHW_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_KHW_Out.Location = new System.Drawing.Point(4, 46);
            this.label_Aux_KHW_Out.Name = "label_Aux_KHW_Out";
            this.label_Aux_KHW_Out.Size = new System.Drawing.Size(96, 20);
            this.label_Aux_KHW_Out.TabIndex = 191;
            this.label_Aux_KHW_Out.Text = "KWh out/trip";
            // 
            // updown_AUX_KW_HR_Out
            // 
            this.updown_AUX_KW_HR_Out.BackColor = System.Drawing.SystemColors.Window;
            this.updown_AUX_KW_HR_Out.DecimalPlaces = 2;
            this.updown_AUX_KW_HR_Out.Enabled = false;
            this.updown_AUX_KW_HR_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_AUX_KW_HR_Out.Location = new System.Drawing.Point(163, 49);
            this.updown_AUX_KW_HR_Out.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_AUX_KW_HR_Out.Name = "updown_AUX_KW_HR_Out";
            this.updown_AUX_KW_HR_Out.ReadOnly = true;
            this.updown_AUX_KW_HR_Out.Size = new System.Drawing.Size(179, 21);
            this.updown_AUX_KW_HR_Out.TabIndex = 194;
            // 
            // label_Aux_mmbtu_Out
            // 
            this.label_Aux_mmbtu_Out.AutoSize = true;
            this.label_Aux_mmbtu_Out.BackColor = System.Drawing.Color.Silver;
            this.label_Aux_mmbtu_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_mmbtu_Out.Location = new System.Drawing.Point(4, 72);
            this.label_Aux_mmbtu_Out.Name = "label_Aux_mmbtu_Out";
            this.label_Aux_mmbtu_Out.Size = new System.Drawing.Size(111, 20);
            this.label_Aux_mmbtu_Out.TabIndex = 192;
            this.label_Aux_mmbtu_Out.Text = "mmbtu out/trip";
            // 
            // panel_Main_Fuel_Calculations
            // 
            this.panel_Main_Fuel_Calculations.BackColor = System.Drawing.Color.Silver;
            this.panel_Main_Fuel_Calculations.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_Percent_11);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_Engine_Efficiency);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_KWH_Out);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_mmbtu_Out);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.updown_Engine_Efficiency);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_Baseline_Fuel_Consumption);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.updown_KW_HR_Out);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_Gallon);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.updown_MMBTU_Out);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.updown_GALLON);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.updown_MMBTU_In);
            this.panel_Main_Fuel_Calculations.Controls.Add(this.label_Main_mmbtu_In);
            this.panel_Main_Fuel_Calculations.Location = new System.Drawing.Point(2, 25);
            this.panel_Main_Fuel_Calculations.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Main_Fuel_Calculations.Name = "panel_Main_Fuel_Calculations";
            this.panel_Main_Fuel_Calculations.Size = new System.Drawing.Size(1191, 195);
            this.panel_Main_Fuel_Calculations.TabIndex = 271;
            // 
            // label_Main_Percent_11
            // 
            this.label_Main_Percent_11.AutoSize = true;
            this.label_Main_Percent_11.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Percent_11.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Percent_11.Location = new System.Drawing.Point(340, 36);
            this.label_Main_Percent_11.Name = "label_Main_Percent_11";
            this.label_Main_Percent_11.Size = new System.Drawing.Size(23, 20);
            this.label_Main_Percent_11.TabIndex = 303;
            this.label_Main_Percent_11.Text = "%";
            // 
            // label_Main_Engine_Efficiency
            // 
            this.label_Main_Engine_Efficiency.AutoSize = true;
            this.label_Main_Engine_Efficiency.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Engine_Efficiency.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Engine_Efficiency.Location = new System.Drawing.Point(5, 40);
            this.label_Main_Engine_Efficiency.Name = "label_Main_Engine_Efficiency";
            this.label_Main_Engine_Efficiency.Size = new System.Drawing.Size(131, 20);
            this.label_Main_Engine_Efficiency.TabIndex = 178;
            this.label_Main_Engine_Efficiency.Text = "Engine Efficiency";
            // 
            // label_Main_KWH_Out
            // 
            this.label_Main_KWH_Out.AutoSize = true;
            this.label_Main_KWH_Out.BackColor = System.Drawing.Color.Silver;
            this.label_Main_KWH_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_KWH_Out.Location = new System.Drawing.Point(5, 66);
            this.label_Main_KWH_Out.Name = "label_Main_KWH_Out";
            this.label_Main_KWH_Out.Size = new System.Drawing.Size(96, 20);
            this.label_Main_KWH_Out.TabIndex = 179;
            this.label_Main_KWH_Out.Text = "KWh out/trip";
            // 
            // label_Main_mmbtu_Out
            // 
            this.label_Main_mmbtu_Out.AutoSize = true;
            this.label_Main_mmbtu_Out.BackColor = System.Drawing.Color.Silver;
            this.label_Main_mmbtu_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_mmbtu_Out.Location = new System.Drawing.Point(5, 92);
            this.label_Main_mmbtu_Out.Name = "label_Main_mmbtu_Out";
            this.label_Main_mmbtu_Out.Size = new System.Drawing.Size(111, 20);
            this.label_Main_mmbtu_Out.TabIndex = 180;
            this.label_Main_mmbtu_Out.Text = "mmbtu out/trip";
            // 
            // updown_Engine_Efficiency
            // 
            this.updown_Engine_Efficiency.DecimalPlaces = 2;
            this.updown_Engine_Efficiency.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Engine_Efficiency.Location = new System.Drawing.Point(135, 36);
            this.updown_Engine_Efficiency.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Engine_Efficiency.Name = "updown_Engine_Efficiency";
            this.updown_Engine_Efficiency.Size = new System.Drawing.Size(207, 21);
            this.updown_Engine_Efficiency.TabIndex = 181;
            // 
            // label_Main_Baseline_Fuel_Consumption
            // 
            this.label_Main_Baseline_Fuel_Consumption.AutoSize = true;
            this.label_Main_Baseline_Fuel_Consumption.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Baseline_Fuel_Consumption.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Baseline_Fuel_Consumption.Location = new System.Drawing.Point(132, 19);
            this.label_Main_Baseline_Fuel_Consumption.Name = "label_Main_Baseline_Fuel_Consumption";
            this.label_Main_Baseline_Fuel_Consumption.Size = new System.Drawing.Size(214, 18);
            this.label_Main_Baseline_Fuel_Consumption.TabIndex = 188;
            this.label_Main_Baseline_Fuel_Consumption.Text = "Baseline Fuel Consumption";
            // 
            // updown_KW_HR_Out
            // 
            this.updown_KW_HR_Out.BackColor = System.Drawing.SystemColors.Window;
            this.updown_KW_HR_Out.DecimalPlaces = 2;
            this.updown_KW_HR_Out.Enabled = false;
            this.updown_KW_HR_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_KW_HR_Out.Location = new System.Drawing.Point(135, 62);
            this.updown_KW_HR_Out.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_KW_HR_Out.Name = "updown_KW_HR_Out";
            this.updown_KW_HR_Out.ReadOnly = true;
            this.updown_KW_HR_Out.Size = new System.Drawing.Size(207, 21);
            this.updown_KW_HR_Out.TabIndex = 182;
            // 
            // label_Main_Gallon
            // 
            this.label_Main_Gallon.AutoSize = true;
            this.label_Main_Gallon.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Gallon.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Gallon.Location = new System.Drawing.Point(5, 144);
            this.label_Main_Gallon.Name = "label_Main_Gallon";
            this.label_Main_Gallon.Size = new System.Drawing.Size(77, 20);
            this.label_Main_Gallon.TabIndex = 187;
            this.label_Main_Gallon.Text = "gallon/trip";
            // 
            // updown_MMBTU_Out
            // 
            this.updown_MMBTU_Out.BackColor = System.Drawing.SystemColors.Window;
            this.updown_MMBTU_Out.DecimalPlaces = 2;
            this.updown_MMBTU_Out.Enabled = false;
            this.updown_MMBTU_Out.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_MMBTU_Out.Location = new System.Drawing.Point(135, 88);
            this.updown_MMBTU_Out.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_MMBTU_Out.Name = "updown_MMBTU_Out";
            this.updown_MMBTU_Out.ReadOnly = true;
            this.updown_MMBTU_Out.Size = new System.Drawing.Size(207, 21);
            this.updown_MMBTU_Out.TabIndex = 183;
            // 
            // updown_GALLON
            // 
            this.updown_GALLON.BackColor = System.Drawing.SystemColors.Window;
            this.updown_GALLON.DecimalPlaces = 2;
            this.updown_GALLON.Enabled = false;
            this.updown_GALLON.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_GALLON.Location = new System.Drawing.Point(135, 138);
            this.updown_GALLON.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_GALLON.Name = "updown_GALLON";
            this.updown_GALLON.ReadOnly = true;
            this.updown_GALLON.Size = new System.Drawing.Size(207, 21);
            this.updown_GALLON.TabIndex = 186;
            // 
            // updown_MMBTU_In
            // 
            this.updown_MMBTU_In.BackColor = System.Drawing.SystemColors.Window;
            this.updown_MMBTU_In.DecimalPlaces = 2;
            this.updown_MMBTU_In.Enabled = false;
            this.updown_MMBTU_In.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_MMBTU_In.Location = new System.Drawing.Point(135, 112);
            this.updown_MMBTU_In.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_MMBTU_In.Name = "updown_MMBTU_In";
            this.updown_MMBTU_In.ReadOnly = true;
            this.updown_MMBTU_In.Size = new System.Drawing.Size(207, 21);
            this.updown_MMBTU_In.TabIndex = 184;
            // 
            // label_Main_mmbtu_In
            // 
            this.label_Main_mmbtu_In.AutoSize = true;
            this.label_Main_mmbtu_In.BackColor = System.Drawing.Color.Silver;
            this.label_Main_mmbtu_In.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_mmbtu_In.Location = new System.Drawing.Point(5, 118);
            this.label_Main_mmbtu_In.Name = "label_Main_mmbtu_In";
            this.label_Main_mmbtu_In.Size = new System.Drawing.Size(100, 20);
            this.label_Main_mmbtu_In.TabIndex = 185;
            this.label_Main_mmbtu_In.Text = "mmbtu in/trip";
            // 
            // Trip_Tab
            // 
            this.Trip_Tab.Controls.Add(this.label12);
            this.Trip_Tab.Controls.Add(this.panel_Main_Trip_Distance_Time);
            this.Trip_Tab.Location = new System.Drawing.Point(4, 22);
            this.Trip_Tab.Name = "Trip_Tab";
            this.Trip_Tab.Size = new System.Drawing.Size(1195, 752);
            this.Trip_Tab.TabIndex = 14;
            this.Trip_Tab.Text = "Trip";
            this.Trip_Tab.UseVisualStyleBackColor = true;
            // 
            // panel_Main_Trip_Distance_Time
            // 
            this.panel_Main_Trip_Distance_Time.BackColor = System.Drawing.Color.Silver;
            this.panel_Main_Trip_Distance_Time.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.label_Main_Total_Trip_Distance);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.label_Main_Time_Hours);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.label_Main_Time_Minutes);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.updown_Total_Trip_Distance);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.updown_Trip_Time_Hours);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.updown_Trip_Time_Minutes);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.label_Main_Time_Total);
            this.panel_Main_Trip_Distance_Time.Controls.Add(this.updown_Tot_Trip_Hours);
            this.panel_Main_Trip_Distance_Time.Location = new System.Drawing.Point(2, 22);
            this.panel_Main_Trip_Distance_Time.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Main_Trip_Distance_Time.Name = "panel_Main_Trip_Distance_Time";
            this.panel_Main_Trip_Distance_Time.Size = new System.Drawing.Size(1193, 129);
            this.panel_Main_Trip_Distance_Time.TabIndex = 268;
            // 
            // label_Main_Total_Trip_Distance
            // 
            this.label_Main_Total_Trip_Distance.AutoSize = true;
            this.label_Main_Total_Trip_Distance.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Total_Trip_Distance.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Total_Trip_Distance.Location = new System.Drawing.Point(3, 20);
            this.label_Main_Total_Trip_Distance.Name = "label_Main_Total_Trip_Distance";
            this.label_Main_Total_Trip_Distance.Size = new System.Drawing.Size(191, 20);
            this.label_Main_Total_Trip_Distance.TabIndex = 122;
            this.label_Main_Total_Trip_Distance.Text = "Total Trip Distance (miles)";
            // 
            // label_Main_Time_Hours
            // 
            this.label_Main_Time_Hours.AutoSize = true;
            this.label_Main_Time_Hours.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Time_Hours.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Time_Hours.Location = new System.Drawing.Point(3, 46);
            this.label_Main_Time_Hours.Name = "label_Main_Time_Hours";
            this.label_Main_Time_Hours.Size = new System.Drawing.Size(127, 20);
            this.label_Main_Time_Hours.TabIndex = 123;
            this.label_Main_Time_Hours.Text = "Trip Time (hours)";
            // 
            // label_Main_Time_Minutes
            // 
            this.label_Main_Time_Minutes.AutoSize = true;
            this.label_Main_Time_Minutes.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Time_Minutes.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Time_Minutes.Location = new System.Drawing.Point(3, 72);
            this.label_Main_Time_Minutes.Name = "label_Main_Time_Minutes";
            this.label_Main_Time_Minutes.Size = new System.Drawing.Size(143, 20);
            this.label_Main_Time_Minutes.TabIndex = 124;
            this.label_Main_Time_Minutes.Text = "Trip Time (minutes)";
            // 
            // updown_Total_Trip_Distance
            // 
            this.updown_Total_Trip_Distance.DecimalPlaces = 2;
            this.updown_Total_Trip_Distance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Total_Trip_Distance.Location = new System.Drawing.Point(196, 20);
            this.updown_Total_Trip_Distance.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Total_Trip_Distance.Name = "updown_Total_Trip_Distance";
            this.updown_Total_Trip_Distance.Size = new System.Drawing.Size(92, 21);
            this.updown_Total_Trip_Distance.TabIndex = 125;
            // 
            // updown_Trip_Time_Hours
            // 
            this.updown_Trip_Time_Hours.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Trip_Time_Hours.Location = new System.Drawing.Point(196, 46);
            this.updown_Trip_Time_Hours.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Trip_Time_Hours.Name = "updown_Trip_Time_Hours";
            this.updown_Trip_Time_Hours.Size = new System.Drawing.Size(92, 21);
            this.updown_Trip_Time_Hours.TabIndex = 126;
            // 
            // updown_Trip_Time_Minutes
            // 
            this.updown_Trip_Time_Minutes.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Trip_Time_Minutes.Location = new System.Drawing.Point(196, 71);
            this.updown_Trip_Time_Minutes.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.updown_Trip_Time_Minutes.Name = "updown_Trip_Time_Minutes";
            this.updown_Trip_Time_Minutes.Size = new System.Drawing.Size(92, 21);
            this.updown_Trip_Time_Minutes.TabIndex = 127;
            // 
            // label_Main_Time_Total
            // 
            this.label_Main_Time_Total.AutoSize = true;
            this.label_Main_Time_Total.BackColor = System.Drawing.Color.Silver;
            this.label_Main_Time_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Time_Total.Location = new System.Drawing.Point(3, 95);
            this.label_Main_Time_Total.Name = "label_Main_Time_Total";
            this.label_Main_Time_Total.Size = new System.Drawing.Size(166, 20);
            this.label_Main_Time_Total.TabIndex = 128;
            this.label_Main_Time_Total.Text = "Total Trip Time (hours)";
            // 
            // updown_Tot_Trip_Hours
            // 
            this.updown_Tot_Trip_Hours.BackColor = System.Drawing.SystemColors.Window;
            this.updown_Tot_Trip_Hours.DecimalPlaces = 2;
            this.updown_Tot_Trip_Hours.Enabled = false;
            this.updown_Tot_Trip_Hours.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_Tot_Trip_Hours.Location = new System.Drawing.Point(196, 95);
            this.updown_Tot_Trip_Hours.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_Tot_Trip_Hours.Name = "updown_Tot_Trip_Hours";
            this.updown_Tot_Trip_Hours.ReadOnly = true;
            this.updown_Tot_Trip_Hours.Size = new System.Drawing.Size(92, 21);
            this.updown_Tot_Trip_Hours.TabIndex = 129;
            // 
            // GWP_Tab
            // 
            this.GWP_Tab.Controls.Add(this.label13);
            this.GWP_Tab.Controls.Add(this.panel_Main_GWPs);
            this.GWP_Tab.Location = new System.Drawing.Point(4, 22);
            this.GWP_Tab.Name = "GWP_Tab";
            this.GWP_Tab.Size = new System.Drawing.Size(1195, 752);
            this.GWP_Tab.TabIndex = 15;
            this.GWP_Tab.Text = "GWP";
            this.GWP_Tab.UseVisualStyleBackColor = true;
            // 
            // panel_Main_GWPs
            // 
            this.panel_Main_GWPs.BackColor = System.Drawing.Color.Silver;
            this.panel_Main_GWPs.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Main_GWPs.Controls.Add(this.numericUpDown1);
            this.panel_Main_GWPs.Controls.Add(this.label1);
            this.panel_Main_GWPs.Controls.Add(this.updown_NO2_GWP);
            this.panel_Main_GWPs.Controls.Add(this.label_Main_GWP_NOX);
            this.panel_Main_GWPs.Controls.Add(this.updown_CO_GWP);
            this.panel_Main_GWPs.Controls.Add(this.label_Main_GWP_CO);
            this.panel_Main_GWPs.Controls.Add(this.updown_VOC_GWP);
            this.panel_Main_GWPs.Controls.Add(this.label_Main_GWP_VOC);
            this.panel_Main_GWPs.Controls.Add(this.updown_N2O_GWP);
            this.panel_Main_GWPs.Controls.Add(this.label_Main_GWP_N2O);
            this.panel_Main_GWPs.Controls.Add(this.updown_CH4_GWP);
            this.panel_Main_GWPs.Controls.Add(this.label_Main_GWP_CH4);
            this.panel_Main_GWPs.Controls.Add(this.updown_CO2_GWP);
            this.panel_Main_GWPs.Controls.Add(this.label_Main_GWP_CO2);
            this.panel_Main_GWPs.Location = new System.Drawing.Point(0, 22);
            this.panel_Main_GWPs.Margin = new System.Windows.Forms.Padding(2);
            this.panel_Main_GWPs.Name = "panel_Main_GWPs";
            this.panel_Main_GWPs.Size = new System.Drawing.Size(1195, 195);
            this.panel_Main_GWPs.TabIndex = 299;
            // 
            // numericUpDown1
            // 
            this.numericUpDown1.Location = new System.Drawing.Point(77, 6);
            this.numericUpDown1.Name = "numericUpDown1";
            this.numericUpDown1.Size = new System.Drawing.Size(97, 20);
            this.numericUpDown1.TabIndex = 298;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.Silver;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(0, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(51, 18);
            this.label1.TabIndex = 297;
            this.label1.Text = "Years";
            // 
            // updown_NO2_GWP
            // 
            this.updown_NO2_GWP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_NO2_GWP.DecimalPlaces = 2;
            this.updown_NO2_GWP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_NO2_GWP.Location = new System.Drawing.Point(77, 163);
            this.updown_NO2_GWP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_NO2_GWP.Name = "updown_NO2_GWP";
            this.updown_NO2_GWP.Size = new System.Drawing.Size(97, 21);
            this.updown_NO2_GWP.TabIndex = 296;
            // 
            // label_Main_GWP_NOX
            // 
            this.label_Main_GWP_NOX.AutoSize = true;
            this.label_Main_GWP_NOX.BackColor = System.Drawing.Color.Silver;
            this.label_Main_GWP_NOX.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_GWP_NOX.Location = new System.Drawing.Point(0, 168);
            this.label_Main_GWP_NOX.Name = "label_Main_GWP_NOX";
            this.label_Main_GWP_NOX.Size = new System.Drawing.Size(44, 18);
            this.label_Main_GWP_NOX.TabIndex = 295;
            this.label_Main_GWP_NOX.Text = "NOX";
            // 
            // updown_CO_GWP
            // 
            this.updown_CO_GWP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_CO_GWP.DecimalPlaces = 2;
            this.updown_CO_GWP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_CO_GWP.Location = new System.Drawing.Point(77, 137);
            this.updown_CO_GWP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_CO_GWP.Name = "updown_CO_GWP";
            this.updown_CO_GWP.Size = new System.Drawing.Size(97, 21);
            this.updown_CO_GWP.TabIndex = 294;
            // 
            // label_Main_GWP_CO
            // 
            this.label_Main_GWP_CO.AutoSize = true;
            this.label_Main_GWP_CO.BackColor = System.Drawing.Color.Silver;
            this.label_Main_GWP_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_GWP_CO.Location = new System.Drawing.Point(0, 142);
            this.label_Main_GWP_CO.Name = "label_Main_GWP_CO";
            this.label_Main_GWP_CO.Size = new System.Drawing.Size(33, 18);
            this.label_Main_GWP_CO.TabIndex = 293;
            this.label_Main_GWP_CO.Text = "CO";
            // 
            // updown_VOC_GWP
            // 
            this.updown_VOC_GWP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_VOC_GWP.DecimalPlaces = 2;
            this.updown_VOC_GWP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_VOC_GWP.Location = new System.Drawing.Point(77, 110);
            this.updown_VOC_GWP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_VOC_GWP.Name = "updown_VOC_GWP";
            this.updown_VOC_GWP.Size = new System.Drawing.Size(97, 21);
            this.updown_VOC_GWP.TabIndex = 292;
            // 
            // label_Main_GWP_VOC
            // 
            this.label_Main_GWP_VOC.AutoSize = true;
            this.label_Main_GWP_VOC.BackColor = System.Drawing.Color.Silver;
            this.label_Main_GWP_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_GWP_VOC.Location = new System.Drawing.Point(0, 115);
            this.label_Main_GWP_VOC.Name = "label_Main_GWP_VOC";
            this.label_Main_GWP_VOC.Size = new System.Drawing.Size(43, 18);
            this.label_Main_GWP_VOC.TabIndex = 291;
            this.label_Main_GWP_VOC.Text = "VOC";
            // 
            // updown_N2O_GWP
            // 
            this.updown_N2O_GWP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_N2O_GWP.DecimalPlaces = 2;
            this.updown_N2O_GWP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_N2O_GWP.Location = new System.Drawing.Point(77, 84);
            this.updown_N2O_GWP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_N2O_GWP.Name = "updown_N2O_GWP";
            this.updown_N2O_GWP.Size = new System.Drawing.Size(97, 21);
            this.updown_N2O_GWP.TabIndex = 290;
            // 
            // label_Main_GWP_N2O
            // 
            this.label_Main_GWP_N2O.AutoSize = true;
            this.label_Main_GWP_N2O.BackColor = System.Drawing.Color.Silver;
            this.label_Main_GWP_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_GWP_N2O.Location = new System.Drawing.Point(0, 88);
            this.label_Main_GWP_N2O.Name = "label_Main_GWP_N2O";
            this.label_Main_GWP_N2O.Size = new System.Drawing.Size(42, 18);
            this.label_Main_GWP_N2O.TabIndex = 289;
            this.label_Main_GWP_N2O.Text = "N2O";
            // 
            // updown_CH4_GWP
            // 
            this.updown_CH4_GWP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_CH4_GWP.DecimalPlaces = 2;
            this.updown_CH4_GWP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_CH4_GWP.Location = new System.Drawing.Point(77, 57);
            this.updown_CH4_GWP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_CH4_GWP.Name = "updown_CH4_GWP";
            this.updown_CH4_GWP.Size = new System.Drawing.Size(97, 21);
            this.updown_CH4_GWP.TabIndex = 288;
            // 
            // label_Main_GWP_CH4
            // 
            this.label_Main_GWP_CH4.AutoSize = true;
            this.label_Main_GWP_CH4.BackColor = System.Drawing.Color.Silver;
            this.label_Main_GWP_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_GWP_CH4.Location = new System.Drawing.Point(0, 62);
            this.label_Main_GWP_CH4.Name = "label_Main_GWP_CH4";
            this.label_Main_GWP_CH4.Size = new System.Drawing.Size(41, 18);
            this.label_Main_GWP_CH4.TabIndex = 287;
            this.label_Main_GWP_CH4.Text = "CH4";
            // 
            // updown_CO2_GWP
            // 
            this.updown_CO2_GWP.BackColor = System.Drawing.SystemColors.Window;
            this.updown_CO2_GWP.DecimalPlaces = 2;
            this.updown_CO2_GWP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.updown_CO2_GWP.Location = new System.Drawing.Point(77, 31);
            this.updown_CO2_GWP.Maximum = new decimal(new int[] {
            1241513984,
            370409800,
            542101,
            0});
            this.updown_CO2_GWP.Name = "updown_CO2_GWP";
            this.updown_CO2_GWP.Size = new System.Drawing.Size(97, 21);
            this.updown_CO2_GWP.TabIndex = 285;
            // 
            // label_Main_GWP_CO2
            // 
            this.label_Main_GWP_CO2.AutoSize = true;
            this.label_Main_GWP_CO2.BackColor = System.Drawing.Color.Silver;
            this.label_Main_GWP_CO2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_GWP_CO2.Location = new System.Drawing.Point(0, 36);
            this.label_Main_GWP_CO2.Name = "label_Main_GWP_CO2";
            this.label_Main_GWP_CO2.Size = new System.Drawing.Size(42, 18);
            this.label_Main_GWP_CO2.TabIndex = 265;
            this.label_Main_GWP_CO2.Text = "CO2";
            // 
            // FS_Tab
            // 
            this.FS_Tab.Controls.Add(this.label14);
            this.FS_Tab.Controls.Add(this.Panel_FuelSelection);
            this.FS_Tab.Location = new System.Drawing.Point(4, 22);
            this.FS_Tab.Name = "FS_Tab";
            this.FS_Tab.Size = new System.Drawing.Size(1195, 752);
            this.FS_Tab.TabIndex = 16;
            this.FS_Tab.Text = "Fuel Selection";
            this.FS_Tab.UseVisualStyleBackColor = true;
            // 
            // Panel_FuelSelection
            // 
            this.Panel_FuelSelection.BackColor = System.Drawing.Color.Silver;
            this.Panel_FuelSelection.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel_FuelSelection.Controls.Add(this.Aux_Engine_Fule);
            this.Panel_FuelSelection.Controls.Add(this.tree_Aux_Fuel_Pathways);
            this.Panel_FuelSelection.Controls.Add(this.label_main_engine_fuel);
            this.Panel_FuelSelection.Controls.Add(this.tree_Main_Fuel_Pathways);
            this.Panel_FuelSelection.Location = new System.Drawing.Point(0, 23);
            this.Panel_FuelSelection.Name = "Panel_FuelSelection";
            this.Panel_FuelSelection.Size = new System.Drawing.Size(1200, 360);
            this.Panel_FuelSelection.TabIndex = 382;
            this.Panel_FuelSelection.Validated += new System.EventHandler(this.Panel_FuelSelection_Validated);
            // 
            // Aux_Engine_Fule
            // 
            this.Aux_Engine_Fule.AutoSize = true;
            this.Aux_Engine_Fule.BackColor = System.Drawing.Color.Silver;
            this.Aux_Engine_Fule.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Aux_Engine_Fule.Location = new System.Drawing.Point(624, 8);
            this.Aux_Engine_Fule.Name = "Aux_Engine_Fule";
            this.Aux_Engine_Fule.Size = new System.Drawing.Size(91, 18);
            this.Aux_Engine_Fule.TabIndex = 203;
            this.Aux_Engine_Fule.Text = "Aux Engine";
            // 
            // tree_Aux_Fuel_Pathways
            // 
            this.tree_Aux_Fuel_Pathways.BackColor = System.Drawing.Color.Silver;
            this.tree_Aux_Fuel_Pathways.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tree_Aux_Fuel_Pathways.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tree_Aux_Fuel_Pathways.Indent = 10;
            this.tree_Aux_Fuel_Pathways.Location = new System.Drawing.Point(627, 27);
            this.tree_Aux_Fuel_Pathways.Margin = new System.Windows.Forms.Padding(2);
            this.tree_Aux_Fuel_Pathways.Name = "tree_Aux_Fuel_Pathways";
            treeNode1.Name = "Aux_CD_Node";
            treeNode1.Text = "Conventional Diesel";
            treeNode2.Name = "Aux_RO_Node";
            treeNode2.Text = "Residual Oil";
            treeNode3.Name = "Aux_LSD_Node";
            treeNode3.Text = "Low Sulfur Diesel";
            treeNode4.Name = "Aux_NG_Node";
            treeNode4.Text = "Natural Gas";
            treeNode5.Name = "Aux_BD_Node";
            treeNode5.Text = "Biodiesel";
            treeNode6.Name = "Aux_FTD_Node";
            treeNode6.Text = "Fischer Tropsch Diesel";
            this.tree_Aux_Fuel_Pathways.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode1,
            treeNode2,
            treeNode3,
            treeNode4,
            treeNode5,
            treeNode6});
            this.tree_Aux_Fuel_Pathways.Size = new System.Drawing.Size(549, 319);
            this.tree_Aux_Fuel_Pathways.TabIndex = 202;
            this.tree_Aux_Fuel_Pathways.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView2_AfterSelect);
            // 
            // label_main_engine_fuel
            // 
            this.label_main_engine_fuel.AutoSize = true;
            this.label_main_engine_fuel.BackColor = System.Drawing.Color.Silver;
            this.label_main_engine_fuel.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_main_engine_fuel.Location = new System.Drawing.Point(9, 8);
            this.label_main_engine_fuel.Name = "label_main_engine_fuel";
            this.label_main_engine_fuel.Size = new System.Drawing.Size(100, 18);
            this.label_main_engine_fuel.TabIndex = 201;
            this.label_main_engine_fuel.Text = "Main Engine";
            // 
            // tree_Main_Fuel_Pathways
            // 
            this.tree_Main_Fuel_Pathways.BackColor = System.Drawing.Color.Silver;
            this.tree_Main_Fuel_Pathways.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tree_Main_Fuel_Pathways.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tree_Main_Fuel_Pathways.Indent = 10;
            this.tree_Main_Fuel_Pathways.Location = new System.Drawing.Point(1, 27);
            this.tree_Main_Fuel_Pathways.Margin = new System.Windows.Forms.Padding(2);
            this.tree_Main_Fuel_Pathways.Name = "tree_Main_Fuel_Pathways";
            treeNode7.Name = "Main_CD_Node";
            treeNode7.Text = "Conventional Diesel";
            treeNode8.Name = "Main_RO_Node";
            treeNode8.Text = "Residual Oil";
            treeNode9.Name = "Main_LSD_Node";
            treeNode9.Text = "Low Sulfur Diesel";
            treeNode10.Name = "Main_NG_Node";
            treeNode10.Text = "Natural Gas";
            treeNode11.Name = "Main_BD_Node";
            treeNode11.Text = "Biodiesel";
            treeNode12.Name = "Main_FTD_Node";
            treeNode12.Text = "Fischer Tropsch Diesel";
            this.tree_Main_Fuel_Pathways.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode7,
            treeNode8,
            treeNode9,
            treeNode10,
            treeNode11,
            treeNode12});
            this.tree_Main_Fuel_Pathways.Size = new System.Drawing.Size(562, 319);
            this.tree_Main_Fuel_Pathways.TabIndex = 1;
            this.tree_Main_Fuel_Pathways.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
            // 
            // ResSheet_tab
            // 
            this.ResSheet_tab.Controls.Add(this.Panel_results_spread);
            this.ResSheet_tab.Location = new System.Drawing.Point(4, 22);
            this.ResSheet_tab.Name = "ResSheet_tab";
            this.ResSheet_tab.Size = new System.Drawing.Size(1195, 752);
            this.ResSheet_tab.TabIndex = 17;
            this.ResSheet_tab.Text = "Results: Sheet";
            this.ResSheet_tab.UseVisualStyleBackColor = true;
            // 
            // Panel_results_spread
            // 
            this.Panel_results_spread.BackColor = System.Drawing.Color.Silver;
            this.Panel_results_spread.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel_results_spread.Controls.Add(this.panel_Table);
            this.Panel_results_spread.Controls.Add(this.panel_Header);
            this.Panel_results_spread.Location = new System.Drawing.Point(0, 0);
            this.Panel_results_spread.Name = "Panel_results_spread";
            this.Panel_results_spread.Size = new System.Drawing.Size(1200, 690);
            this.Panel_results_spread.TabIndex = 384;
            // 
            // panel_Table
            // 
            this.panel_Table.BackColor = System.Drawing.SystemColors.ControlLight;
            this.panel_Table.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Table.Controls.Add(this.label_Aux_VO);
            this.panel_Table.Controls.Add(this.label_Aux_WTP);
            this.panel_Table.Controls.Add(this.label_Total);
            this.panel_Table.Controls.Add(this.label_Main_VO);
            this.panel_Table.Controls.Add(this.label_Main_WTP);
            this.panel_Table.Controls.Add(this.label_Results_Shown_Per_Trip);
            this.panel_Table.Controls.Add(this.table_Results);
            this.panel_Table.Location = new System.Drawing.Point(1, 68);
            this.panel_Table.Name = "panel_Table";
            this.panel_Table.Size = new System.Drawing.Size(1196, 593);
            this.panel_Table.TabIndex = 6;
            // 
            // label_Aux_VO
            // 
            this.label_Aux_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_VO.AutoSize = true;
            this.label_Aux_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VO.Location = new System.Drawing.Point(738, 5);
            this.label_Aux_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_VO.Name = "label_Aux_VO";
            this.label_Aux_VO.Size = new System.Drawing.Size(202, 18);
            this.label_Aux_VO.TabIndex = 23;
            this.label_Aux_VO.Text = "Aux Engine: Vessel Operation";
            this.label_Aux_VO.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Aux_WTP
            // 
            this.label_Aux_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_WTP.AutoSize = true;
            this.label_Aux_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_WTP.Location = new System.Drawing.Point(552, 5);
            this.label_Aux_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_WTP.Name = "label_Aux_WTP";
            this.label_Aux_WTP.Size = new System.Drawing.Size(178, 18);
            this.label_Aux_WTP.TabIndex = 22;
            this.label_Aux_WTP.Text = "Aux Engine: Well to Pump";
            this.label_Aux_WTP.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Total
            // 
            this.label_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Total.AutoSize = true;
            this.label_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Total.Location = new System.Drawing.Point(968, 5);
            this.label_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Total.Name = "label_Total";
            this.label_Total.Size = new System.Drawing.Size(41, 18);
            this.label_Total.TabIndex = 21;
            this.label_Total.Text = "Total";
            this.label_Total.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_VO
            // 
            this.label_Main_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_VO.AutoSize = true;
            this.label_Main_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_VO.Location = new System.Drawing.Point(328, 5);
            this.label_Main_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_VO.Name = "label_Main_VO";
            this.label_Main_VO.Size = new System.Drawing.Size(210, 18);
            this.label_Main_VO.TabIndex = 20;
            this.label_Main_VO.Text = "Main Engine: Vessel Operation";
            this.label_Main_VO.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_WTP
            // 
            this.label_Main_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_WTP.AutoSize = true;
            this.label_Main_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_WTP.Location = new System.Drawing.Point(140, 5);
            this.label_Main_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_WTP.Name = "label_Main_WTP";
            this.label_Main_WTP.Size = new System.Drawing.Size(186, 18);
            this.label_Main_WTP.TabIndex = 19;
            this.label_Main_WTP.Text = "Main Engine: Well to Pump";
            this.label_Main_WTP.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Results_Shown_Per_Trip
            // 
            this.label_Results_Shown_Per_Trip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Results_Shown_Per_Trip.AutoSize = true;
            this.label_Results_Shown_Per_Trip.BackColor = System.Drawing.Color.Transparent;
            this.label_Results_Shown_Per_Trip.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Results_Shown_Per_Trip.Location = new System.Drawing.Point(4, -4);
            this.label_Results_Shown_Per_Trip.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Results_Shown_Per_Trip.Name = "label_Results_Shown_Per_Trip";
            this.label_Results_Shown_Per_Trip.Size = new System.Drawing.Size(108, 36);
            this.label_Results_Shown_Per_Trip.TabIndex = 18;
            this.label_Results_Shown_Per_Trip.Text = "Results Shown\r\nPer Trip";
            this.label_Results_Shown_Per_Trip.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // table_Results
            // 
            this.table_Results.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
            this.table_Results.ColumnCount = 6;
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.40506F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 57.59494F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 223F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 185F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 229F));
            this.table_Results.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 288F));
            this.table_Results.Controls.Add(this.label_Aux_TE_VO, 4, 0);
            this.table_Results.Controls.Add(this.label_Aux_N2O_WTP, 3, 9);
            this.table_Results.Controls.Add(this.label_Aux_TE_WTP, 3, 0);
            this.table_Results.Controls.Add(this.label_Main_TE_VO, 2, 0);
            this.table_Results.Controls.Add(this.label_Total_Energy, 0, 0);
            this.table_Results.Controls.Add(this.label_VOC, 0, 1);
            this.table_Results.Controls.Add(this.label_CO, 0, 2);
            this.table_Results.Controls.Add(this.label_NOx, 0, 3);
            this.table_Results.Controls.Add(this.label_PM10, 0, 4);
            this.table_Results.Controls.Add(this.label_PM25, 0, 5);
            this.table_Results.Controls.Add(this.label_SOx, 0, 6);
            this.table_Results.Controls.Add(this.label_CH4, 0, 7);
            this.table_Results.Controls.Add(this.label_CO2, 0, 8);
            this.table_Results.Controls.Add(this.label_N2O, 0, 9);
            this.table_Results.Controls.Add(this.label_Main_TE_WTP, 1, 0);
            this.table_Results.Controls.Add(this.label_Main_VOC_WTP, 1, 1);
            this.table_Results.Controls.Add(this.label_Main_CO_WTP, 1, 2);
            this.table_Results.Controls.Add(this.label_Main_NOx_WTP, 1, 3);
            this.table_Results.Controls.Add(this.label_Main_PM10_WTP, 1, 4);
            this.table_Results.Controls.Add(this.label_Main_PM25_WTP, 1, 5);
            this.table_Results.Controls.Add(this.label_Main_SOx_WTP, 1, 6);
            this.table_Results.Controls.Add(this.label_Main_CH4_WTP, 1, 7);
            this.table_Results.Controls.Add(this.label_Main_CO2_WTP, 1, 8);
            this.table_Results.Controls.Add(this.label_Main_N2O_WTP, 1, 9);
            this.table_Results.Controls.Add(this.label_Main_N2O_VO, 2, 9);
            this.table_Results.Controls.Add(this.label_Main_CH4_VO, 2, 7);
            this.table_Results.Controls.Add(this.label_Main_PM25_VO, 2, 5);
            this.table_Results.Controls.Add(this.label_Main_NOx_VO, 2, 3);
            this.table_Results.Controls.Add(this.label_Main_VOC_VO, 2, 1);
            this.table_Results.Controls.Add(this.label_Main_CO_VO, 2, 2);
            this.table_Results.Controls.Add(this.label_Main_PM10_VO, 2, 4);
            this.table_Results.Controls.Add(this.label_Main_SOx_VO, 2, 6);
            this.table_Results.Controls.Add(this.label_Main_CO2_VO, 2, 8);
            this.table_Results.Controls.Add(this.label_TE_Total, 5, 0);
            this.table_Results.Controls.Add(this.label_VOC_Total, 5, 1);
            this.table_Results.Controls.Add(this.label_CO_Total, 5, 2);
            this.table_Results.Controls.Add(this.label_NOx_Total, 5, 3);
            this.table_Results.Controls.Add(this.label_PM10_Total, 5, 4);
            this.table_Results.Controls.Add(this.label_PM25_Total, 5, 5);
            this.table_Results.Controls.Add(this.label_SOx_Total, 5, 6);
            this.table_Results.Controls.Add(this.label_CH4_Total, 5, 7);
            this.table_Results.Controls.Add(this.label_CO2_Total, 5, 8);
            this.table_Results.Controls.Add(this.label_N2O_Total, 5, 9);
            this.table_Results.Controls.Add(this.label_Aux_VOC_WTP, 3, 1);
            this.table_Results.Controls.Add(this.label_Aux_CO_WTP, 3, 2);
            this.table_Results.Controls.Add(this.label_Aux_NOx_WTP, 3, 3);
            this.table_Results.Controls.Add(this.label_Aux_PM10_WTP, 3, 4);
            this.table_Results.Controls.Add(this.label_Aux_PM25_WTP, 3, 5);
            this.table_Results.Controls.Add(this.label_Aux_SOx_WTP, 3, 6);
            this.table_Results.Controls.Add(this.label_Aux_CH4_WTP, 3, 7);
            this.table_Results.Controls.Add(this.label_Aux_CO2_WTP, 3, 8);
            this.table_Results.Controls.Add(this.label_Aux_VOC_VO, 4, 1);
            this.table_Results.Controls.Add(this.label_Aux_CO_VO, 4, 2);
            this.table_Results.Controls.Add(this.label_Aux_NOx_VO, 4, 3);
            this.table_Results.Controls.Add(this.label_Aux_PM10_VO, 4, 4);
            this.table_Results.Controls.Add(this.label_Aux_PM25_VO, 4, 5);
            this.table_Results.Controls.Add(this.label_Aux_SOx_VO, 4, 6);
            this.table_Results.Controls.Add(this.label_Aux_CH4_VO, 4, 7);
            this.table_Results.Controls.Add(this.label_Aux_CO2_VO, 4, 8);
            this.table_Results.Controls.Add(this.label_Aux_N2O_VO, 4, 9);
            this.table_Results.Controls.Add(this.Adj_GHG_N20, 5, 12);
            this.table_Results.Controls.Add(this.Adj_GHG_CH4, 5, 11);
            this.table_Results.Controls.Add(this.Adj_GHG_CO2, 5, 10);
            this.table_Results.Controls.Add(this.Adj_GHG_CO2_Label, 4, 10);
            this.table_Results.Controls.Add(this.Adj_GHG_CH4_Label, 4, 11);
            this.table_Results.Controls.Add(this.N20_Adj_Label, 4, 12);
            this.table_Results.Location = new System.Drawing.Point(2, 34);
            this.table_Results.Margin = new System.Windows.Forms.Padding(2);
            this.table_Results.Name = "table_Results";
            this.table_Results.RowCount = 13;
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30.66667F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 34F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 34F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 18F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 19F));
            this.table_Results.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 16F));
            this.table_Results.Size = new System.Drawing.Size(1196, 324);
            this.table_Results.TabIndex = 0;
            // 
            // label_Aux_TE_VO
            // 
            this.label_Aux_TE_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_TE_VO.AutoSize = true;
            this.label_Aux_TE_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_TE_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_TE_VO.Location = new System.Drawing.Point(678, 1);
            this.label_Aux_TE_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_TE_VO.Name = "label_Aux_TE_VO";
            this.label_Aux_TE_VO.Size = new System.Drawing.Size(81, 1);
            this.label_Aux_TE_VO.TabIndex = 83;
            this.label_Aux_TE_VO.Text = "Aux_TE_VO";
            // 
            // label_Aux_N2O_WTP
            // 
            this.label_Aux_N2O_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_N2O_WTP.AutoSize = true;
            this.label_Aux_N2O_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_N2O_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_N2O_WTP.Location = new System.Drawing.Point(492, 224);
            this.label_Aux_N2O_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_N2O_WTP.Name = "label_Aux_N2O_WTP";
            this.label_Aux_N2O_WTP.Size = new System.Drawing.Size(102, 16);
            this.label_Aux_N2O_WTP.TabIndex = 82;
            this.label_Aux_N2O_WTP.Text = "Aux_N2O_WTP";
            // 
            // label_Aux_TE_WTP
            // 
            this.label_Aux_TE_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_TE_WTP.AutoSize = true;
            this.label_Aux_TE_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_TE_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_TE_WTP.Location = new System.Drawing.Point(492, 1);
            this.label_Aux_TE_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_TE_WTP.Name = "label_Aux_TE_WTP";
            this.label_Aux_TE_WTP.Size = new System.Drawing.Size(93, 1);
            this.label_Aux_TE_WTP.TabIndex = 19;
            this.label_Aux_TE_WTP.Text = "Aux_TE_WTP";
            // 
            // label_Main_TE_VO
            // 
            this.label_Main_TE_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_TE_VO.AutoSize = true;
            this.label_Main_TE_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_TE_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_TE_VO.Location = new System.Drawing.Point(268, 1);
            this.label_Main_TE_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_TE_VO.Name = "label_Main_TE_VO";
            this.label_Main_TE_VO.Size = new System.Drawing.Size(88, 1);
            this.label_Main_TE_VO.TabIndex = 36;
            this.label_Main_TE_VO.Text = "Main_TE_VO";
            // 
            // label_Total_Energy
            // 
            this.label_Total_Energy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Total_Energy.AutoSize = true;
            this.label_Total_Energy.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Total_Energy.Location = new System.Drawing.Point(3, 1);
            this.label_Total_Energy.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Total_Energy.Name = "label_Total_Energy";
            this.label_Total_Energy.Size = new System.Drawing.Size(91, 1);
            this.label_Total_Energy.TabIndex = 0;
            this.label_Total_Energy.Text = "Total Energy";
            this.label_Total_Energy.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_VOC
            // 
            this.label_VOC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_VOC.AutoSize = true;
            this.label_VOC.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_VOC.Location = new System.Drawing.Point(3, -27);
            this.label_VOC.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_VOC.Name = "label_VOC";
            this.label_VOC.Size = new System.Drawing.Size(40, 18);
            this.label_VOC.TabIndex = 6;
            this.label_VOC.Text = "VOC";
            this.label_VOC.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_CO
            // 
            this.label_CO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO.AutoSize = true;
            this.label_CO.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO.Location = new System.Drawing.Point(3, 8);
            this.label_CO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO.Name = "label_CO";
            this.label_CO.Size = new System.Drawing.Size(31, 18);
            this.label_CO.TabIndex = 7;
            this.label_CO.Text = "CO";
            this.label_CO.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_NOx
            // 
            this.label_NOx.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_NOx.AutoSize = true;
            this.label_NOx.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_NOx.Location = new System.Drawing.Point(3, 43);
            this.label_NOx.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_NOx.Name = "label_NOx";
            this.label_NOx.Size = new System.Drawing.Size(38, 18);
            this.label_NOx.TabIndex = 8;
            this.label_NOx.Text = "NOx";
            this.label_NOx.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_PM10
            // 
            this.label_PM10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM10.AutoSize = true;
            this.label_PM10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM10.Location = new System.Drawing.Point(3, 75);
            this.label_PM10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM10.Name = "label_PM10";
            this.label_PM10.Size = new System.Drawing.Size(47, 18);
            this.label_PM10.TabIndex = 9;
            this.label_PM10.Text = "PM10";
            this.label_PM10.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_PM25
            // 
            this.label_PM25.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM25.AutoSize = true;
            this.label_PM25.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM25.Location = new System.Drawing.Point(3, 108);
            this.label_PM25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM25.Name = "label_PM25";
            this.label_PM25.Size = new System.Drawing.Size(51, 18);
            this.label_PM25.TabIndex = 10;
            this.label_PM25.Text = "PM2.5";
            this.label_PM25.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_SOx
            // 
            this.label_SOx.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_SOx.AutoSize = true;
            this.label_SOx.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_SOx.Location = new System.Drawing.Point(3, 137);
            this.label_SOx.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_SOx.Name = "label_SOx";
            this.label_SOx.Size = new System.Drawing.Size(37, 18);
            this.label_SOx.TabIndex = 11;
            this.label_SOx.Text = "SOx";
            this.label_SOx.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_CH4
            // 
            this.label_CH4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CH4.AutoSize = true;
            this.label_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CH4.Location = new System.Drawing.Point(3, 166);
            this.label_CH4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CH4.Name = "label_CH4";
            this.label_CH4.Size = new System.Drawing.Size(38, 18);
            this.label_CH4.TabIndex = 12;
            this.label_CH4.Text = "CH4";
            this.label_CH4.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_CO2
            // 
            this.label_CO2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO2.AutoSize = true;
            this.label_CO2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO2.Location = new System.Drawing.Point(3, 194);
            this.label_CO2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO2.Name = "label_CO2";
            this.label_CO2.Size = new System.Drawing.Size(39, 18);
            this.label_CO2.TabIndex = 13;
            this.label_CO2.Text = "CO2";
            this.label_CO2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_N2O
            // 
            this.label_N2O.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_N2O.AutoSize = true;
            this.label_N2O.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_N2O.Location = new System.Drawing.Point(3, 222);
            this.label_N2O.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_N2O.Name = "label_N2O";
            this.label_N2O.Size = new System.Drawing.Size(39, 18);
            this.label_N2O.TabIndex = 14;
            this.label_N2O.Text = "N2O";
            this.label_N2O.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // label_Main_TE_WTP
            // 
            this.label_Main_TE_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_TE_WTP.AutoSize = true;
            this.label_Main_TE_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_TE_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_TE_WTP.Location = new System.Drawing.Point(115, 1);
            this.label_Main_TE_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_TE_WTP.Name = "label_Main_TE_WTP";
            this.label_Main_TE_WTP.Size = new System.Drawing.Size(100, 1);
            this.label_Main_TE_WTP.TabIndex = 18;
            this.label_Main_TE_WTP.Text = "Main_TE_WTP";
            // 
            // label_Main_VOC_WTP
            // 
            this.label_Main_VOC_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_VOC_WTP.AutoSize = true;
            this.label_Main_VOC_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_VOC_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_VOC_WTP.Location = new System.Drawing.Point(115, -25);
            this.label_Main_VOC_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_VOC_WTP.Name = "label_Main_VOC_WTP";
            this.label_Main_VOC_WTP.Size = new System.Drawing.Size(110, 16);
            this.label_Main_VOC_WTP.TabIndex = 24;
            this.label_Main_VOC_WTP.Text = "Main_VOC_WTP";
            // 
            // label_Main_CO_WTP
            // 
            this.label_Main_CO_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO_WTP.AutoSize = true;
            this.label_Main_CO_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO_WTP.Location = new System.Drawing.Point(115, 10);
            this.label_Main_CO_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO_WTP.Name = "label_Main_CO_WTP";
            this.label_Main_CO_WTP.Size = new System.Drawing.Size(101, 16);
            this.label_Main_CO_WTP.TabIndex = 25;
            this.label_Main_CO_WTP.Text = "Main_CO_WTP";
            // 
            // label_Main_NOx_WTP
            // 
            this.label_Main_NOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_NOx_WTP.AutoSize = true;
            this.label_Main_NOx_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_NOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_NOx_WTP.Location = new System.Drawing.Point(115, 45);
            this.label_Main_NOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_NOx_WTP.Name = "label_Main_NOx_WTP";
            this.label_Main_NOx_WTP.Size = new System.Drawing.Size(108, 16);
            this.label_Main_NOx_WTP.TabIndex = 26;
            this.label_Main_NOx_WTP.Text = "Main_NOx_WTP";
            // 
            // label_Main_PM10_WTP
            // 
            this.label_Main_PM10_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM10_WTP.AutoSize = true;
            this.label_Main_PM10_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM10_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM10_WTP.Location = new System.Drawing.Point(115, 77);
            this.label_Main_PM10_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM10_WTP.Name = "label_Main_PM10_WTP";
            this.label_Main_PM10_WTP.Size = new System.Drawing.Size(116, 16);
            this.label_Main_PM10_WTP.TabIndex = 27;
            this.label_Main_PM10_WTP.Text = "Main_PM10_WTP";
            // 
            // label_Main_PM25_WTP
            // 
            this.label_Main_PM25_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM25_WTP.AutoSize = true;
            this.label_Main_PM25_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM25_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM25_WTP.Location = new System.Drawing.Point(115, 110);
            this.label_Main_PM25_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM25_WTP.Name = "label_Main_PM25_WTP";
            this.label_Main_PM25_WTP.Size = new System.Drawing.Size(116, 16);
            this.label_Main_PM25_WTP.TabIndex = 28;
            this.label_Main_PM25_WTP.Text = "Main_PM25_WTP";
            // 
            // label_Main_SOx_WTP
            // 
            this.label_Main_SOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_SOx_WTP.AutoSize = true;
            this.label_Main_SOx_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_SOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_SOx_WTP.Location = new System.Drawing.Point(115, 139);
            this.label_Main_SOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_SOx_WTP.Name = "label_Main_SOx_WTP";
            this.label_Main_SOx_WTP.Size = new System.Drawing.Size(107, 16);
            this.label_Main_SOx_WTP.TabIndex = 29;
            this.label_Main_SOx_WTP.Text = "Main_SOx_WTP";
            // 
            // label_Main_CH4_WTP
            // 
            this.label_Main_CH4_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CH4_WTP.AutoSize = true;
            this.label_Main_CH4_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CH4_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CH4_WTP.Location = new System.Drawing.Point(115, 168);
            this.label_Main_CH4_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CH4_WTP.Name = "label_Main_CH4_WTP";
            this.label_Main_CH4_WTP.Size = new System.Drawing.Size(108, 16);
            this.label_Main_CH4_WTP.TabIndex = 30;
            this.label_Main_CH4_WTP.Text = "Main_CH4_WTP";
            // 
            // label_Main_CO2_WTP
            // 
            this.label_Main_CO2_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO2_WTP.AutoSize = true;
            this.label_Main_CO2_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO2_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO2_WTP.Location = new System.Drawing.Point(115, 196);
            this.label_Main_CO2_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO2_WTP.Name = "label_Main_CO2_WTP";
            this.label_Main_CO2_WTP.Size = new System.Drawing.Size(108, 16);
            this.label_Main_CO2_WTP.TabIndex = 31;
            this.label_Main_CO2_WTP.Text = "Main_CO2_WTP";
            // 
            // label_Main_N2O_WTP
            // 
            this.label_Main_N2O_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_N2O_WTP.AutoSize = true;
            this.label_Main_N2O_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_N2O_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_N2O_WTP.Location = new System.Drawing.Point(115, 224);
            this.label_Main_N2O_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_N2O_WTP.Name = "label_Main_N2O_WTP";
            this.label_Main_N2O_WTP.Size = new System.Drawing.Size(109, 16);
            this.label_Main_N2O_WTP.TabIndex = 32;
            this.label_Main_N2O_WTP.Text = "Main_N2O_WTP";
            // 
            // label_Main_N2O_VO
            // 
            this.label_Main_N2O_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_N2O_VO.AutoSize = true;
            this.label_Main_N2O_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_N2O_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_N2O_VO.Location = new System.Drawing.Point(268, 224);
            this.label_Main_N2O_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_N2O_VO.Name = "label_Main_N2O_VO";
            this.label_Main_N2O_VO.Size = new System.Drawing.Size(97, 16);
            this.label_Main_N2O_VO.TabIndex = 50;
            this.label_Main_N2O_VO.Text = "Main_N2O_VO";
            // 
            // label_Main_CH4_VO
            // 
            this.label_Main_CH4_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CH4_VO.AutoSize = true;
            this.label_Main_CH4_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CH4_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CH4_VO.Location = new System.Drawing.Point(268, 168);
            this.label_Main_CH4_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CH4_VO.Name = "label_Main_CH4_VO";
            this.label_Main_CH4_VO.Size = new System.Drawing.Size(96, 16);
            this.label_Main_CH4_VO.TabIndex = 48;
            this.label_Main_CH4_VO.Text = "Main_CH4_VO";
            // 
            // label_Main_PM25_VO
            // 
            this.label_Main_PM25_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM25_VO.AutoSize = true;
            this.label_Main_PM25_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM25_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM25_VO.Location = new System.Drawing.Point(268, 110);
            this.label_Main_PM25_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM25_VO.Name = "label_Main_PM25_VO";
            this.label_Main_PM25_VO.Size = new System.Drawing.Size(104, 16);
            this.label_Main_PM25_VO.TabIndex = 46;
            this.label_Main_PM25_VO.Text = "Main_PM25_VO";
            // 
            // label_Main_NOx_VO
            // 
            this.label_Main_NOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_NOx_VO.AutoSize = true;
            this.label_Main_NOx_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_NOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_NOx_VO.Location = new System.Drawing.Point(268, 45);
            this.label_Main_NOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_NOx_VO.Name = "label_Main_NOx_VO";
            this.label_Main_NOx_VO.Size = new System.Drawing.Size(96, 16);
            this.label_Main_NOx_VO.TabIndex = 44;
            this.label_Main_NOx_VO.Text = "Main_NOx_VO";
            // 
            // label_Main_VOC_VO
            // 
            this.label_Main_VOC_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_VOC_VO.AutoSize = true;
            this.label_Main_VOC_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_VOC_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_VOC_VO.Location = new System.Drawing.Point(268, -25);
            this.label_Main_VOC_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_VOC_VO.Name = "label_Main_VOC_VO";
            this.label_Main_VOC_VO.Size = new System.Drawing.Size(98, 16);
            this.label_Main_VOC_VO.TabIndex = 42;
            this.label_Main_VOC_VO.Text = "Main_VOC_VO";
            // 
            // label_Main_CO_VO
            // 
            this.label_Main_CO_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO_VO.AutoSize = true;
            this.label_Main_CO_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO_VO.Location = new System.Drawing.Point(268, 10);
            this.label_Main_CO_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO_VO.Name = "label_Main_CO_VO";
            this.label_Main_CO_VO.Size = new System.Drawing.Size(89, 16);
            this.label_Main_CO_VO.TabIndex = 43;
            this.label_Main_CO_VO.Text = "Main_CO_VO";
            // 
            // label_Main_PM10_VO
            // 
            this.label_Main_PM10_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_PM10_VO.AutoSize = true;
            this.label_Main_PM10_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_PM10_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_PM10_VO.Location = new System.Drawing.Point(268, 77);
            this.label_Main_PM10_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_PM10_VO.Name = "label_Main_PM10_VO";
            this.label_Main_PM10_VO.Size = new System.Drawing.Size(104, 16);
            this.label_Main_PM10_VO.TabIndex = 45;
            this.label_Main_PM10_VO.Text = "Main_PM10_VO";
            // 
            // label_Main_SOx_VO
            // 
            this.label_Main_SOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_SOx_VO.AutoSize = true;
            this.label_Main_SOx_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_SOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_SOx_VO.Location = new System.Drawing.Point(268, 139);
            this.label_Main_SOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_SOx_VO.Name = "label_Main_SOx_VO";
            this.label_Main_SOx_VO.Size = new System.Drawing.Size(95, 16);
            this.label_Main_SOx_VO.TabIndex = 47;
            this.label_Main_SOx_VO.Text = "Main_SOx_VO";
            // 
            // label_Main_CO2_VO
            // 
            this.label_Main_CO2_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Main_CO2_VO.AutoSize = true;
            this.label_Main_CO2_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_CO2_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Main_CO2_VO.Location = new System.Drawing.Point(268, 196);
            this.label_Main_CO2_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_CO2_VO.Name = "label_Main_CO2_VO";
            this.label_Main_CO2_VO.Size = new System.Drawing.Size(96, 16);
            this.label_Main_CO2_VO.TabIndex = 49;
            this.label_Main_CO2_VO.Text = "Main_CO2_VO";
            // 
            // label_TE_Total
            // 
            this.label_TE_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_TE_Total.AutoSize = true;
            this.label_TE_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_TE_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_TE_Total.Location = new System.Drawing.Point(908, 1);
            this.label_TE_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_TE_Total.Name = "label_TE_Total";
            this.label_TE_Total.Size = new System.Drawing.Size(64, 1);
            this.label_TE_Total.TabIndex = 54;
            this.label_TE_Total.Text = "TE_Total";
            // 
            // label_VOC_Total
            // 
            this.label_VOC_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_VOC_Total.AutoSize = true;
            this.label_VOC_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_VOC_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_VOC_Total.Location = new System.Drawing.Point(908, -25);
            this.label_VOC_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_VOC_Total.Name = "label_VOC_Total";
            this.label_VOC_Total.Size = new System.Drawing.Size(74, 16);
            this.label_VOC_Total.TabIndex = 60;
            this.label_VOC_Total.Text = "VOC_Total";
            // 
            // label_CO_Total
            // 
            this.label_CO_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO_Total.AutoSize = true;
            this.label_CO_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_CO_Total.Location = new System.Drawing.Point(908, 10);
            this.label_CO_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO_Total.Name = "label_CO_Total";
            this.label_CO_Total.Size = new System.Drawing.Size(65, 16);
            this.label_CO_Total.TabIndex = 61;
            this.label_CO_Total.Text = "CO_Total";
            // 
            // label_NOx_Total
            // 
            this.label_NOx_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_NOx_Total.AutoSize = true;
            this.label_NOx_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_NOx_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_NOx_Total.Location = new System.Drawing.Point(908, 45);
            this.label_NOx_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_NOx_Total.Name = "label_NOx_Total";
            this.label_NOx_Total.Size = new System.Drawing.Size(72, 16);
            this.label_NOx_Total.TabIndex = 62;
            this.label_NOx_Total.Text = "NOx_Total";
            // 
            // label_PM10_Total
            // 
            this.label_PM10_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM10_Total.AutoSize = true;
            this.label_PM10_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM10_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_PM10_Total.Location = new System.Drawing.Point(908, 77);
            this.label_PM10_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM10_Total.Name = "label_PM10_Total";
            this.label_PM10_Total.Size = new System.Drawing.Size(80, 16);
            this.label_PM10_Total.TabIndex = 63;
            this.label_PM10_Total.Text = "PM10_Total";
            // 
            // label_PM25_Total
            // 
            this.label_PM25_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_PM25_Total.AutoSize = true;
            this.label_PM25_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_PM25_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_PM25_Total.Location = new System.Drawing.Point(908, 110);
            this.label_PM25_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_PM25_Total.Name = "label_PM25_Total";
            this.label_PM25_Total.Size = new System.Drawing.Size(80, 16);
            this.label_PM25_Total.TabIndex = 64;
            this.label_PM25_Total.Text = "PM25_Total";
            // 
            // label_SOx_Total
            // 
            this.label_SOx_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_SOx_Total.AutoSize = true;
            this.label_SOx_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_SOx_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_SOx_Total.Location = new System.Drawing.Point(908, 139);
            this.label_SOx_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_SOx_Total.Name = "label_SOx_Total";
            this.label_SOx_Total.Size = new System.Drawing.Size(71, 16);
            this.label_SOx_Total.TabIndex = 65;
            this.label_SOx_Total.Text = "SOx_Total";
            // 
            // label_CH4_Total
            // 
            this.label_CH4_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CH4_Total.AutoSize = true;
            this.label_CH4_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CH4_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_CH4_Total.Location = new System.Drawing.Point(908, 168);
            this.label_CH4_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CH4_Total.Name = "label_CH4_Total";
            this.label_CH4_Total.Size = new System.Drawing.Size(72, 16);
            this.label_CH4_Total.TabIndex = 66;
            this.label_CH4_Total.Text = "CH4_Total";
            // 
            // label_CO2_Total
            // 
            this.label_CO2_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_CO2_Total.AutoSize = true;
            this.label_CO2_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_CO2_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_CO2_Total.Location = new System.Drawing.Point(908, 196);
            this.label_CO2_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_CO2_Total.Name = "label_CO2_Total";
            this.label_CO2_Total.Size = new System.Drawing.Size(72, 16);
            this.label_CO2_Total.TabIndex = 67;
            this.label_CO2_Total.Text = "CO2_Total";
            // 
            // label_N2O_Total
            // 
            this.label_N2O_Total.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_N2O_Total.AutoSize = true;
            this.label_N2O_Total.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_N2O_Total.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_N2O_Total.Location = new System.Drawing.Point(908, 224);
            this.label_N2O_Total.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_N2O_Total.Name = "label_N2O_Total";
            this.label_N2O_Total.Size = new System.Drawing.Size(73, 16);
            this.label_N2O_Total.TabIndex = 68;
            this.label_N2O_Total.Text = "N2O_Total";
            // 
            // label_Aux_VOC_WTP
            // 
            this.label_Aux_VOC_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_VOC_WTP.AutoSize = true;
            this.label_Aux_VOC_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VOC_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_VOC_WTP.Location = new System.Drawing.Point(492, -25);
            this.label_Aux_VOC_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_VOC_WTP.Name = "label_Aux_VOC_WTP";
            this.label_Aux_VOC_WTP.Size = new System.Drawing.Size(103, 16);
            this.label_Aux_VOC_WTP.TabIndex = 74;
            this.label_Aux_VOC_WTP.Text = "Aux_VOC_WTP";
            // 
            // label_Aux_CO_WTP
            // 
            this.label_Aux_CO_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO_WTP.AutoSize = true;
            this.label_Aux_CO_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO_WTP.Location = new System.Drawing.Point(492, 10);
            this.label_Aux_CO_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO_WTP.Name = "label_Aux_CO_WTP";
            this.label_Aux_CO_WTP.Size = new System.Drawing.Size(94, 16);
            this.label_Aux_CO_WTP.TabIndex = 75;
            this.label_Aux_CO_WTP.Text = "Aux_CO_WTP";
            // 
            // label_Aux_NOx_WTP
            // 
            this.label_Aux_NOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_NOx_WTP.AutoSize = true;
            this.label_Aux_NOx_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_NOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_NOx_WTP.Location = new System.Drawing.Point(492, 45);
            this.label_Aux_NOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_NOx_WTP.Name = "label_Aux_NOx_WTP";
            this.label_Aux_NOx_WTP.Size = new System.Drawing.Size(101, 16);
            this.label_Aux_NOx_WTP.TabIndex = 76;
            this.label_Aux_NOx_WTP.Text = "Aux_NOx_WTP";
            // 
            // label_Aux_PM10_WTP
            // 
            this.label_Aux_PM10_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM10_WTP.AutoSize = true;
            this.label_Aux_PM10_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM10_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM10_WTP.Location = new System.Drawing.Point(492, 77);
            this.label_Aux_PM10_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM10_WTP.Name = "label_Aux_PM10_WTP";
            this.label_Aux_PM10_WTP.Size = new System.Drawing.Size(109, 16);
            this.label_Aux_PM10_WTP.TabIndex = 77;
            this.label_Aux_PM10_WTP.Text = "Aux_PM10_WTP";
            // 
            // label_Aux_PM25_WTP
            // 
            this.label_Aux_PM25_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM25_WTP.AutoSize = true;
            this.label_Aux_PM25_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM25_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM25_WTP.Location = new System.Drawing.Point(492, 110);
            this.label_Aux_PM25_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM25_WTP.Name = "label_Aux_PM25_WTP";
            this.label_Aux_PM25_WTP.Size = new System.Drawing.Size(109, 16);
            this.label_Aux_PM25_WTP.TabIndex = 78;
            this.label_Aux_PM25_WTP.Text = "Aux_PM25_WTP";
            // 
            // label_Aux_SOx_WTP
            // 
            this.label_Aux_SOx_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_SOx_WTP.AutoSize = true;
            this.label_Aux_SOx_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_SOx_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_SOx_WTP.Location = new System.Drawing.Point(492, 139);
            this.label_Aux_SOx_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_SOx_WTP.Name = "label_Aux_SOx_WTP";
            this.label_Aux_SOx_WTP.Size = new System.Drawing.Size(100, 16);
            this.label_Aux_SOx_WTP.TabIndex = 79;
            this.label_Aux_SOx_WTP.Text = "Aux_SOx_WTP";
            // 
            // label_Aux_CH4_WTP
            // 
            this.label_Aux_CH4_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CH4_WTP.AutoSize = true;
            this.label_Aux_CH4_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CH4_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CH4_WTP.Location = new System.Drawing.Point(492, 168);
            this.label_Aux_CH4_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CH4_WTP.Name = "label_Aux_CH4_WTP";
            this.label_Aux_CH4_WTP.Size = new System.Drawing.Size(101, 16);
            this.label_Aux_CH4_WTP.TabIndex = 80;
            this.label_Aux_CH4_WTP.Text = "Aux_CH4_WTP";
            // 
            // label_Aux_CO2_WTP
            // 
            this.label_Aux_CO2_WTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO2_WTP.AutoSize = true;
            this.label_Aux_CO2_WTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO2_WTP.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO2_WTP.Location = new System.Drawing.Point(492, 196);
            this.label_Aux_CO2_WTP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO2_WTP.Name = "label_Aux_CO2_WTP";
            this.label_Aux_CO2_WTP.Size = new System.Drawing.Size(101, 16);
            this.label_Aux_CO2_WTP.TabIndex = 81;
            this.label_Aux_CO2_WTP.Text = "Aux_CO2_WTP";
            // 
            // label_Aux_VOC_VO
            // 
            this.label_Aux_VOC_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_VOC_VO.AutoSize = true;
            this.label_Aux_VOC_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_VOC_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_VOC_VO.Location = new System.Drawing.Point(678, -25);
            this.label_Aux_VOC_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_VOC_VO.Name = "label_Aux_VOC_VO";
            this.label_Aux_VOC_VO.Size = new System.Drawing.Size(91, 16);
            this.label_Aux_VOC_VO.TabIndex = 90;
            this.label_Aux_VOC_VO.Text = "Aux_VOC_VO";
            // 
            // label_Aux_CO_VO
            // 
            this.label_Aux_CO_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO_VO.AutoSize = true;
            this.label_Aux_CO_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO_VO.Location = new System.Drawing.Point(678, 10);
            this.label_Aux_CO_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO_VO.Name = "label_Aux_CO_VO";
            this.label_Aux_CO_VO.Size = new System.Drawing.Size(82, 16);
            this.label_Aux_CO_VO.TabIndex = 91;
            this.label_Aux_CO_VO.Text = "Aux_CO_VO";
            // 
            // label_Aux_NOx_VO
            // 
            this.label_Aux_NOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_NOx_VO.AutoSize = true;
            this.label_Aux_NOx_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_NOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_NOx_VO.Location = new System.Drawing.Point(678, 45);
            this.label_Aux_NOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_NOx_VO.Name = "label_Aux_NOx_VO";
            this.label_Aux_NOx_VO.Size = new System.Drawing.Size(89, 16);
            this.label_Aux_NOx_VO.TabIndex = 92;
            this.label_Aux_NOx_VO.Text = "Aux_NOx_VO";
            // 
            // label_Aux_PM10_VO
            // 
            this.label_Aux_PM10_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM10_VO.AutoSize = true;
            this.label_Aux_PM10_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM10_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM10_VO.Location = new System.Drawing.Point(678, 77);
            this.label_Aux_PM10_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM10_VO.Name = "label_Aux_PM10_VO";
            this.label_Aux_PM10_VO.Size = new System.Drawing.Size(97, 16);
            this.label_Aux_PM10_VO.TabIndex = 93;
            this.label_Aux_PM10_VO.Text = "Aux_PM10_VO";
            // 
            // label_Aux_PM25_VO
            // 
            this.label_Aux_PM25_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_PM25_VO.AutoSize = true;
            this.label_Aux_PM25_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_PM25_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_PM25_VO.Location = new System.Drawing.Point(678, 110);
            this.label_Aux_PM25_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_PM25_VO.Name = "label_Aux_PM25_VO";
            this.label_Aux_PM25_VO.Size = new System.Drawing.Size(97, 16);
            this.label_Aux_PM25_VO.TabIndex = 94;
            this.label_Aux_PM25_VO.Text = "Aux_PM25_VO";
            // 
            // label_Aux_SOx_VO
            // 
            this.label_Aux_SOx_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_SOx_VO.AutoSize = true;
            this.label_Aux_SOx_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_SOx_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_SOx_VO.Location = new System.Drawing.Point(678, 139);
            this.label_Aux_SOx_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_SOx_VO.Name = "label_Aux_SOx_VO";
            this.label_Aux_SOx_VO.Size = new System.Drawing.Size(88, 16);
            this.label_Aux_SOx_VO.TabIndex = 95;
            this.label_Aux_SOx_VO.Text = "Aux_SOx_VO";
            // 
            // label_Aux_CH4_VO
            // 
            this.label_Aux_CH4_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CH4_VO.AutoSize = true;
            this.label_Aux_CH4_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CH4_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CH4_VO.Location = new System.Drawing.Point(678, 168);
            this.label_Aux_CH4_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CH4_VO.Name = "label_Aux_CH4_VO";
            this.label_Aux_CH4_VO.Size = new System.Drawing.Size(89, 16);
            this.label_Aux_CH4_VO.TabIndex = 96;
            this.label_Aux_CH4_VO.Text = "Aux_CH4_VO";
            // 
            // label_Aux_CO2_VO
            // 
            this.label_Aux_CO2_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_CO2_VO.AutoSize = true;
            this.label_Aux_CO2_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_CO2_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_CO2_VO.Location = new System.Drawing.Point(678, 196);
            this.label_Aux_CO2_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_CO2_VO.Name = "label_Aux_CO2_VO";
            this.label_Aux_CO2_VO.Size = new System.Drawing.Size(89, 16);
            this.label_Aux_CO2_VO.TabIndex = 97;
            this.label_Aux_CO2_VO.Text = "Aux_CO2_VO";
            // 
            // label_Aux_N2O_VO
            // 
            this.label_Aux_N2O_VO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label_Aux_N2O_VO.AutoSize = true;
            this.label_Aux_N2O_VO.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_N2O_VO.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.label_Aux_N2O_VO.Location = new System.Drawing.Point(678, 224);
            this.label_Aux_N2O_VO.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_N2O_VO.Name = "label_Aux_N2O_VO";
            this.label_Aux_N2O_VO.Size = new System.Drawing.Size(90, 16);
            this.label_Aux_N2O_VO.TabIndex = 98;
            this.label_Aux_N2O_VO.Text = "Aux_N2O_VO";
            // 
            // Adj_GHG_N20
            // 
            this.Adj_GHG_N20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Adj_GHG_N20.AutoSize = true;
            this.Adj_GHG_N20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Adj_GHG_N20.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.Adj_GHG_N20.Location = new System.Drawing.Point(908, 307);
            this.Adj_GHG_N20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.Adj_GHG_N20.Name = "Adj_GHG_N20";
            this.Adj_GHG_N20.Size = new System.Drawing.Size(96, 16);
            this.Adj_GHG_N20.TabIndex = 101;
            this.Adj_GHG_N20.Text = "Adj_GHG_N20";
            // 
            // Adj_GHG_CH4
            // 
            this.Adj_GHG_CH4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Adj_GHG_CH4.AutoSize = true;
            this.Adj_GHG_CH4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Adj_GHG_CH4.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.Adj_GHG_CH4.Location = new System.Drawing.Point(908, 280);
            this.Adj_GHG_CH4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.Adj_GHG_CH4.Name = "Adj_GHG_CH4";
            this.Adj_GHG_CH4.Size = new System.Drawing.Size(98, 16);
            this.Adj_GHG_CH4.TabIndex = 100;
            this.Adj_GHG_CH4.Text = "Adj_GHG_CH4";
            // 
            // Adj_GHG_CO2
            // 
            this.Adj_GHG_CO2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Adj_GHG_CO2.AutoSize = true;
            this.Adj_GHG_CO2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Adj_GHG_CO2.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.Adj_GHG_CO2.Location = new System.Drawing.Point(908, 251);
            this.Adj_GHG_CO2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.Adj_GHG_CO2.Name = "Adj_GHG_CO2";
            this.Adj_GHG_CO2.Size = new System.Drawing.Size(98, 16);
            this.Adj_GHG_CO2.TabIndex = 99;
            this.Adj_GHG_CO2.Text = "Adj_GHG_CO2";
            // 
            // Adj_GHG_CO2_Label
            // 
            this.Adj_GHG_CO2_Label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Adj_GHG_CO2_Label.AutoSize = true;
            this.Adj_GHG_CO2_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Adj_GHG_CO2_Label.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.Adj_GHG_CO2_Label.Location = new System.Drawing.Point(678, 251);
            this.Adj_GHG_CO2_Label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.Adj_GHG_CO2_Label.Name = "Adj_GHG_CO2_Label";
            this.Adj_GHG_CO2_Label.Size = new System.Drawing.Size(148, 16);
            this.Adj_GHG_CO2_Label.TabIndex = 102;
            this.Adj_GHG_CO2_Label.Text = "CO2 Adjusted For GWP";
            // 
            // Adj_GHG_CH4_Label
            // 
            this.Adj_GHG_CH4_Label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Adj_GHG_CH4_Label.AutoSize = true;
            this.Adj_GHG_CH4_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Adj_GHG_CH4_Label.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.Adj_GHG_CH4_Label.Location = new System.Drawing.Point(678, 280);
            this.Adj_GHG_CH4_Label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.Adj_GHG_CH4_Label.Name = "Adj_GHG_CH4_Label";
            this.Adj_GHG_CH4_Label.Size = new System.Drawing.Size(148, 16);
            this.Adj_GHG_CH4_Label.TabIndex = 103;
            this.Adj_GHG_CH4_Label.Text = "CH4 Adjusted For GWP";
            // 
            // N20_Adj_Label
            // 
            this.N20_Adj_Label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.N20_Adj_Label.AutoSize = true;
            this.N20_Adj_Label.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.N20_Adj_Label.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
            this.N20_Adj_Label.Location = new System.Drawing.Point(678, 307);
            this.N20_Adj_Label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.N20_Adj_Label.Name = "N20_Adj_Label";
            this.N20_Adj_Label.Size = new System.Drawing.Size(149, 16);
            this.N20_Adj_Label.TabIndex = 104;
            this.N20_Adj_Label.Text = "N2O Adjusted For GWP";
            // 
            // panel_Header
            // 
            this.panel_Header.BackColor = System.Drawing.Color.Silver;
            this.panel_Header.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Header.Controls.Add(this.IncludeAux);
            this.panel_Header.Controls.Add(this.Save_Excel);
            this.panel_Header.Controls.Add(this.label_Aux_Fuel_Header);
            this.panel_Header.Controls.Add(this.label_Aux_Fuel_Type);
            this.panel_Header.Controls.Add(this.label_Main_Fuel_Header);
            this.panel_Header.Controls.Add(this.label_Main_Fuel_Type);
            this.panel_Header.Location = new System.Drawing.Point(1, 5);
            this.panel_Header.Name = "panel_Header";
            this.panel_Header.Size = new System.Drawing.Size(1200, 57);
            this.panel_Header.TabIndex = 3;
            // 
            // IncludeAux
            // 
            this.IncludeAux.AutoSize = true;
            this.IncludeAux.Location = new System.Drawing.Point(1058, 10);
            this.IncludeAux.Name = "IncludeAux";
            this.IncludeAux.Size = new System.Drawing.Size(82, 17);
            this.IncludeAux.TabIndex = 5;
            this.IncludeAux.Text = "Include Aux";
            this.IncludeAux.UseVisualStyleBackColor = true;
            this.IncludeAux.CheckedChanged += new System.EventHandler(this.IncludeAux_CheckedChanged);
            // 
            // Save_Excel
            // 
            this.Save_Excel.Location = new System.Drawing.Point(909, 8);
            this.Save_Excel.Name = "Save_Excel";
            this.Save_Excel.Size = new System.Drawing.Size(126, 23);
            this.Save_Excel.TabIndex = 4;
            this.Save_Excel.Text = "Save To Excel";
            this.Save_Excel.UseVisualStyleBackColor = true;
            this.Save_Excel.Click += new System.EventHandler(this.Save_Excel_Click);
            // 
            // label_Aux_Fuel_Header
            // 
            this.label_Aux_Fuel_Header.AutoSize = true;
            this.label_Aux_Fuel_Header.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Fuel_Header.Location = new System.Drawing.Point(524, 8);
            this.label_Aux_Fuel_Header.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_Fuel_Header.Name = "label_Aux_Fuel_Header";
            this.label_Aux_Fuel_Header.Size = new System.Drawing.Size(152, 37);
            this.label_Aux_Fuel_Header.TabIndex = 3;
            this.label_Aux_Fuel_Header.Text = "Aux Fuel:";
            // 
            // label_Aux_Fuel_Type
            // 
            this.label_Aux_Fuel_Type.AutoSize = true;
            this.label_Aux_Fuel_Type.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Aux_Fuel_Type.Location = new System.Drawing.Point(702, 16);
            this.label_Aux_Fuel_Type.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Aux_Fuel_Type.Name = "label_Aux_Fuel_Type";
            this.label_Aux_Fuel_Type.Size = new System.Drawing.Size(136, 24);
            this.label_Aux_Fuel_Type.TabIndex = 2;
            this.label_Aux_Fuel_Type.Text = "None Selected";
            // 
            // label_Main_Fuel_Header
            // 
            this.label_Main_Fuel_Header.AutoSize = true;
            this.label_Main_Fuel_Header.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Fuel_Header.Location = new System.Drawing.Point(2, 8);
            this.label_Main_Fuel_Header.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_Fuel_Header.Name = "label_Main_Fuel_Header";
            this.label_Main_Fuel_Header.Size = new System.Drawing.Size(166, 37);
            this.label_Main_Fuel_Header.TabIndex = 1;
            this.label_Main_Fuel_Header.Text = "Main Fuel:";
            // 
            // label_Main_Fuel_Type
            // 
            this.label_Main_Fuel_Type.AutoSize = true;
            this.label_Main_Fuel_Type.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_Main_Fuel_Type.Location = new System.Drawing.Point(190, 16);
            this.label_Main_Fuel_Type.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label_Main_Fuel_Type.Name = "label_Main_Fuel_Type";
            this.label_Main_Fuel_Type.Size = new System.Drawing.Size(136, 24);
            this.label_Main_Fuel_Type.TabIndex = 0;
            this.label_Main_Fuel_Type.Text = "None Selected";
            // 
            // ResChart_Tab
            // 
            this.ResChart_Tab.Controls.Add(this.Panel_results_chart);
            this.ResChart_Tab.Location = new System.Drawing.Point(4, 22);
            this.ResChart_Tab.Name = "ResChart_Tab";
            this.ResChart_Tab.Size = new System.Drawing.Size(1195, 752);
            this.ResChart_Tab.TabIndex = 18;
            this.ResChart_Tab.Text = "Results: Chart";
            this.ResChart_Tab.UseVisualStyleBackColor = true;
            // 
            // Panel_results_chart
            // 
            this.Panel_results_chart.BackColor = System.Drawing.Color.Silver;
            this.Panel_results_chart.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel_results_chart.Controls.Add(this.graph_VO_vs_WTP);
            this.Panel_results_chart.Location = new System.Drawing.Point(0, 0);
            this.Panel_results_chart.Name = "Panel_results_chart";
            this.Panel_results_chart.Size = new System.Drawing.Size(1200, 548);
            this.Panel_results_chart.TabIndex = 386;
            // 
            // graph_VO_vs_WTP
            // 
            customLabel1.Text = "Total \nEnergy";
            customLabel1.ToPosition = 2D;
            customLabel2.FromPosition = 1D;
            customLabel2.Text = "CO2";
            customLabel2.ToPosition = 3D;
            customLabel3.FromPosition = 2D;
            customLabel3.Text = "CH4";
            customLabel3.ToPosition = 4D;
            customLabel4.FromPosition = 3D;
            customLabel4.Text = "N2O";
            customLabel4.ToPosition = 5D;
            customLabel5.FromPosition = 4D;
            customLabel5.Text = "GHGs";
            customLabel5.ToPosition = 6D;
            customLabel6.FromPosition = 5D;
            customLabel6.Text = "VOC";
            customLabel6.ToPosition = 7D;
            customLabel7.FromPosition = 6D;
            customLabel7.Text = "CO";
            customLabel7.ToPosition = 8D;
            customLabel8.FromPosition = 7D;
            customLabel8.Text = "NOx";
            customLabel8.ToPosition = 9D;
            customLabel9.FromPosition = 8D;
            customLabel9.Text = "PM10";
            customLabel9.ToPosition = 10D;
            customLabel10.FromPosition = 9D;
            customLabel10.Text = "SOx";
            customLabel10.ToPosition = 11D;
            chartArea1.AxisX.CustomLabels.Add(customLabel1);
            chartArea1.AxisX.CustomLabels.Add(customLabel2);
            chartArea1.AxisX.CustomLabels.Add(customLabel3);
            chartArea1.AxisX.CustomLabels.Add(customLabel4);
            chartArea1.AxisX.CustomLabels.Add(customLabel5);
            chartArea1.AxisX.CustomLabels.Add(customLabel6);
            chartArea1.AxisX.CustomLabels.Add(customLabel7);
            chartArea1.AxisX.CustomLabels.Add(customLabel8);
            chartArea1.AxisX.CustomLabels.Add(customLabel9);
            chartArea1.AxisX.CustomLabels.Add(customLabel10);
            chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisX.IsLabelAutoFit = false;
            chartArea1.AxisX.LabelStyle.Angle = 90;
            chartArea1.AxisY.LabelStyle.Format = "#\'%\'";
            chartArea1.Name = "ChartArea";
            this.graph_VO_vs_WTP.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend";
            this.graph_VO_vs_WTP.Legends.Add(legend1);
            this.graph_VO_vs_WTP.Location = new System.Drawing.Point(-1, 20);
            this.graph_VO_vs_WTP.Name = "graph_VO_vs_WTP";
            this.graph_VO_vs_WTP.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
            series1.ChartArea = "ChartArea";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series1.Legend = "Legend";
            series1.LegendText = "Well To Pump";
            series1.Name = "WellToPump";
            series2.ChartArea = "ChartArea";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series2.Legend = "Legend";
            series2.LegendText = "Vessel Operation";
            series2.Name = "VesselOperation";
            this.graph_VO_vs_WTP.Series.Add(series1);
            this.graph_VO_vs_WTP.Series.Add(series2);
            this.graph_VO_vs_WTP.Size = new System.Drawing.Size(795, 502);
            this.graph_VO_vs_WTP.TabIndex = 5;
            this.graph_VO_vs_WTP.Text = "Graph_VO_vs_WTP";
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title1.Name = "title";
            title1.Text = "Title";
            this.graph_VO_vs_WTP.Titles.Add(title1);
            // 
            // TWP_Tab
            // 
            this.TWP_Tab.Controls.Add(this.panel1);
            this.TWP_Tab.Controls.Add(this.GraphPanel);
            this.TWP_Tab.Controls.Add(this.ShipSelectionPanel);
            this.TWP_Tab.Location = new System.Drawing.Point(4, 22);
            this.TWP_Tab.Name = "TWP_Tab";
            this.TWP_Tab.Padding = new System.Windows.Forms.Padding(3);
            this.TWP_Tab.Size = new System.Drawing.Size(1195, 752);
            this.TWP_Tab.TabIndex = 5;
            this.TWP_Tab.Text = "TWP";
            this.TWP_Tab.UseVisualStyleBackColor = true;
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.Silver;
            this.panel1.Controls.Add(this.NameOfSuperiorShipLabel);
            this.panel1.Controls.Add(this.NumberOfYearsTilCrossLabel);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.BttomViableLabel);
            this.panel1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.panel1.Location = new System.Drawing.Point(813, 3);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(406, 316);
            this.panel1.TabIndex = 1;
            // 
            // NameOfSuperiorShipLabel
            // 
            this.NameOfSuperiorShipLabel.AutoSize = true;
            this.NameOfSuperiorShipLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.NameOfSuperiorShipLabel.Location = new System.Drawing.Point(4, 111);
            this.NameOfSuperiorShipLabel.Name = "NameOfSuperiorShipLabel";
            this.NameOfSuperiorShipLabel.Size = new System.Drawing.Size(139, 20);
            this.NameOfSuperiorShipLabel.TabIndex = 4;
            this.NameOfSuperiorShipLabel.Text = "Name Of The Ship";
            // 
            // NumberOfYearsTilCrossLabel
            // 
            this.NumberOfYearsTilCrossLabel.AutoSize = true;
            this.NumberOfYearsTilCrossLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.NumberOfYearsTilCrossLabel.Location = new System.Drawing.Point(4, 39);
            this.NumberOfYearsTilCrossLabel.Name = "NumberOfYearsTilCrossLabel";
            this.NumberOfYearsTilCrossLabel.Size = new System.Drawing.Size(139, 20);
            this.NumberOfYearsTilCrossLabel.TabIndex = 3;
            this.NumberOfYearsTilCrossLabel.Text = "Name Of The Ship";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(4, 87);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(272, 20);
            this.label2.TabIndex = 1;
            this.label2.Text = "Ship That Is Superior After Crossover";
            // 
            // BttomViableLabel
            // 
            this.BttomViableLabel.AutoSize = true;
            this.BttomViableLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BttomViableLabel.Location = new System.Drawing.Point(4, 16);
            this.BttomViableLabel.Name = "BttomViableLabel";
            this.BttomViableLabel.Size = new System.Drawing.Size(243, 20);
            this.BttomViableLabel.TabIndex = 0;
            this.BttomViableLabel.Text = "Number Of Years Until Crossover";
            // 
            // GraphPanel
            // 
            this.GraphPanel.BackColor = System.Drawing.Color.Silver;
            this.GraphPanel.Controls.Add(this.chart1);
            this.GraphPanel.ForeColor = System.Drawing.SystemColors.ControlText;
            this.GraphPanel.Location = new System.Drawing.Point(3, 325);
            this.GraphPanel.Name = "GraphPanel";
            this.GraphPanel.Size = new System.Drawing.Size(1216, 421);
            this.GraphPanel.TabIndex = 1;
            // 
            // chart1
            // 
            chartArea2.AxisX.Minimum = 0D;
            chartArea2.AxisX.Title = "Time (Years)";
            chartArea2.AxisX.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea2.AxisY.Title = "TWP (Ratio)";
            chartArea2.AxisY.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea2.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea2);
            legend2.Name = "Legend1";
            this.chart1.Legends.Add(legend2);
            this.chart1.Location = new System.Drawing.Point(0, 4);
            this.chart1.Name = "chart1";
            this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
            series3.BorderWidth = 4;
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series3.Legend = "Legend1";
            series3.Name = "Pulse";
            series4.BorderWidth = 4;
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series4.Legend = "Legend1";
            series4.Name = "Continuous";
            series5.BorderWidth = 4;
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series5.Legend = "Legend1";
            series5.Name = "Service Life";
            this.chart1.Series.Add(series3);
            this.chart1.Series.Add(series4);
            this.chart1.Series.Add(series5);
            this.chart1.Size = new System.Drawing.Size(1213, 414);
            this.chart1.TabIndex = 0;
            this.chart1.Text = "chart1";
            title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            title2.Name = "Title1";
            title2.Text = "TWP";
            this.chart1.Titles.Add(title2);
            // 
            // ShipSelectionPanel
            // 
            this.ShipSelectionPanel.BackColor = System.Drawing.Color.Silver;
            this.ShipSelectionPanel.Controls.Add(this.BottomShipSel);
            this.ShipSelectionPanel.Controls.Add(this.TWP_CalculateButton);
            this.ShipSelectionPanel.Controls.Add(this.YearsInServiceLabel);
            this.ShipSelectionPanel.Controls.Add(this.ShipYearsInService_NumUpDown);
            this.ShipSelectionPanel.Controls.Add(this.Blackbar);
            this.ShipSelectionPanel.Controls.Add(this.TopShipSelector);
            this.ShipSelectionPanel.Controls.Add(this.TWPlabel);
            this.ShipSelectionPanel.ForeColor = System.Drawing.SystemColors.ControlText;
            this.ShipSelectionPanel.Location = new System.Drawing.Point(3, 3);
            this.ShipSelectionPanel.Name = "ShipSelectionPanel";
            this.ShipSelectionPanel.Size = new System.Drawing.Size(804, 316);
            this.ShipSelectionPanel.TabIndex = 0;
            // 
            // BottomShipSel
            // 
            this.BottomShipSel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.BottomShipSel.FormattingEnabled = true;
            this.BottomShipSel.Location = new System.Drawing.Point(214, 169);
            this.BottomShipSel.Name = "BottomShipSel";
            this.BottomShipSel.Size = new System.Drawing.Size(416, 21);
            this.BottomShipSel.Sorted = true;
            this.BottomShipSel.TabIndex = 7;
            // 
            // TWP_CalculateButton
            // 
            this.TWP_CalculateButton.Location = new System.Drawing.Point(358, 274);
            this.TWP_CalculateButton.Name = "TWP_CalculateButton";
            this.TWP_CalculateButton.Size = new System.Drawing.Size(124, 23);
            this.TWP_CalculateButton.TabIndex = 6;
            this.TWP_CalculateButton.Text = "Calculate TWP";
            this.TWP_CalculateButton.UseVisualStyleBackColor = true;
            this.TWP_CalculateButton.Click += new System.EventHandler(this.TWP_CalculateButton_Click);
            // 
            // YearsInServiceLabel
            // 
            this.YearsInServiceLabel.AutoSize = true;
            this.YearsInServiceLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.YearsInServiceLabel.Location = new System.Drawing.Point(3, 16);
            this.YearsInServiceLabel.Name = "YearsInServiceLabel";
            this.YearsInServiceLabel.Size = new System.Drawing.Size(249, 20);
            this.YearsInServiceLabel.TabIndex = 5;
            this.YearsInServiceLabel.Text = "Years Of Service For Each Vessel";
            // 
            // ShipYearsInService_NumUpDown
            // 
            this.ShipYearsInService_NumUpDown.Location = new System.Drawing.Point(9, 39);
            this.ShipYearsInService_NumUpDown.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.ShipYearsInService_NumUpDown.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.ShipYearsInService_NumUpDown.Name = "ShipYearsInService_NumUpDown";
            this.ShipYearsInService_NumUpDown.Size = new System.Drawing.Size(120, 20);
            this.ShipYearsInService_NumUpDown.TabIndex = 4;
            this.ShipYearsInService_NumUpDown.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            // 
            // Blackbar
            // 
            this.Blackbar.BackColor = System.Drawing.Color.Black;
            this.Blackbar.Location = new System.Drawing.Point(184, 157);
            this.Blackbar.Name = "Blackbar";
            this.Blackbar.Size = new System.Drawing.Size(473, 5);
            this.Blackbar.TabIndex = 2;
            this.Blackbar.TabStop = false;
            // 
            // TopShipSelector
            // 
            this.TopShipSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.TopShipSelector.FormattingEnabled = true;
            this.TopShipSelector.Location = new System.Drawing.Point(214, 128);
            this.TopShipSelector.Name = "TopShipSelector";
            this.TopShipSelector.Size = new System.Drawing.Size(416, 21);
            this.TopShipSelector.Sorted = true;
            this.TopShipSelector.TabIndex = 1;
            // 
            // TWPlabel
            // 
            this.TWPlabel.AutoSize = true;
            this.TWPlabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TWPlabel.Location = new System.Drawing.Point(105, 147);
            this.TWPlabel.Name = "TWPlabel";
            this.TWPlabel.Size = new System.Drawing.Size(73, 24);
            this.TWPlabel.TabIndex = 0;
            this.TWPlabel.Text = "TWP =";
            // 
            // file_menu
            // 
            this.file_menu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.file_new_menu,
            this.openToolStripMenuItem,
            this.file_exit_menu});
            this.file_menu.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.file_menu.Name = "file_menu";
            this.file_menu.Size = new System.Drawing.Size(39, 20);
            this.file_menu.Text = "File";
            // 
            // file_new_menu
            // 
            this.file_new_menu.Name = "file_new_menu";
            this.file_new_menu.Size = new System.Drawing.Size(152, 22);
            this.file_new_menu.Text = "New";
            this.file_new_menu.Click += new System.EventHandler(this.file_new_menu_Click);
            // 
            // file_exit_menu
            // 
            this.file_exit_menu.Name = "file_exit_menu";
            this.file_exit_menu.Size = new System.Drawing.Size(152, 22);
            this.file_exit_menu.Text = "Exit";
            this.file_exit_menu.Click += new System.EventHandler(this.file_exit_menu_Click);
            // 
            // menu_strip
            // 
            this.menu_strip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.file_menu});
            this.menu_strip.Location = new System.Drawing.Point(0, 0);
            this.menu_strip.Name = "menu_strip";
            this.menu_strip.Size = new System.Drawing.Size(1203, 24);
            this.menu_strip.TabIndex = 0;
            this.menu_strip.Text = "menuStrip1";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.BackColor = System.Drawing.Color.Transparent;
            this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(8, 222);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(120, 20);
            this.label9.TabIndex = 328;
            this.label9.Text = "Auxiliary Engine";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.BackColor = System.Drawing.Color.Transparent;
            this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.Location = new System.Drawing.Point(8, 3);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(97, 20);
            this.label10.TabIndex = 327;
            this.label10.Text = "Main Engine";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.BackColor = System.Drawing.Color.Transparent;
            this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label12.Location = new System.Drawing.Point(4, 0);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(35, 20);
            this.label12.TabIndex = 327;
            this.label12.Text = "Trip";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.BackColor = System.Drawing.Color.Transparent;
            this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.Location = new System.Drawing.Point(2, 0);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(188, 20);
            this.label13.TabIndex = 327;
            this.label13.Text = "Global Warming Potential";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.BackColor = System.Drawing.Color.Transparent;
            this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label14.Location = new System.Drawing.Point(9, 0);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(118, 20);
            this.label14.TabIndex = 383;
            this.label14.Text = "Fuel Selections";
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.openToolStripMenuItem.Text = "Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // TEAMS
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.ClientSize = new System.Drawing.Size(1203, 801);
            this.Controls.Add(this.engine_tabs);
            this.Controls.Add(this.menu_strip);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menu_strip;
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(1500, 1000);
            this.Name = "TEAMS";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "TEAMS";
            this.Shown += new System.EventHandler(this.TEAMS_Shown);
            this.engine_tabs.ResumeLayout(false);
            this.EV_Tab.ResumeLayout(false);
            this.EV_Tab.PerformLayout();
            this.panel_Aux_Engine_Vars.ResumeLayout(false);
            this.panel_Aux_Engine_Vars.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Number_Engines)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Engines_In_Use)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_HP_Per_Engine)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_Onboard_AUX_HP)).EndInit();
            this.panel_Main_Engine_Vars.ResumeLayout(false);
            this.panel_Main_Engine_Vars.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Single_Engine_HP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Number_Of_Engines)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_Onboard_HP)).EndInit();
            this.EC_Tab.ResumeLayout(false);
            this.EC_Tab.PerformLayout();
            this.panel_Aux_Engine_Chars.ResumeLayout(false);
            this.panel_Aux_Engine_Chars.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Percent_Trip_Active)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_Time_Active)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_HP_Load_Factor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_Active_HP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_AUX_Energy)).EndInit();
            this.panel_Main_Engine_Chars.ResumeLayout(false);
            this.panel_Main_Engine_Chars.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Total)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Slow_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Slow_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Slow_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Slow_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Slow_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Precautionary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Precautionary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Full_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Precautionary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Precautionary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Precautionary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Full_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Maneuvering)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Maneuvering)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Full_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Maneuvering)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Maneuvering)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Full_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Full_Cruise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_EP_Idle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_HP_Idle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Idle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Time_Idle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Horsepower_Maneuvering)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Percent_Idle)).EndInit();
            this.UI_Tab.ResumeLayout(false);
            this.UI_Tab.PerformLayout();
            this.panel_Aux_Emissions_Input.ResumeLayout(false);
            this.panel_Aux_Emissions_Input.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Ult_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Bio_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Fis_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Nat_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Die_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Aux_Res_NOX)).EndInit();
            this.panel_main_engine_inputs.ResumeLayout(false);
            this.panel_main_engine_inputs.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Ult_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Bio_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Fis_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Nat_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Die_NOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_CH4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_N2O)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_PM25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_PM10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_VOC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_CO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Res_NOX)).EndInit();
            this.FC_Tab.ResumeLayout(false);
            this.FC_Tab.PerformLayout();
            this.panel_Aux_Fuel_Calc.ResumeLayout(false);
            this.panel_Aux_Fuel_Calc.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_MMBTU_Out)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_GALLON)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Aux_Engine_Efficiency)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_MMBTU_In)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_AUX_KW_HR_Out)).EndInit();
            this.panel_Main_Fuel_Calculations.ResumeLayout(false);
            this.panel_Main_Fuel_Calculations.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Engine_Efficiency)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_KW_HR_Out)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_MMBTU_Out)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_GALLON)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_MMBTU_In)).EndInit();
            this.Trip_Tab.ResumeLayout(false);
            this.Trip_Tab.PerformLayout();
            this.panel_Main_Trip_Distance_Time.ResumeLayout(false);
            this.panel_Main_Trip_Distance_Time.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Total_Trip_Distance)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Trip_Time_Hours)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Trip_Time_Minutes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_Tot_Trip_Hours)).EndInit();
            this.GWP_Tab.ResumeLayout(false);
            this.GWP_Tab.PerformLayout();
            this.panel_Main_GWPs.ResumeLayout(false);
            this.panel_Main_GWPs.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_NO2_GWP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_CO_GWP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_VOC_GWP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_N2O_GWP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_CH4_GWP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.updown_CO2_GWP)).EndInit();
            this.FS_Tab.ResumeLayout(false);
            this.FS_Tab.PerformLayout();
            this.Panel_FuelSelection.ResumeLayout(false);
            this.Panel_FuelSelection.PerformLayout();
            this.ResSheet_tab.ResumeLayout(false);
            this.Panel_results_spread.ResumeLayout(false);
            this.panel_Table.ResumeLayout(false);
            this.panel_Table.PerformLayout();
            this.table_Results.ResumeLayout(false);
            this.table_Results.PerformLayout();
            this.panel_Header.ResumeLayout(false);
            this.panel_Header.PerformLayout();
            this.ResChart_Tab.ResumeLayout(false);
            this.Panel_results_chart.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.graph_VO_vs_WTP)).EndInit();
            this.TWP_Tab.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.GraphPanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ShipSelectionPanel.ResumeLayout(false);
            this.ShipSelectionPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ShipYearsInService_NumUpDown)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Blackbar)).EndInit();
            this.menu_strip.ResumeLayout(false);
            this.menu_strip.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }