예제 #1
0
        public void GerarDados()
        {
            ComboboxItem comboboxItem = (ComboboxItem)cboModeloAnalise.SelectedItem;

            if (chartItems != null)
            {
                chartItems.Clear();
            }

            switch (comboboxItem.Value)
            {
            case TipoAnalise.ChartUsuarios:
                chartItems = EstatisticaManager.GetAnaliseUsuarios(dataInicial.Value, dataFinal.Value, periodo);
                break;

            case TipoAnalise.ChartCategorias:
                chartItems = EstatisticaManager.GetAnaliseCategorias(dataInicial.Value, dataFinal.Value, grupoTransacoes);
                break;

            default:
                break;
            }
            chartAnalise.Series[0].Points.Clear();
            gridAnalise.DataSource = chartItems;

            foreach (Item item in chartItems)
            {
                var point = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
                point.SetValueXY(item.Categoria, item.Valor);
                point.ToolTip = string.Format("{0}: {1}", item.Categoria, item.Valor);
                chartAnalise.Series[0].Points.Add(point);
            }

            chartAnalise.Titles[0].Text = "# " + comboboxItem.Text;
        }
예제 #2
0
        private void get_points()
        {
            double[] x_canvas = new double[list_points.Count], y_canvas = new double[list_points.Count];
            for (int i = 0; i < list_points.Count; i++)
            {
                x_canvas[i] = list_points[i];
                y_canvas[i] = 0;
            }

            System.Windows.Forms.DataVisualization.Charting.Series s1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            for (int i = 0; i < list_points.Count; i++)
            {
                System.Windows.Forms.DataVisualization.Charting.DataPoint d = new System.Windows.Forms.DataVisualization.Charting.DataPoint(list_points[i], 0);
                d.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
                d.Color       = Color.Red;
                s1.Points.Add(d);
            }
            s1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;

            chart1.Series.Add(s1);

            System.Windows.Forms.DataVisualization.Charting.Series s2
                     = new System.Windows.Forms.DataVisualization.Charting.Series();
            s2.Color = Color.Black;
            chart1.Series.Add(s2);
            s2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            chart1.Series["Series3"].Points.AddXY(x_1, 0);
            chart1.Series["Series3"].Points.AddXY(x_2, 0);
        }
예제 #3
0
       public void RedrawGraph()
       {
           MathManager math = new MathManager();
           series1.Points.Clear();
           series2.Points.Clear();

           System.Windows.Forms.DataVisualization.Charting.DataPoint[] expectedPoints = new System.Windows.Forms.DataVisualization.Charting.DataPoint[2];
           System.Windows.Forms.DataVisualization.Charting.DataPoint[] realPoints = new System.Windows.Forms.DataVisualization.Charting.DataPoint[56];
           expectedPoints[0] = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
           expectedPoints[1] = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);

           // updating points values of expected graph from DB

           math.updateEstimatedGraphPoints(expectedPoints);
           //System.Windows.Forms.DataVisualization.Charting.DataPoint[] realPoints = new System.Windows.Forms.DataVisualization.Charting.DataPoint[56];
           realPoints[0] = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);/////////////////////////////////
           for (int i = 0; i < realPoints.Length; i++) // initalizating the realPoints values to zeros
           {
               realPoints[i] = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
           }

           math.updateRealGraphPoints(realPoints);

           series1.Points.Add(expectedPoints[0]);
           series1.Points.Add(expectedPoints[1]);

           series2.Points.Add(realPoints[0]);////////////////////////////////
           for (int i = 0; i < realPoints.Length; i++)
           {
               series2.Points.Add(realPoints[i]);
           }
           Refresh();
       }
예제 #4
0
파일: Form1.cs 프로젝트: adrik29/HarvEx
        private void Add(string ss, int y)
        {
            string s    = "";
            double porc = (100.0 * y) / total;

            if (porc > 4.0 && porc <= 16.0)
            {
                s = "" + ss[0] + ss[1] + ss[2];
            }
            else if (porc > 16.0)
            {
                s = ss;
            }
            System.Windows.Forms.DataVisualization.Charting.DataPoint item = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, y);
            int index = largestLegends.BinarySearch(y);

            if (index >= 0)
            {
                item.IsVisibleInLegend = true;
                item.LegendText        = ss + " " + y.ToString();
                largestLegends.RemoveAt(index);
            }
            else
            {
                item.IsVisibleInLegend = false;
            }
            item.Label = s;
            pie.Series["s1"].Points.Add(item);
        }
예제 #5
0
        public void generateGraph()
        {
            this.chart.Series.Clear();
            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();
            List <double> dataStart = Service.getHistory(cbStartCurrency.Text);
            List <double> dataEnd   = Service.getHistory(cbEndCurrency.Text);

            for (int i = 0; i < dataStart.Count; i++)
            {
                System.Windows.Forms.DataVisualization.Charting.DataPoint dataStartPoint = new System.Windows.Forms.DataVisualization.Charting.DataPoint(i, dataStart[i]);
                System.Windows.Forms.DataVisualization.Charting.DataPoint dataEndPoint   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(i, dataEnd[i]);
                series1.Points.Add(dataStartPoint);
                series2.Points.Add(dataEndPoint);
            }
            //
            // chartCurrency
            //
            setYAxis(dataStart, dataEnd);

            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Legend    = "Legend1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;

            series1.Name = cbStartCurrency.Text;
            series2.Name = cbEndCurrency.Text;
            this.chart.Series.Add(series1);
            this.chart.Series.Add(series2);
            ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
        }
예제 #6
0
        private void UpdateSoundWaveChart(uint numSamples, short[] data)
        {
            /* Clear the previous chart */
            ClearSoundWaveChart();

            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            chartArea1.AxisX.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea1.AxisX.Maximum       = numSamples;
            chartArea1.AxisX.Minimum       = 0;
            chartArea1.AxisX.Title         = "Time";
            chartArea1.AxisY.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            //chartArea1.AxisY.Maximum = 1;
            //chartArea1.AxisY.Minimum = 0;
            chartArea1.AxisY.Title = "Amplitude";
            chartArea1.Name        = "ChartArea1";
            this.SoundWaveChart.ChartAreas.Add(chartArea1);

            /* Add the points to the chart */
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            for (int i = 0; i < numSamples; i++)
            {
                System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint = new System.Windows.Forms.DataVisualization.Charting.DataPoint(i, data[i]);
                series1.Points.Add(dataPoint);
            }
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Name      = "Series1";
            series1.Color     = System.Drawing.Color.Red;
            this.SoundWaveChart.Series.Add(series1);
        }
예제 #7
0
파일: Form1.cs 프로젝트: takuminish/Kakeibo
        private void MoneyRangeMonth()
        {
            DateTime dtNow  = DateTime.Now;
            int      iMonth = dtNow.Month;

            chart1.Series.Clear();
            chart1.Series.Add("月別");

            chart1.Series["月別"].ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Column;
            string[] xValues = new string[12] {
                "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"
            };
            int[] yValues = new int[12] {
                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
            };

            ChartSet3(xValues, yValues, dtNow.Year);
            for (int i = 0; i < xValues.Length; i++)
            {
                //グラフに追加するデータクラスを生成
                System.Windows.Forms.DataVisualization.Charting.DataPoint dp = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
                dp.SetValueXY(xValues[i], yValues[i]); //XとYの値を設定
                //   dp.IsValueShownAsLabel = true;  //グラフに値を表示するように指定
                chart1.Series["月別"].Points.Add(dp);    //グラフにデータ追加
            }
        }
예제 #8
0
파일: Form1.cs 프로젝트: takuminish/Kakeibo
        private void DaySelect()
        {
            DateTime day = GetSelectDate();

            if (day != DateTime.MaxValue)
            {
                chart1.Series.Clear();
                chart1.Series.Add("大分類別");

                chart1.Series["大分類別"].ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Column;
                string[] xValues = new string[] { "食費", "雑費", "住居" };
                int[]    yValues = new int[] { 0, 0, 0 };

                ChartSet(yValues, day);

                for (int i = 0; i < xValues.Length; i++)
                {
                    //グラフに追加するデータクラスを生成
                    System.Windows.Forms.DataVisualization.Charting.DataPoint dp = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
                    dp.SetValueXY(xValues[i], yValues[i]);  //XとYの値を設定
                    //     dp.IsValueShownAsLabel = true;  //グラフに値を表示するように指定
                    chart1.Series["大分類別"].Points.Add(dp);   //グラフにデータ追加
                }
            }
        }
예제 #9
0
        public static double Interpolate2Points(System.Windows.Forms.DataVisualization.Charting.DataPoint p1, System.Windows.Forms.DataVisualization.Charting.DataPoint p2, double x)
        {
            var x0 = p1.XValue;
            var y0 = p1.YValues[0];
            var x1 = p2.XValue;
            var y1 = p2.YValues[0];

            return(y0 + ((x - x0) * y1 - (x - x0) * y0) / (x1 - x0));
        }
예제 #10
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido de este método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     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(8D, 5D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 6D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 4D);
     this.chart1  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     this.chart1.BackColor           = System.Drawing.Color.Transparent;
     chartArea1.Area3DStyle.Enable3D = true;
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Location        = new System.Drawing.Point(25, 20);
     this.chart1.Name            = "chart1";
     this.chart1.Palette         = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
     series1.ChartArea           = "ChartArea1";
     series1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.IsValueShownAsLabel = true;
     series1.Name                = "Series1";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(300, 300);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(25, 340);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(300, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Mostrar Labels";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // UC_graficador
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chart1);
     this.Name = "UC_graficador";
     this.Size = new System.Drawing.Size(344, 382);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #11
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = 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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 10D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 20D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 100D);
     System.Windows.Forms.DataVisualization.Charting.Series    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.Name = "ChartArea1";
     chartArea2.Name = "ChartArea2";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.ChartAreas.Add(chartArea2);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend1.Name     = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name     = "chart1";
     this.chart1.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Berry;
     series1.ChartArea    = "ChartArea1";
     series1.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
     series1.Legend       = "Legend1";
     series1.Name         = "Series1";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series2.ChartArea       = "ChartArea2";
     series2.ChartType       = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.RangeBar;
     series2.Legend          = "Legend1";
     series2.Name            = "BarChart";
     series2.YValuesPerPoint = 2;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(487, 280);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // ctrlChart
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.chart1);
     this.Name = "ctrlChart";
     this.Size = new System.Drawing.Size(487, 280);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #12
0
        private void LoadBookLendingRateGraph(int index)
        {
            this.BookLendingRateChart.Series.Clear();

            DateTime o  = new DateTime(1900, 1, 1);
            TimeSpan oo = new TimeSpan(2, 0, 0, 0);

            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            series1.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.XValueType  = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Date;
            series1.Font        = new System.Drawing.Font("Microsoft YaHei UI", 10F, System.Drawing.FontStyle.Bold);
            series1.BorderWidth = 5;
            series1.Color       = System.Drawing.SystemColors.Highlight;
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1;
            int last = lig.Count; int am = 0;

            if (index == 0)
            {
                am = (7 < last ? last - 7 : 0);
            }
            else if (index == 1)
            {
                am = (30 < last ? last - 30 : 0);
            }
            else if (index == 2)
            {
                am = (90 < last ? last - 90 : 0);
            }
            else if (index == 3)
            {
                am = (365 <= last ? last - 365 : 0);
            }

            for (int i = am; i < last; i++)
            {
                dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint((lig[i].Date - o + oo).TotalDays, lig[i].LendingRate);
                series1.Points.Add(dataPoint1);
            }
            if (last - am < 15)
            {
                series1.IsValueShownAsLabel = true;
                series1.LabelFormat         = "0.0000 %";
            }
            else
            {
                series1.IsValueShownAsLabel = false;
            }

            this.BookLendingRateChart.Series.Add(series1);
        }
예제 #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.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0.2D, 1D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0.4D, 2D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0.6D, 3D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0.8D, 2D);
     this.faChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.faChart)).BeginInit();
     this.SuspendLayout();
     //
     // faChart
     //
     this.faChart.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.LabelAutoFitMaxFontSize  = 6;
     chartArea1.AxisX.LabelAutoFitStyle        = System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.None;
     chartArea1.CursorX.IsUserEnabled          = true;
     chartArea1.CursorX.IsUserSelectionEnabled = true;
     chartArea1.Name = "ChartArea1";
     this.faChart.ChartAreas.Add(chartArea1);
     this.faChart.Location = new System.Drawing.Point(13, 13);
     this.faChart.Name     = "faChart";
     series1.ChartArea     = "ChartArea1";
     series1.ChartType     = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Name          = "Series1";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     this.faChart.Series.Add(series1);
     this.faChart.Size     = new System.Drawing.Size(1184, 702);
     this.faChart.TabIndex = 0;
     this.faChart.Text     = "faChart";
     //
     // faForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1209, 727);
     this.Controls.Add(this.faChart);
     this.Name         = "faForm";
     this.Text         = "Fourier Analysis Form";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.faForm_Closing);
     this.Shown       += new System.EventHandler(this.faForm_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.faChart)).EndInit();
     this.ResumeLayout(false);
 }
예제 #14
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.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 60D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 40D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 20D);
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.AxisX.Interval          = 1D;
     chartArea1.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.LabelsAngleStep90)));
     chartArea1.AxisX.MajorGrid.Enabled = false;
     chartArea1.AxisY.LabelStyle.Format = "{0} h";
     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         = "Series1";
     dataPoint1.AxisLabel = "Visual Studio";
     dataPoint2.AxisLabel = "Chrome";
     dataPoint2.Color     = System.Drawing.Color.Red;
     dataPoint3.AxisLabel = "MS Excel";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(393, 360);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // BarChartControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.chart1);
     this.Name = "BarChartControl";
     this.Size = new System.Drawing.Size(393, 360);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #15
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.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     this.chart1            = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.itemBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.itemBindingSource)).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)));
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Enabled  = false;
     this.chart1.Location = new System.Drawing.Point(0, 1);
     this.chart1.Name     = "chart1";
     this.chart1.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
     series1.ChartArea    = "ChartArea1";
     series1.Name         = "Price";
     series1.Points.Add(dataPoint1);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(300, 300);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "Chart";
     //
     // itemBindingSource
     //
     this.itemBindingSource.DataSource = typeof(MyShop.Item);
     //
     // ChartP
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize          = new System.Drawing.Size(300, 301);
     this.Controls.Add(this.chart1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "ChartP";
     this.Text            = "History of Price";
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.itemBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
예제 #16
0
        private void actualizagrafica()
        {
            //Configuracion del Grafico de monedas
            //Series serie = new Series("Monedas");

            chart1.ChartAreas["ChartArea1"].AxisX.MajorGrid.LineWidth = 0;
            chart1.ChartAreas["ChartArea1"].AxisY.MajorGrid.LineWidth = 0;

            chart1.Series["Mes"].XValueMember       = "Dia";
            chart1.Series["Mes"].YValueMembers      = "High,Low,Open,Close";
            chart1.Series["Mes"].XValueType         = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            chart1.Series["Mes"].YValueType         = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            chart1.Series["Mes"].CustomProperties   = "PriceDownColor= Red, PriceUpColor= Blue";
            chart1.Series["Mes"]["OpenCloseStyle"]  = "Triangle";
            chart1.Series["Mes"]["ShowOpenclose"]   = "Both";
            chart1.DataManipulator.IsStartFromFirst = true;

            //chart1.Series["Mes"].Legend = "xrp_mxn";
            //chart1.Series["Mes"].Name = "XRP_MXN";
            //chart1.Titles.Add("Historial del Mes..");


            foreach (var his in lstHistrialmoney)
            {
                if (his.moneda == "xrp_mxn")
                {
                    {
                        string sTip = string.Format("max={0}\nmin={1}\nOpen={2}\nClose={3}", 0, 0, double.Parse(his.valormax), double.Parse(his.valormin));

                        System.Windows.Forms.DataVisualization.Charting.DataPoint item = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
                        item.ToolTip = sTip;
                        item.XValue  = his.tiempomax.Day; // DateTime.Now.Day;//sBook[i].tiempo.ToOADate();
                                                          //item.YValues = new double[] { 7.4, 4.5, 5.20, 6.40 };
                                                          //item.YValues = new double[] { 8.0,4.0,double.Parse(his.valormax), double.Parse(his.valormin) };
                                                          //"High,Low,Open,Close"
                        item.YValues = new double[] { double.Parse(his.valormax), double.Parse(his.valormin), double.Parse(his.valoropen), double.Parse(his.valorclose) };
                        chart1.Series["Mes"].Points.Add(item);

                        //System.Windows.Forms.DataVisualization.Charting.DataPoint item2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
                        //item2.XValue = DateTime.Now.AddDays(1).Day;//sBook[i].tiempo.ToOADate();
                        //item2.YValues = new double[] { 8.4, 5.5, 6.20, 8.0 };
                        //chart1.Series["Mes"].Points.Add(item2);
                        //item = null;
                    }
                }
            }
            chart1.Update();
        }
예제 #17
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.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, 4D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, -4D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 8D);
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.AlignmentOrientation = System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.None;
     chartArea1.AxisX.LineWidth      = 0;
     chartArea1.AxisY.LineWidth      = 0;
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend1.Name     = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series1.Legend       = "Legend1";
     series1.Name         = "Series1";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(685, 386);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(685, 386);
     this.Controls.Add(this.chart1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
        private void DrawChart()
        {
            System.Windows.Forms.DataVisualization.Charting.Series    s = chartConvDiagram.Series[0];
            System.Windows.Forms.DataVisualization.Charting.DataPoint p;

            // Set MarkerStyle of DataPoints
            s.MarkerStyle =
                (chkMarkers.Checked) ? System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle
                : System.Windows.Forms.DataVisualization.Charting.MarkerStyle.None;

            for (int i = 0; i < GAResults.NumberOfGenerations; i++)
            {
                p         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(i + 1, (double)Math.Abs(GAResults.BestChromosomes[i].FitnessValue));
                p.ToolTip = p.YValues[0].ToString();
                s.Points.Add(p);
            }
        }
예제 #19
0
        private void DrawChart()
        {
            System.Windows.Forms.DataVisualization.Charting.Series    s = chartStabilityDiagram.Series[0];
            System.Windows.Forms.DataVisualization.Charting.DataPoint p;

            // Create GeneticAlgorithm Object and set it
            GeneticAlgorithm ga = new GeneticAlgorithm();

            GeneticAlgorithm.ExecutionResult res;
            ga.PopulationSize                               = (int)MainForm.numPopSize.Value;
            ga.ProbabilityOfCrossover                       = (float)MainForm.numCrossover.Value;
            ga.ProbabilityOfMutation                        = (float)MainForm.numMutation.Value;
            ga.Termination.MaxNumberOfGenerations           = (int)MainForm.numMaxGenerations.Value;
            ga.Termination.MaxUselessIterations             = (int)MainForm.numMaxUselessIterations.Value;
            ga.Termination.UselessIterationFactor           = (float)MainForm.numUselessIterationFactor.Value;
            GeneticAlgorithm.SpaceQuantizationDecimalPlaces = MainForm.cmbSpaceQuantizationFactor.SelectedIndex + 1;

            // Draw Chart
            s.Points.Clear();
            s.MarkerStyle =
                (chkMarkers.Checked) ? System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle
                : System.Windows.Forms.DataVisualization.Charting.MarkerStyle.None;

            _minFitness = Double.PositiveInfinity;
            _maxFitness = Double.NegativeInfinity;

            for (int i = 0; i < (int)numExecutions.Value; i++)
            {
                res = ga.Run();

                p = new System.Windows.Forms.DataVisualization.Charting.DataPoint
                        (i + 1, (double)Math.Abs(res.BestChromosomes[res.NumberOfGenerations - 1].FitnessValue));
                p.ToolTip = p.YValues[0].ToString();
                s.Points.Add(p);

                // Find minimum and maximum of fitnesses
                if (p.YValues[0] < _minFitness)
                {
                    _minFitness = p.YValues[0];
                }
                if (p.YValues[0] > _maxFitness)
                {
                    _maxFitness = p.YValues[0];
                }
            }
        }
예제 #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 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    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, "4,5");
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, "5,0");
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, "5,0");
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea2.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location = new System.Drawing.Point(30, 80);
     this.chart1.Name     = "chart1";
     series2.ChartArea    = "ChartArea1";
     series2.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bubble;
     series2.Legend       = "Legend1";
     series2.Name         = "Series1";
     series2.Points.Add(dataPoint4);
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.YValuesPerPoint = 2;
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(586, 340);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // TestForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.chart1);
     this.Name  = "TestForm";
     this.Text  = "TestForm";
     this.Load += new System.EventHandler(this.TestForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #21
0
        private void UpdateADSRChart()
        {
            float duration = 0;

            foreach (System.Windows.Forms.Control control in this.DurationGroupBox.Controls)
            {
                System.Windows.Forms.RadioButton button = (System.Windows.Forms.RadioButton)control;
                if (button.Checked)
                {
                    duration = float.Parse(button.Tag.ToString(), CultureInfo.InvariantCulture.NumberFormat) / (this.BPM / 60);
                }
            }

            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            chartArea1.AxisX.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea1.AxisX.Maximum       = duration;
            chartArea1.AxisX.Minimum       = 0D;
            chartArea1.AxisX.Title         = "Time";
            chartArea1.AxisY.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea1.AxisY.Maximum       = 100D;
            chartArea1.AxisY.Minimum       = 0D;
            chartArea1.AxisY.Title         = "Amplitude";
            chartArea1.Name = "ChartArea1";
            this.ADSRChart.ChartAreas.Add(chartArea1);

            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(duration * ((float)AttackTime.Value / 1000), 0F);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(duration * ((float)AttackTime.Value / 1000), (float)AttackAmplitude.Value);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(duration * ((float)DecayTime.Value / 1000), (float)DecayAmplitude.Value);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(duration * ((float)SustainTime.Value / 1000), (float)SustainAmplitude.Value);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(duration * ((float)ReleaseTime.Value / 1000), (float)ReleaseAmplitude.Value);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(duration * ((float)ReleaseTime.Value / 1000), 0F);
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            series1.Points.Add(dataPoint6);
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Name      = "Series1";
            series1.Color     = System.Drawing.Color.Red;
            this.ADSRChart.Series.Add(series1);
        }
예제 #22
0
        private void FillPartitionTab()
        {
            tool.ReadPartitionTable();
            partitionChart.Series[0].Points.Clear();
            partitionListview.Items.Clear();
            foreach (var p in tool.Partitions)
            {
                var lv = partitionListview.Items.Add(p.Name);
                lv.SubItems.Add(p.GetTypeName());
                lv.SubItems.Add(p.GetSubTypeName());
                lv.SubItems.Add("0x" + p.Offset.ToString("X"));
                lv.SubItems.Add(p.GetSize());
                lv.SubItems.Add("0x" + p.Flags.ToString("X"));

                var point = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0.0, p.Size);
                point.AxisLabel = p.Name;
                partitionChart.Series[0].Points.Add(point);
            }
        }
예제 #23
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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(24D, "60,0,0,0,0");
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location  = new System.Drawing.Point(49, 184);
     this.chart1.Name      = "chart1";
     this.chart1.Palette   = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
     series1.ChartArea     = "ChartArea1";
     series1.ChartType     = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Legend        = "Legend1";
     series1.Name          = "耗费时间";
     dataPoint1.LegendText = "132";
     series1.Points.Add(dataPoint1);
     series1.YValuesPerPoint = 5;
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(1069, 305);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // RForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1227, 684);
     this.Controls.Add(this.chart1);
     this.Name = "RForm";
     this.Text = "RForm";
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #24
0
파일: TProfile.cs 프로젝트: StrataRozumu/IR
 public TProfile()
 {
     InitializeComponent();
     string[] ports = SerialPort.GetPortNames();
     ListDevices.Items.Clear();
     foreach (var s in ports)
         ListDevices.Items.Add(s);
     ShowTime();
     System.Windows.Forms.DataVisualization.Charting.Series s1 =
         charts.Series.Where(i => i.Name == "UpperTermProfile").Select(i => i).FirstOrDefault();
     System.Windows.Forms.DataVisualization.Charting.Series s2 =
         charts.Series.Where(i => i.Name == "LowerTermProfile").Select(i => i).FirstOrDefault();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dp =
         new System.Windows.Forms.DataVisualization.Charting.DataPoint();
     dp.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     dp.XValue = 0;
     dp.YValues = new double[] { 0 };
     s1.Points.Add(dp);
     s2.Points.Add(dp);
 }
예제 #25
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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 20D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 50D);
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(88, 26);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn;
     series1.Legend       = "Legend1";
     series1.Name         = "Leden";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(485, 300);
     this.chart1.TabIndex = 3;
     this.chart1.Text     = "Leden";
     //
     // frmChart
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(645, 353);
     this.Controls.Add(this.chart1);
     this.Name = "frmChart";
     this.Text = "Chart";
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #26
0
 private void radioButton2_CheckedChanged(object sender, EventArgs e)
 {
     if (radioButton2.Checked)
     {
         double        sd       = 0.3;
         double        dqy      = 99;
         double        wd       = 25;
         List <double> αdwdlist = new List <double>();
         List <double> wdlist   = new List <double>();
         for (sd = 0; sd <= 100; sd = sd + 4)
         {
             double αd;
             if (lx == 0)
             {
                 αd = caculateαd(wd, sd, dqy);
             }
             else
             {
                 αd = caculateαa(wd, sd, dqy);
             }
             wdlist.Add(sd);
             αdwdlist.Add(αd);
         }
         chart1.Series[0].Points.Clear();
         chart1.ChartAreas[0].AxisX.Title    = "湿度/%";
         chart1.ChartAreas[0].AxisX.Interval = 2;
         chart1.ChartAreas[0].AxisY.Interval = 0.02;
         chart1.ChartAreas[0].AxisY.Minimum  = 0.8;
         chart1.ChartAreas[0].AxisY.Maximum  = 1.2;
         chart1.ChartAreas[0].AxisY.Title    = "修正值";
         string label = "";
         for (int i = 0; i < wdlist.Count; i++)
         {
             System.Windows.Forms.DataVisualization.Charting.DataPoint jsg_point = null;
             jsg_point = new System.Windows.Forms.DataVisualization.Charting.DataPoint(wdlist[i], αdwdlist[i]);
             chart1.Series[0].Points.Add(jsg_point);
             label += wdlist[i].ToString("0.0") + "%—" + αdwdlist[i].ToString("0.00") + "\r\n";
         }
         chart1.Series[0].Name = label;
     }
 }
예제 #27
0
파일: TProfile.cs 프로젝트: StrataRozumu/IR
 public TProfile(double[] xData, double[] up, double[] low)
     : this()
 {
     RemoveLastPoint();
     for (int i = 0; i < xData.Length; i++)
     {
         System.Windows.Forms.DataVisualization.Charting.Series series = null;
         series = (from s in charts.Series where s.Name == "UpperTermProfile" select s).FirstOrDefault();
         System.Windows.Forms.DataVisualization.Charting.DataPoint dp = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
         dp.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
         dp.YValues = new double[] { up[i] };
         dp.XValue = xData[i];
         series.Points.Add(dp);
         series = (from s in charts.Series where s.Name == "LowerTermProfile" select s).FirstOrDefault();
         dp = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
         dp.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
         dp.YValues = new double[] { low[i] };
         dp.XValue = xData[i];
         series.Points.Add(dp);
     }
 }
예제 #28
0
        private void Form1_Load(object sender, EventArgs e)
        {
            fileRead();
            //Pre Loading CHART 1 with three values
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 20D);
            chart1.Series["Series"].Points.Add(dataPoint1);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 10D);
            chart1.Series["Series"].Points.Add(dataPoint2);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 15D);
            chart1.Series["Series"].Points.Add(dataPoint3);

            // Pre Loading Chart 2 with three values
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 15D);
            chart2.Series["Series1"].Points.Add(dataPoint4);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 10D);
            chart2.Series["Series1"].Points.Add(dataPoint5);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 20D);
            chart2.Series["Series1"].Points.Add(dataPoint6);

            barChart.Checked = true;
        }
예제 #29
0
        private void ShowStroke()
        {
            double[] x = new double[Points.Count], y = new double[Points.Count];
            for (int i = 0; i < Points.Count; i++)
            {
                x[i] = Points[i];
                y[i] = 0;
            }

            System.Windows.Forms.DataVisualization.Charting.Series s = new System.Windows.Forms.DataVisualization.Charting.Series();
            for (int i = 0; i < Points.Count; i++)
            {
                System.Windows.Forms.DataVisualization.Charting.DataPoint d = new System.Windows.Forms.DataVisualization.Charting.DataPoint(Points[i], 0);
                d.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Diamond;
                d.Color       = Color.DarkGreen;
                s.Points.Add(d);
            }
            s.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;

            chart1.Series.Add(s);
        }
예제 #30
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.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series ();
			System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (0D, 6D);
			System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (0D, 9D);
			System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (0D, 3D);
			System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint (0D, 5D);
			this.chart1 = new WindowsFormsApplication1.Form1.MyChart ();
			this.SuspendLayout ();
			// 
			// chart1
			// 
			chartArea1.Name = "ChartArea1";
			this.chart1.ChartAreas.Add (chartArea1);
			this.chart1.Location = new System.Drawing.Point (12, 44);
			this.chart1.Name = "chart1";
			series1.ChartArea = "ChartArea1";
			series1.Name = "Series1";
			series1.Points.Add (dataPoint1);
			series1.Points.Add (dataPoint2);
			series1.Points.Add (dataPoint3);
			series1.Points.Add (dataPoint4);
			this.chart1.Series.Add (series1);
			this.chart1.Size = new System.Drawing.Size (506, 303);
			this.chart1.TabIndex = 0;
			this.chart1.Text = "chart1";
			// 
			// Form1
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF (6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.SlateGray;
			this.ClientSize = new System.Drawing.Size (530, 386);
			this.Controls.Add (this.chart1);
			this.Name = "Form1";
			this.Text = "Form1";
			this.ResumeLayout (false);

		}
예제 #31
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.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 6D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 9D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 3D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 5D);
     this.chart1 = new WindowsFormsApplication1.Form1.MyChart();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Location = new System.Drawing.Point(12, 44);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.Name         = "Series1";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(506, 303);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.SlateGray;
     this.ClientSize          = new System.Drawing.Size(530, 386);
     this.Controls.Add(this.chart1);
     this.Name = "Form1";
     this.Text = "Form1";
     this.ResumeLayout(false);
 }
예제 #32
0
        //Construtor
        public void showMainPanel(double min, double center, double max, double cred, int index)
        {
            string q2 = Engine.EngineInterface.getNextBinaryQuestion(min, center, max, cred, index, Engine.EngineInterface.BISECTION);

            if (index > -1)
            {
                this.intervals.Add(center);
            }
            this.intervals.Sort();
            this.x = this.intervals.ToArray();

            this.lista = q2.Split(new char[] { ';' });
            this.p.min = Engine.EngineInterface.nextLower;
            this.p.max = Engine.EngineInterface.nextUpper;
            this.upperOfLowerInterval.Add(this.p.max);
            this.lowerOfUpperInterval.Add(this.p.min);
            this.p.center = (this.p.min + this.p.max) / 2.0;

            int length = this.lista.Length;

            this.LB_condition.Text    = lista[length - 4];
            this.LB_intermediate.Text = lista[length - 3];
            //this.TB_Question.Text = varName;
            TreeNode Root = this.TR_mdSearch.Nodes[0];

            Root.Text = "[" + this.p.min + ", " + this.p.max + "]";
            TreeNodeCollection Children = Root.Nodes;

            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, this.p.min + ", " + this.p.max);
            dataPoint1.Label = "Intervalo Inferior";
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, this.p.min + ", " + this.p.max);
            dataPoint2.Label = "Intervalo Superior";
            FG_buscaMediana.Series["Decisão"].Points[0] = dataPoint1;
            FG_buscaMediana.Series["Decisão"].Points[1] = dataPoint2;

            Children[0].Text = lista[length - 2];
            Children[1].Text = lista[length - 1];
            this.InitializeComponent_DistributionResults(this.lista);
        }
        /// <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.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(0D, 100D);
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // chart1
            // 
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(18, 20);
            this.chart1.Name = "chart1";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(383, 329);
            this.chart1.TabIndex = 0;
            this.chart1.Text = "chart1";
            // 
            // ApplicationControl
            // 
            this.Controls.Add(this.chart1);
            this.Name = "ApplicationControl";
            this.Size = new System.Drawing.Size(490, 467);
            ((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()
 {
     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.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(0D, 100D);
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(18, 20);
     this.chart1.Name     = "chart1";
     series1.ChartArea    = "ChartArea1";
     series1.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Legend       = "Legend1";
     series1.Name         = "Series1";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(383, 329);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // ApplicationControl
     //
     this.Controls.Add(this.chart1);
     this.Name = "ApplicationControl";
     this.Size = new System.Drawing.Size(490, 467);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
예제 #35
0
파일: Form1.cs 프로젝트: takuminish/Kakeibo
        private void Zandaka()
        {
            DateTime dtNow  = DateTime.Now;
            int      iMonth = dtNow.Month;

            chart1.Series.Clear();
            chart1.Series.Add("残高");

            chart1.Series["残高"].ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Column;
            string[] xValues = new string[31];
            int[]    yValues = new int[31];

            Chartinit4(xValues, yValues, dtNow);
            ChartSet4(xValues, yValues, dtNow);
            for (int i = 0; i < xValues.Length; i++)
            {
                //グラフに追加するデータクラスを生成
                System.Windows.Forms.DataVisualization.Charting.DataPoint dp = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
                dp.SetValueXY(xValues[i], yValues[i]); //XとYの値を設定
                dp.IsValueShownAsLabel = true;         //グラフに値を表示するように指定
                chart1.Series["残高"].Points.Add(dp);    //グラフにデータ追加
            }
        }
        /// <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(ActivityChart));
            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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 17D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4D);
            this.contextMenuStripGraph = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.minutesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.hoursToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.percentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.taskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
            this.groupByTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.groupByTaskPerentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.visualSummary = new BritishMicro.TaskClerk.UI.VisualSummary();
            this.contextMenuStripGraph.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // contextMenuStripGraph
            // 
            this.contextMenuStripGraph.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.minutesToolStripMenuItem,
            this.hoursToolStripMenuItem,
            this.percentToolStripMenuItem,
            this.taskToolStripMenuItem,
            this.toolStripMenuItem3,
            this.groupByTaskToolStripMenuItem,
            this.groupByTaskPerentToolStripMenuItem});
            this.contextMenuStripGraph.Name = "contextMenuStripGraph";
            resources.ApplyResources(this.contextMenuStripGraph, "contextMenuStripGraph");
            // 
            // minutesToolStripMenuItem
            // 
            this.minutesToolStripMenuItem.Checked = true;
            this.minutesToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.minutesToolStripMenuItem.Name = "minutesToolStripMenuItem";
            resources.ApplyResources(this.minutesToolStripMenuItem, "minutesToolStripMenuItem");
            this.minutesToolStripMenuItem.Tag = "view";
            this.minutesToolStripMenuItem.Click += new System.EventHandler(this.ChangeGraphView_Click);
            // 
            // hoursToolStripMenuItem
            // 
            this.hoursToolStripMenuItem.Name = "hoursToolStripMenuItem";
            resources.ApplyResources(this.hoursToolStripMenuItem, "hoursToolStripMenuItem");
            this.hoursToolStripMenuItem.Tag = "view";
            this.hoursToolStripMenuItem.Click += new System.EventHandler(this.ChangeGraphView_Click);
            // 
            // percentToolStripMenuItem
            // 
            this.percentToolStripMenuItem.Name = "percentToolStripMenuItem";
            resources.ApplyResources(this.percentToolStripMenuItem, "percentToolStripMenuItem");
            this.percentToolStripMenuItem.Tag = "view";
            this.percentToolStripMenuItem.Click += new System.EventHandler(this.ChangeGraphView_Click);
            // 
            // taskToolStripMenuItem
            // 
            this.taskToolStripMenuItem.Name = "taskToolStripMenuItem";
            resources.ApplyResources(this.taskToolStripMenuItem, "taskToolStripMenuItem");
            this.taskToolStripMenuItem.Tag = "view";
            this.taskToolStripMenuItem.Click += new System.EventHandler(this.ChangeGraphView_Click);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            resources.ApplyResources(this.toolStripMenuItem3, "toolStripMenuItem3");
            // 
            // groupByTaskToolStripMenuItem
            // 
            this.groupByTaskToolStripMenuItem.Checked = true;
            this.groupByTaskToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.groupByTaskToolStripMenuItem.Name = "groupByTaskToolStripMenuItem";
            resources.ApplyResources(this.groupByTaskToolStripMenuItem, "groupByTaskToolStripMenuItem");
            this.groupByTaskToolStripMenuItem.Tag = "group";
            this.groupByTaskToolStripMenuItem.Click += new System.EventHandler(this.ChangeGraphGroup_Click);
            // 
            // groupByTaskPerentToolStripMenuItem
            // 
            this.groupByTaskPerentToolStripMenuItem.Name = "groupByTaskPerentToolStripMenuItem";
            resources.ApplyResources(this.groupByTaskPerentToolStripMenuItem, "groupByTaskPerentToolStripMenuItem");
            this.groupByTaskPerentToolStripMenuItem.Tag = "group";
            this.groupByTaskPerentToolStripMenuItem.Click += new System.EventHandler(this.ChangeGraphGroup_Click);
            // 
            // chart1
            // 
            resources.ApplyResources(this.chart1, "chart1");
            this.chart1.BackColor = System.Drawing.Color.Transparent;
            this.chart1.BorderlineColor = System.Drawing.Color.Transparent;
            chartArea1.BackColor = System.Drawing.Color.WhiteSmoke;
            chartArea1.BackSecondaryColor = System.Drawing.Color.WhiteSmoke;
            chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea1.Name = "ChartArea1";
            chartArea1.ShadowOffset = 4;
            this.chart1.ChartAreas.Add(chartArea1);
            legend1.BackColor = System.Drawing.Color.WhiteSmoke;
            legend1.BorderColor = System.Drawing.Color.Black;
            legend1.Name = "Legend1";
            legend1.ShadowOffset = 4;
            this.chart1.Legends.Add(legend1);
            this.chart1.Name = "chart1";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series1.LabelBackColor = System.Drawing.Color.Transparent;
            series1.LabelBorderColor = System.Drawing.Color.Transparent;
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            dataPoint1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.None;
            dataPoint1.BackHatchStyle = System.Windows.Forms.DataVisualization.Charting.ChartHatchStyle.None;
            dataPoint1.Color = System.Drawing.Color.Red;
            dataPoint1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataPoint1.IsVisibleInLegend = true;
            dataPoint1.Label = "mike";
            dataPoint1.LabelBackColor = System.Drawing.Color.WhiteSmoke;
            dataPoint1.LabelBorderColor = System.Drawing.Color.Transparent;
            dataPoint1.LabelBorderWidth = 4;
            dataPoint1.LabelForeColor = System.Drawing.Color.Black;
            dataPoint1.ToolTip = "test";
            dataPoint2.BorderColor = System.Drawing.Color.Empty;
            dataPoint2.Color = System.Drawing.Color.Yellow;
            dataPoint2.Label = "geoff";
            dataPoint2.LabelToolTip = "12";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            this.chart1.Series.Add(series1);
            // 
            // visualSummary
            // 
            resources.ApplyResources(this.visualSummary, "visualSummary");
            this.visualSummary.Name = "visualSummary";
            // 
            // ActivityChart
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.visualSummary);
            this.Name = "ActivityChart";
            this.contextMenuStripGraph.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);

        }
예제 #37
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.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, 3D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 7D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 8D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 6D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 7D);
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 3D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 6D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 5D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 8D);
            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();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = 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 series4 = 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.Legend legend4 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series5 = 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.Legend legend5 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series6 = 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.Legend legend6 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series7 = 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.Legend legend7 = 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.Series series9 = new System.Windows.Forms.DataVisualization.Charting.Series();
            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.Series series13 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title7 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea8 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend8 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            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.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();
            System.Windows.Forms.DataVisualization.Charting.Series series19 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title8 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.chartPatientAss = new LQT.GUI.LQTChart();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.chartViralload = new LQT.GUI.LQTChart();
            this.chartRapidTest = new LQT.GUI.LQTChart();
            this.chartHematology = new LQT.GUI.LQTChart();
            this.chartCd4Assumptions = new LQT.GUI.LQTChart();
            this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
            this.chartTotalCost = new LQT.GUI.LQTChart();
            this.chartChemistry = new LQT.GUI.LQTChart();
            this.chartOthertest = new LQT.GUI.LQTChart();
            this.tableLayoutPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartPatientAss)).BeginInit();
            this.tableLayoutPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartViralload)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartRapidTest)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartHematology)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartCd4Assumptions)).BeginInit();
            this.tableLayoutPanel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartTotalCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartChemistry)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartOthertest)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.AutoScroll = true;
            this.tableLayoutPanel3.ColumnCount = 1;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel3.Controls.Add(this.chartPatientAss, 0, 0);
            this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel4, 0, 1);
            this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel5, 0, 2);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.Padding = new System.Windows.Forms.Padding(4, 4, 6, 4);
            this.tableLayoutPanel3.RowCount = 3;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 600F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel3.Size = new System.Drawing.Size(826, 1433);
            this.tableLayoutPanel3.TabIndex = 31;
            // 
            // chartPatientAss
            // 
            this.chartPatientAss.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
            this.chartPatientAss.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartPatientAss.BackSecondaryColor = System.Drawing.Color.White;
            this.chartPatientAss.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartPatientAss.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartPatientAss.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.IsLabelAutoFit = false;
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F);
            chartArea1.AxisX.LabelStyle.Interval = 1D;
            chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Horizontal;
            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(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.Title = "Forecast Estimate";
            chartArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
            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 = "Default";
            chartArea1.ShadowColor = System.Drawing.Color.Transparent;
            this.chartPatientAss.ChartAreas.Add(chartArea1);
            this.chartPatientAss.Dock = System.Windows.Forms.DockStyle.Fill;
            legend1.BackColor = System.Drawing.Color.Transparent;
            legend1.DockedToChartArea = "Default";
            legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            legend1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            legend1.IsDockedInsideChartArea = false;
            legend1.IsTextAutoFit = false;
            legend1.Name = "Default";
            this.chartPatientAss.Legends.Add(legend1);
            this.chartPatientAss.Location = new System.Drawing.Point(7, 7);
            this.chartPatientAss.Name = "chartPatientAss";
            series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            series1.ChartArea = "Default";
            series1.IsValueShownAsLabel = true;
            series1.Legend = "Default";
            series1.LegendText = "Patients In Treatment";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            series2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            series2.ChartArea = "Default";
            series2.IsValueShownAsLabel = true;
            series2.Legend = "Default";
            series2.LegendText = "Patients In Pre-ART";
            series2.Name = "Series4";
            series2.Points.Add(dataPoint6);
            series2.Points.Add(dataPoint7);
            series2.Points.Add(dataPoint8);
            series2.Points.Add(dataPoint9);
            series2.Points.Add(dataPoint10);
            series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            this.chartPatientAss.Series.Add(series1);
            this.chartPatientAss.Series.Add(series2);
            this.chartPatientAss.Size = new System.Drawing.Size(793, 294);
            this.chartPatientAss.TabIndex = 3;
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title1.ForeColor = System.Drawing.Color.Navy;
            title1.Name = "Title1";
            title1.Text = "Forecast Result  - Number of Patients";
            this.chartPatientAss.Titles.Add(title1);
            // 
            // tableLayoutPanel4
            // 
            this.tableLayoutPanel4.ColumnCount = 2;
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel4.Controls.Add(this.chartViralload, 0, 1);
            this.tableLayoutPanel4.Controls.Add(this.chartRapidTest, 0, 1);
            this.tableLayoutPanel4.Controls.Add(this.chartHematology, 1, 0);
            this.tableLayoutPanel4.Controls.Add(this.chartCd4Assumptions, 0, 0);
            this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel4.Location = new System.Drawing.Point(4, 304);
            this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
            this.tableLayoutPanel4.Name = "tableLayoutPanel4";
            this.tableLayoutPanel4.Padding = new System.Windows.Forms.Padding(3);
            this.tableLayoutPanel4.RowCount = 2;
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel4.Size = new System.Drawing.Size(799, 600);
            this.tableLayoutPanel4.TabIndex = 4;
            // 
            // chartViralload
            // 
            this.chartViralload.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartViralload.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartViralload.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartViralload.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartViralload.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea2.AxisX.IsLabelAutoFit = false;
            chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            chartArea2.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea2.BackSecondaryColor = System.Drawing.Color.White;
            chartArea2.BorderColor = System.Drawing.Color.LightGray;
            chartArea2.Name = "ChartArea1";
            chartArea2.ShadowColor = System.Drawing.Color.Transparent;
            this.chartViralload.ChartAreas.Add(chartArea2);
            this.chartViralload.Dock = System.Windows.Forms.DockStyle.Fill;
            legend2.Enabled = false;
            legend2.Name = "Legend1";
            this.chartViralload.Legends.Add(legend2);
            this.chartViralload.Location = new System.Drawing.Point(6, 303);
            this.chartViralload.Name = "chartViralload";
            series3.BorderColor = System.Drawing.SystemColors.ControlDarkDark;
            series3.ChartArea = "ChartArea1";
            series3.IsValueShownAsLabel = true;
            series3.Legend = "Legend1";
            series3.Name = "Series1";
            this.chartViralload.Series.Add(series3);
            this.chartViralload.Size = new System.Drawing.Size(390, 291);
            this.chartViralload.TabIndex = 10;
            this.chartViralload.Text = "lqtChart3";
            title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title2.ForeColor = System.Drawing.Color.Navy;
            title2.Name = "Title1";
            title2.Text = "Forecast Result  - Number of VIRAL LOAD Tests";
            this.chartViralload.Titles.Add(title2);
            // 
            // chartRapidTest
            // 
            this.chartRapidTest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartRapidTest.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartRapidTest.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartRapidTest.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartRapidTest.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea3.AxisX.IsLabelAutoFit = false;
            chartArea3.AxisX.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea3.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            chartArea3.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea3.BackSecondaryColor = System.Drawing.Color.White;
            chartArea3.BorderColor = System.Drawing.Color.LightGray;
            chartArea3.Name = "ChartArea1";
            chartArea3.ShadowColor = System.Drawing.Color.Transparent;
            this.chartRapidTest.ChartAreas.Add(chartArea3);
            this.chartRapidTest.Dock = System.Windows.Forms.DockStyle.Fill;
            legend3.Enabled = false;
            legend3.Name = "Legend1";
            this.chartRapidTest.Legends.Add(legend3);
            this.chartRapidTest.Location = new System.Drawing.Point(402, 303);
            this.chartRapidTest.Name = "chartRapidTest";
            series4.BorderColor = System.Drawing.SystemColors.ControlDarkDark;
            series4.ChartArea = "ChartArea1";
            series4.IsValueShownAsLabel = true;
            series4.Legend = "Legend1";
            series4.Name = "Series1";
            this.chartRapidTest.Series.Add(series4);
            this.chartRapidTest.Size = new System.Drawing.Size(391, 291);
            this.chartRapidTest.TabIndex = 9;
            this.chartRapidTest.Text = "lqtChart3";
            title3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title3.ForeColor = System.Drawing.Color.Navy;
            title3.Name = "Title1";
            title3.Text = "Forecast Result  - Number of HIV RAPID Tests";
            this.chartRapidTest.Titles.Add(title3);
            // 
            // chartHematology
            // 
            this.chartHematology.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartHematology.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartHematology.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartHematology.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartHematology.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea4.AxisX.IsLabelAutoFit = false;
            chartArea4.AxisX.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea4.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            chartArea4.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea4.BackSecondaryColor = System.Drawing.Color.White;
            chartArea4.BorderColor = System.Drawing.Color.LightGray;
            chartArea4.Name = "ChartArea1";
            chartArea4.ShadowColor = System.Drawing.Color.Transparent;
            this.chartHematology.ChartAreas.Add(chartArea4);
            this.chartHematology.Dock = System.Windows.Forms.DockStyle.Fill;
            legend4.Enabled = false;
            legend4.Name = "Legend1";
            this.chartHematology.Legends.Add(legend4);
            this.chartHematology.Location = new System.Drawing.Point(402, 6);
            this.chartHematology.Name = "chartHematology";
            series5.BorderColor = System.Drawing.SystemColors.ControlDarkDark;
            series5.ChartArea = "ChartArea1";
            series5.IsValueShownAsLabel = true;
            series5.Legend = "Legend1";
            series5.Name = "Series1";
            this.chartHematology.Series.Add(series5);
            this.chartHematology.Size = new System.Drawing.Size(391, 291);
            this.chartHematology.TabIndex = 6;
            this.chartHematology.Text = "lqtChart3";
            title4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title4.ForeColor = System.Drawing.Color.Navy;
            title4.Name = "Title1";
            title4.Text = "Forecast Result  - Number of HEMATOLOGY Tests";
            this.chartHematology.Titles.Add(title4);
            // 
            // chartCd4Assumptions
            // 
            this.chartCd4Assumptions.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartCd4Assumptions.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartCd4Assumptions.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartCd4Assumptions.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartCd4Assumptions.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea5.AxisX.IsLabelAutoFit = false;
            chartArea5.AxisX.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            chartArea5.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea5.BackSecondaryColor = System.Drawing.Color.White;
            chartArea5.BorderColor = System.Drawing.Color.LightGray;
            chartArea5.Name = "ChartArea1";
            chartArea5.ShadowColor = System.Drawing.Color.Transparent;
            this.chartCd4Assumptions.ChartAreas.Add(chartArea5);
            this.chartCd4Assumptions.Dock = System.Windows.Forms.DockStyle.Fill;
            legend5.Enabled = false;
            legend5.Name = "Legend1";
            this.chartCd4Assumptions.Legends.Add(legend5);
            this.chartCd4Assumptions.Location = new System.Drawing.Point(6, 6);
            this.chartCd4Assumptions.Name = "chartCd4Assumptions";
            series6.BorderColor = System.Drawing.SystemColors.ControlDarkDark;
            series6.ChartArea = "ChartArea1";
            series6.IsValueShownAsLabel = true;
            series6.Legend = "Legend1";
            series6.Name = "Series1";
            this.chartCd4Assumptions.Series.Add(series6);
            this.chartCd4Assumptions.Size = new System.Drawing.Size(390, 291);
            this.chartCd4Assumptions.TabIndex = 8;
            this.chartCd4Assumptions.Text = "lqtChart3";
            title5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title5.ForeColor = System.Drawing.Color.Navy;
            title5.Name = "Title1";
            title5.Text = "Forecast Result  - Number of CD4 Tests";
            this.chartCd4Assumptions.Titles.Add(title5);
            // 
            // tableLayoutPanel5
            // 
            this.tableLayoutPanel5.ColumnCount = 1;
            this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel5.Controls.Add(this.chartTotalCost, 0, 2);
            this.tableLayoutPanel5.Controls.Add(this.chartChemistry, 0, 0);
            this.tableLayoutPanel5.Controls.Add(this.chartOthertest, 0, 1);
            this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel5.Location = new System.Drawing.Point(7, 907);
            this.tableLayoutPanel5.Name = "tableLayoutPanel5";
            this.tableLayoutPanel5.Padding = new System.Windows.Forms.Padding(4);
            this.tableLayoutPanel5.RowCount = 3;
            this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
            this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
            this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
            this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel5.Size = new System.Drawing.Size(793, 910);
            this.tableLayoutPanel5.TabIndex = 5;
            // 
            // chartTotalCost
            // 
            this.chartTotalCost.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartTotalCost.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartTotalCost.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartTotalCost.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartTotalCost.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea6.AxisX.Interval = 1D;
            chartArea6.AxisX.IsLabelAutoFit = false;
            chartArea6.AxisX.LabelStyle.Font = new System.Drawing.Font("Arial Narrow", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea6.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea6.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea6.AxisY.IsLabelAutoFit = false;
            chartArea6.AxisY.LabelStyle.Angle = -45;
            chartArea6.AxisY.LabelStyle.Font = new System.Drawing.Font("Arial", 8F);
            chartArea6.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea6.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea6.BackColor = System.Drawing.Color.Transparent;
            chartArea6.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea6.BorderColor = System.Drawing.Color.Transparent;
            chartArea6.Name = "ChartArea1";
            this.chartTotalCost.ChartAreas.Add(chartArea6);
            this.chartTotalCost.Dock = System.Windows.Forms.DockStyle.Fill;
            legend6.Alignment = System.Drawing.StringAlignment.Center;
            legend6.BackColor = System.Drawing.Color.Transparent;
            legend6.DockedToChartArea = "ChartArea1";
            legend6.Name = "Legend1";
            this.chartTotalCost.Legends.Add(legend6);
            this.chartTotalCost.Location = new System.Drawing.Point(7, 607);
            this.chartTotalCost.Name = "chartTotalCost";
            series7.ChartArea = "ChartArea1";
            series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series7.IsValueShownAsLabel = true;
            series7.Legend = "Legend1";
            series7.Name = "Series2";
            series7.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            this.chartTotalCost.Series.Add(series7);
            this.chartTotalCost.Size = new System.Drawing.Size(779, 296);
            this.chartTotalCost.TabIndex = 13;
            this.chartTotalCost.Text = "chart1";
            title6.Alignment = System.Drawing.ContentAlignment.TopCenter;
            title6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            title6.ForeColor = System.Drawing.Color.Navy;
            title6.Name = "Title2";
            title6.Text = "Forecast Result - Total Cost";
            this.chartTotalCost.Titles.Add(title6);
            // 
            // chartChemistry
            // 
            this.chartChemistry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartChemistry.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartChemistry.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartChemistry.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartChemistry.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea7.AxisX.IsLabelAutoFit = false;
            chartArea7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            chartArea7.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea7.Name = "ChartArea1";
            this.chartChemistry.ChartAreas.Add(chartArea7);
            this.chartChemistry.Dock = System.Windows.Forms.DockStyle.Fill;
            legend7.Alignment = System.Drawing.StringAlignment.Center;
            legend7.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.SameAsSeriesOrder;
            legend7.Name = "Legend1";
            this.chartChemistry.Legends.Add(legend7);
            this.chartChemistry.Location = new System.Drawing.Point(7, 7);
            this.chartChemistry.Name = "chartChemistry";
            series8.ChartArea = "ChartArea1";
            series8.IsValueShownAsLabel = true;
            series8.LabelAngle = 90;
            series8.Legend = "Legend1";
            series8.Name = "Tests based on protocols";
            series9.ChartArea = "ChartArea1";
            series9.Legend = "Legend1";
            series9.Name = "Symptom-Directed Tests";
            series10.ChartArea = "ChartArea1";
            series10.Legend = "Legend1";
            series10.Name = "Repeats due to Clinician Request";
            series11.ChartArea = "ChartArea1";
            series11.Color = System.Drawing.Color.Violet;
            series11.Legend = "Legend1";
            series11.Name = "Invalid tests and Wastage";
            series12.ChartArea = "ChartArea1";
            series12.Color = System.Drawing.Color.DarkSeaGreen;
            series12.Legend = "Legend1";
            series12.Name = "Buffer Stock";
            series13.ChartArea = "ChartArea1";
            series13.Color = System.Drawing.Color.Navy;
            series13.Legend = "Legend1";
            series13.Name = "Reagents to Run Controls";
            this.chartChemistry.Series.Add(series8);
            this.chartChemistry.Series.Add(series9);
            this.chartChemistry.Series.Add(series10);
            this.chartChemistry.Series.Add(series11);
            this.chartChemistry.Series.Add(series12);
            this.chartChemistry.Series.Add(series13);
            this.chartChemistry.Size = new System.Drawing.Size(779, 294);
            this.chartChemistry.TabIndex = 7;
            this.chartChemistry.Text = "lqtChart1";
            title7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title7.ForeColor = System.Drawing.Color.Navy;
            title7.Name = "Title1";
            title7.Text = "Forecast Result  - Number of CHEMISRTY Tests";
            this.chartChemistry.Titles.Add(title7);
            // 
            // chartOthertest
            // 
            this.chartOthertest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.chartOthertest.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chartOthertest.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            this.chartOthertest.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            this.chartOthertest.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
            chartArea8.AxisX.IsLabelAutoFit = false;
            chartArea8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            chartArea8.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea8.Name = "ChartArea1";
            this.chartOthertest.ChartAreas.Add(chartArea8);
            this.chartOthertest.Dock = System.Windows.Forms.DockStyle.Fill;
            legend8.Alignment = System.Drawing.StringAlignment.Center;
            legend8.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.SameAsSeriesOrder;
            legend8.Name = "Legend1";
            this.chartOthertest.Legends.Add(legend8);
            this.chartOthertest.Location = new System.Drawing.Point(7, 307);
            this.chartOthertest.Name = "chartOthertest";
            series14.ChartArea = "ChartArea1";
            series14.IsValueShownAsLabel = true;
            series14.LabelAngle = 90;
            series14.Legend = "Legend1";
            series14.Name = "Tests based on protocols";
            series15.ChartArea = "ChartArea1";
            series15.Legend = "Legend1";
            series15.Name = "Symptom-Directed Tests";
            series16.ChartArea = "ChartArea1";
            series16.Legend = "Legend1";
            series16.Name = "Repeats due to Clinician Request";
            series17.ChartArea = "ChartArea1";
            series17.Color = System.Drawing.Color.Violet;
            series17.Legend = "Legend1";
            series17.Name = "Invalid tests and Wastage";
            series18.ChartArea = "ChartArea1";
            series18.Color = System.Drawing.Color.DarkSeaGreen;
            series18.Legend = "Legend1";
            series18.Name = "Buffer Stock";
            series19.ChartArea = "ChartArea1";
            series19.Color = System.Drawing.Color.Navy;
            series19.Legend = "Legend1";
            series19.Name = "Reagents to Run Controls";
            this.chartOthertest.Series.Add(series14);
            this.chartOthertest.Series.Add(series15);
            this.chartOthertest.Series.Add(series16);
            this.chartOthertest.Series.Add(series17);
            this.chartOthertest.Series.Add(series18);
            this.chartOthertest.Series.Add(series19);
            this.chartOthertest.Size = new System.Drawing.Size(779, 294);
            this.chartOthertest.TabIndex = 12;
            this.chartOthertest.Text = "lqtChart1";
            title8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title8.ForeColor = System.Drawing.Color.Navy;
            title8.Name = "Title1";
            title8.Text = "Forecast Result  - Number of OTHER Tests";
            this.chartOthertest.Titles.Add(title8);
            // 
            // CalculateForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tableLayoutPanel3);
            this.Name = "CalculateForm";
            this.Size = new System.Drawing.Size(826, 1433);
            this.tableLayoutPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chartPatientAss)).EndInit();
            this.tableLayoutPanel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chartViralload)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartRapidTest)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartHematology)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartCd4Assumptions)).EndInit();
            this.tableLayoutPanel5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chartTotalCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartChemistry)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartOthertest)).EndInit();
            this.ResumeLayout(false);

        }
예제 #38
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.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(41611D, 0D);
            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 series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.bt_volta = new System.Windows.Forms.Button();
            this.bt_Envia = new System.Windows.Forms.Button();
            this.tB_longitude = new System.Windows.Forms.TextBox();
            this.tB_latitude = new System.Windows.Forms.TextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label_longitude = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label_lattitude = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.gbConexao = new System.Windows.Forms.GroupBox();
            this.bt_VP = new System.Windows.Forms.Button();
            this.bt_Desconectar = new System.Windows.Forms.Button();
            this.labelPortasDisponiveis = new System.Windows.Forms.Label();
            this.bt_Conectar = new System.Windows.Forms.Button();
            this.cb_portas = new System.Windows.Forms.ComboBox();
            this.statusBar = new System.Windows.Forms.StatusStrip();
            this.statusLabelTitulo = new System.Windows.Forms.ToolStripStatusLabel();
            this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.conectarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dadosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sairToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.gB_temperatura = new System.Windows.Forms.GroupBox();
            this.chart_temperatura = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tB_temperatura = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.gB_umidade = new System.Windows.Forms.GroupBox();
            this.chart_umidade = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tB_umi = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.timer = new System.Windows.Forms.Timer(this.components);
            this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
            this.bt_para = new System.Windows.Forms.Button();
            this.bt_grava = new System.Windows.Forms.Button();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.gbConexao.SuspendLayout();
            this.statusBar.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.gB_temperatura.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart_temperatura)).BeginInit();
            this.gB_umidade.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart_umidade)).BeginInit();
            this.SuspendLayout();
            // 
            // groupBox2
            // 
            this.groupBox2.AutoSize = true;
            this.groupBox2.Controls.Add(this.groupBox3);
            this.groupBox2.Controls.Add(this.groupBox4);
            this.groupBox2.Location = new System.Drawing.Point(392, 27);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(492, 128);
            this.groupBox2.TabIndex = 15;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Coordenadas";
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.bt_volta);
            this.groupBox3.Controls.Add(this.bt_Envia);
            this.groupBox3.Controls.Add(this.tB_longitude);
            this.groupBox3.Controls.Add(this.tB_latitude);
            this.groupBox3.Controls.Add(this.label8);
            this.groupBox3.Controls.Add(this.label7);
            this.groupBox3.Location = new System.Drawing.Point(201, 19);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(284, 90);
            this.groupBox3.TabIndex = 1;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Selecionada";
            // 
            // bt_volta
            // 
            this.bt_volta.Location = new System.Drawing.Point(195, 61);
            this.bt_volta.Name = "bt_volta";
            this.bt_volta.Size = new System.Drawing.Size(75, 23);
            this.bt_volta.TabIndex = 11;
            this.bt_volta.Text = "Voltar";
            this.bt_volta.UseVisualStyleBackColor = true;
            this.bt_volta.Click += new System.EventHandler(this.bt_volta_Click);
            // 
            // bt_Envia
            // 
            this.bt_Envia.Location = new System.Drawing.Point(195, 26);
            this.bt_Envia.Name = "bt_Envia";
            this.bt_Envia.Size = new System.Drawing.Size(75, 23);
            this.bt_Envia.TabIndex = 10;
            this.bt_Envia.Text = "Enviar";
            this.bt_Envia.UseVisualStyleBackColor = true;
            // 
            // tB_longitude
            // 
            this.tB_longitude.Location = new System.Drawing.Point(64, 60);
            this.tB_longitude.Name = "tB_longitude";
            this.tB_longitude.Size = new System.Drawing.Size(100, 20);
            this.tB_longitude.TabIndex = 6;
            // 
            // tB_latitude
            // 
            this.tB_latitude.Location = new System.Drawing.Point(64, 28);
            this.tB_latitude.Name = "tB_latitude";
            this.tB_latitude.Size = new System.Drawing.Size(100, 20);
            this.tB_latitude.TabIndex = 5;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(7, 60);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(60, 13);
            this.label8.TabIndex = 4;
            this.label8.Text = "Longitude: ";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(7, 28);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(48, 13);
            this.label7.TabIndex = 1;
            this.label7.Text = "Latitude:";
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.label6);
            this.groupBox4.Controls.Add(this.label_longitude);
            this.groupBox4.Controls.Add(this.label4);
            this.groupBox4.Controls.Add(this.label3);
            this.groupBox4.Controls.Add(this.label_lattitude);
            this.groupBox4.Controls.Add(this.label5);
            this.groupBox4.Location = new System.Drawing.Point(9, 19);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(186, 90);
            this.groupBox4.TabIndex = 0;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Atual";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(149, 60);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(35, 13);
            this.label6.TabIndex = 5;
            this.label6.Text = "Oeste";
            // 
            // label_longitude
            // 
            this.label_longitude.AutoSize = true;
            this.label_longitude.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_longitude.Location = new System.Drawing.Point(67, 63);
            this.label_longitude.Name = "label_longitude";
            this.label_longitude.Size = new System.Drawing.Size(0, 13);
            this.label_longitude.TabIndex = 4;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(7, 60);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(60, 13);
            this.label4.TabIndex = 3;
            this.label4.Text = "Longitude: ";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(149, 20);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(22, 13);
            this.label3.TabIndex = 2;
            this.label3.Text = "Sul";
            // 
            // label_lattitude
            // 
            this.label_lattitude.AutoSize = true;
            this.label_lattitude.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label_lattitude.Location = new System.Drawing.Point(67, 20);
            this.label_lattitude.Name = "label_lattitude";
            this.label_lattitude.Size = new System.Drawing.Size(0, 13);
            this.label_lattitude.TabIndex = 1;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(7, 20);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(48, 13);
            this.label5.TabIndex = 0;
            this.label5.Text = "Latitude:";
            // 
            // gbConexao
            // 
            this.gbConexao.AutoSize = true;
            this.gbConexao.Controls.Add(this.bt_VP);
            this.gbConexao.Controls.Add(this.bt_Desconectar);
            this.gbConexao.Controls.Add(this.labelPortasDisponiveis);
            this.gbConexao.Controls.Add(this.bt_Conectar);
            this.gbConexao.Controls.Add(this.cb_portas);
            this.gbConexao.Location = new System.Drawing.Point(6, 27);
            this.gbConexao.Name = "gbConexao";
            this.gbConexao.Size = new System.Drawing.Size(355, 128);
            this.gbConexao.TabIndex = 14;
            this.gbConexao.TabStop = false;
            this.gbConexao.Text = "Conexão";
            // 
            // bt_VP
            // 
            this.bt_VP.Location = new System.Drawing.Point(87, 56);
            this.bt_VP.Margin = new System.Windows.Forms.Padding(2);
            this.bt_VP.Name = "bt_VP";
            this.bt_VP.Size = new System.Drawing.Size(181, 23);
            this.bt_VP.TabIndex = 8;
            this.bt_VP.Text = "Verificar Portas";
            this.bt_VP.UseVisualStyleBackColor = true;
            this.bt_VP.Click += new System.EventHandler(this.bt_VP_Click);
            // 
            // bt_Desconectar
            // 
            this.bt_Desconectar.Enabled = false;
            this.bt_Desconectar.Location = new System.Drawing.Point(186, 84);
            this.bt_Desconectar.Name = "bt_Desconectar";
            this.bt_Desconectar.Size = new System.Drawing.Size(158, 25);
            this.bt_Desconectar.TabIndex = 3;
            this.bt_Desconectar.Text = "Desconectar";
            this.bt_Desconectar.UseVisualStyleBackColor = true;
            this.bt_Desconectar.Click += new System.EventHandler(this.bt_Desconectar_Click);
            // 
            // labelPortasDisponiveis
            // 
            this.labelPortasDisponiveis.AutoSize = true;
            this.labelPortasDisponiveis.Location = new System.Drawing.Point(6, 22);
            this.labelPortasDisponiveis.Name = "labelPortasDisponiveis";
            this.labelPortasDisponiveis.Size = new System.Drawing.Size(97, 13);
            this.labelPortasDisponiveis.TabIndex = 2;
            this.labelPortasDisponiveis.Text = "Portas disponíveis:";
            // 
            // bt_Conectar
            // 
            this.bt_Conectar.Location = new System.Drawing.Point(9, 84);
            this.bt_Conectar.Name = "bt_Conectar";
            this.bt_Conectar.Size = new System.Drawing.Size(158, 25);
            this.bt_Conectar.TabIndex = 1;
            this.bt_Conectar.Text = "Conectar";
            this.bt_Conectar.UseVisualStyleBackColor = true;
            this.bt_Conectar.Click += new System.EventHandler(this.bt_Conectar_Click);
            // 
            // cb_portas
            // 
            this.cb_portas.FormattingEnabled = true;
            this.cb_portas.Location = new System.Drawing.Point(109, 19);
            this.cb_portas.Name = "cb_portas";
            this.cb_portas.Size = new System.Drawing.Size(136, 21);
            this.cb_portas.TabIndex = 0;
            // 
            // statusBar
            // 
            this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusLabelTitulo,
            this.statusLabel,
            this.toolStripStatusLabel1});
            this.statusBar.Location = new System.Drawing.Point(0, 532);
            this.statusBar.Name = "statusBar";
            this.statusBar.Size = new System.Drawing.Size(887, 22);
            this.statusBar.TabIndex = 16;
            // 
            // statusLabelTitulo
            // 
            this.statusLabelTitulo.Name = "statusLabelTitulo";
            this.statusLabelTitulo.Size = new System.Drawing.Size(45, 17);
            this.statusLabelTitulo.Text = "Status: ";
            // 
            // statusLabel
            // 
            this.statusLabel.Name = "statusLabel";
            this.statusLabel.Size = new System.Drawing.Size(82, 17);
            this.statusLabel.Text = "Desconhecido";
            // 
            // toolStripStatusLabel1
            // 
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(10, 17);
            this.toolStripStatusLabel1.Text = "|";
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.conectarToolStripMenuItem,
            this.dadosToolStripMenuItem,
            this.sairToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(887, 24);
            this.menuStrip1.TabIndex = 17;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // conectarToolStripMenuItem
            // 
            this.conectarToolStripMenuItem.Name = "conectarToolStripMenuItem";
            this.conectarToolStripMenuItem.Size = new System.Drawing.Size(67, 20);
            this.conectarToolStripMenuItem.Text = "Conectar";
            // 
            // dadosToolStripMenuItem
            // 
            this.dadosToolStripMenuItem.Name = "dadosToolStripMenuItem";
            this.dadosToolStripMenuItem.Size = new System.Drawing.Size(103, 20);
            this.dadosToolStripMenuItem.Text = "Visualizar dados";
            this.dadosToolStripMenuItem.Click += new System.EventHandler(this.dadosToolStripMenuItem_Click);
            // 
            // sairToolStripMenuItem
            // 
            this.sairToolStripMenuItem.Name = "sairToolStripMenuItem";
            this.sairToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
            this.sairToolStripMenuItem.Text = "Sair";
            // 
            // gB_temperatura
            // 
            this.gB_temperatura.AutoSize = true;
            this.gB_temperatura.Controls.Add(this.chart_temperatura);
            this.gB_temperatura.Controls.Add(this.tB_temperatura);
            this.gB_temperatura.Controls.Add(this.label1);
            this.gB_temperatura.Location = new System.Drawing.Point(392, 167);
            this.gB_temperatura.Name = "gB_temperatura";
            this.gB_temperatura.Size = new System.Drawing.Size(355, 354);
            this.gB_temperatura.TabIndex = 18;
            this.gB_temperatura.TabStop = false;
            this.gB_temperatura.Text = "Temperatura";
            // 
            // chart_temperatura
            // 
            chartArea1.Name = "ChartArea1";
            this.chart_temperatura.ChartAreas.Add(chartArea1);
            this.chart_temperatura.Enabled = false;
            legend1.Name = "Legend1";
            this.chart_temperatura.Legends.Add(legend1);
            this.chart_temperatura.Location = new System.Drawing.Point(9, 51);
            this.chart_temperatura.Name = "chart_temperatura";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Legend = "Legend1";
            series1.Name = "Temperatura";
            dataPoint1.IsEmpty = true;
            series1.Points.Add(dataPoint1);
            series1.ToolTip = "#VAL";
            this.chart_temperatura.Series.Add(series1);
            this.chart_temperatura.Size = new System.Drawing.Size(289, 284);
            this.chart_temperatura.TabIndex = 21;
            this.chart_temperatura.Text = "chart1";
            // 
            // tB_temperatura
            // 
            this.tB_temperatura.Cursor = System.Windows.Forms.Cursors.Default;
            this.tB_temperatura.Location = new System.Drawing.Point(67, 25);
            this.tB_temperatura.Name = "tB_temperatura";
            this.tB_temperatura.Size = new System.Drawing.Size(100, 20);
            this.tB_temperatura.TabIndex = 20;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(16, 28);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(45, 13);
            this.label1.TabIndex = 19;
            this.label1.Text = "Leitura: ";
            // 
            // gB_umidade
            // 
            this.gB_umidade.AutoSize = true;
            this.gB_umidade.Controls.Add(this.chart_umidade);
            this.gB_umidade.Controls.Add(this.tB_umi);
            this.gB_umidade.Controls.Add(this.label2);
            this.gB_umidade.Location = new System.Drawing.Point(6, 167);
            this.gB_umidade.Name = "gB_umidade";
            this.gB_umidade.Size = new System.Drawing.Size(355, 354);
            this.gB_umidade.TabIndex = 19;
            this.gB_umidade.TabStop = false;
            this.gB_umidade.Text = "Umidade";
            // 
            // chart_umidade
            // 
            chartArea2.Name = "ChartArea1";
            this.chart_umidade.ChartAreas.Add(chartArea2);
            this.chart_umidade.Enabled = false;
            legend2.Name = "Legend1";
            this.chart_umidade.Legends.Add(legend2);
            this.chart_umidade.Location = new System.Drawing.Point(9, 51);
            this.chart_umidade.Name = "chart_umidade";
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.Legend = "Legend1";
            series2.Name = "Umidade";
            dataPoint2.IsEmpty = true;
            series2.Points.Add(dataPoint2);
            this.chart_umidade.Series.Add(series2);
            this.chart_umidade.Size = new System.Drawing.Size(289, 284);
            this.chart_umidade.TabIndex = 2;
            this.chart_umidade.Text = "chart1";
            // 
            // tB_umi
            // 
            this.tB_umi.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
            this.tB_umi.Cursor = System.Windows.Forms.Cursors.Default;
            this.tB_umi.Location = new System.Drawing.Point(67, 25);
            this.tB_umi.Name = "tB_umi";
            this.tB_umi.Size = new System.Drawing.Size(100, 20);
            this.tB_umi.TabIndex = 0;
            this.tB_umi.WordWrap = false;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(16, 28);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(42, 13);
            this.label2.TabIndex = 0;
            this.label2.Text = "Leitura:";
            // 
            // timer
            // 
            this.timer.Interval = 500;
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // serialPort1
            // 
            this.serialPort1.PortName = "COM3";
            // 
            // bt_para
            // 
            this.bt_para.Location = new System.Drawing.Point(774, 300);
            this.bt_para.Name = "bt_para";
            this.bt_para.Size = new System.Drawing.Size(75, 23);
            this.bt_para.TabIndex = 25;
            this.bt_para.Text = "Para";
            this.bt_para.UseVisualStyleBackColor = true;
            // 
            // bt_grava
            // 
            this.bt_grava.Location = new System.Drawing.Point(774, 271);
            this.bt_grava.Name = "bt_grava";
            this.bt_grava.Size = new System.Drawing.Size(75, 23);
            this.bt_grava.TabIndex = 24;
            this.bt_grava.Text = "Grava";
            this.bt_grava.UseVisualStyleBackColor = true;
            this.bt_grava.Click += new System.EventHandler(this.bt_grava_Click);
            // 
            // tela_inicial
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.ClientSize = new System.Drawing.Size(887, 554);
            this.Controls.Add(this.bt_para);
            this.Controls.Add(this.bt_grava);
            this.Controls.Add(this.gB_umidade);
            this.Controls.Add(this.gB_temperatura);
            this.Controls.Add(this.statusBar);
            this.Controls.Add(this.menuStrip1);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.gbConexao);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "tela_inicial";
            this.Text = "Controle Helicóptero";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.tela_inicial_FormClosed);
            this.Load += new System.EventHandler(this.tela_inicial_Load);
            this.groupBox2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.gbConexao.ResumeLayout(false);
            this.gbConexao.PerformLayout();
            this.statusBar.ResumeLayout(false);
            this.statusBar.PerformLayout();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.gB_temperatura.ResumeLayout(false);
            this.gB_temperatura.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart_temperatura)).EndInit();
            this.gB_umidade.ResumeLayout(false);
            this.gB_umidade.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart_umidade)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #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.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series9 = 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.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.Title title7 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea8 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series12 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title8 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea9 = 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.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, "10,14,16");
            System.Windows.Forms.DataVisualization.Charting.Title title9 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea10 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series14 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title10 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.label1 = new System.Windows.Forms.Label();
            this.cmbSucursal = new System.Windows.Forms.ComboBox();
            this.chkPagadas = new System.Windows.Forms.CheckBox();
            this.chkCobradas = new System.Windows.Forms.CheckBox();
            this.dgvPorDia = new System.Windows.Forms.DataGridView();
            this.Dia_Fecha = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dia_AnioActual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dia_AnioAnterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dia_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dia_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.dgvPorSemana = new System.Windows.Forms.DataGridView();
            this.Semana_Semana = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Semana_AnioActual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Semana_AnioAnterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Semana_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Semana_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.label4 = new System.Windows.Forms.Label();
            this.dgvPorMes = new System.Windows.Forms.DataGridView();
            this.Mes_Mes = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Mes_AnioActual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Mes_AnioAnterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Mes_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Mes_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dtpDesde = new System.Windows.Forms.DateTimePicker();
            this.dgvDias = new System.Windows.Forms.DataGridView();
            this.Dias_Dia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dias_AnioActual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dias_AnioAnterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dias_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Dias_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dtpHasta = new System.Windows.Forms.DateTimePicker();
            this.dgvHoras = new System.Windows.Forms.DataGridView();
            this.Horas_Hora = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Horas_AnioActual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Horas_AnioAnterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Horas_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Horas_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.label5 = new System.Windows.Forms.Label();
            this.lblAnioActual = new System.Windows.Forms.Label();
            this.lblAnioAnterior = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.txtAnioActual = new System.Windows.Forms.TextBox();
            this.txtAnioAnterior = new System.Windows.Forms.TextBox();
            this.label11 = new System.Windows.Forms.Label();
            this.txtResultado = new System.Windows.Forms.TextBox();
            this.chrPorSemana = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorMes = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorDiaSem = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorHora = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chk9500 = new System.Windows.Forms.CheckBox();
            this.label6 = new System.Windows.Forms.Label();
            this.chkOmitirDomingos = new System.Windows.Forms.CheckBox();
            this.dgvPorDiaT = new System.Windows.Forms.DataGridView();
            this.DiaT_Nombre = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DiaT_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DiaT_Anterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DiaT_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DiaT_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvPorSemanaT = new System.Windows.Forms.DataGridView();
            this.SemanaT_Nombre = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SemanaT_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SemanaT_Anterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SemanaT_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SemanaT_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.btnMostrar = new System.Windows.Forms.Button();
            this.cmbCalculo = new System.Windows.Forms.ComboBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.nudDecimales = new System.Windows.Forms.NumericUpDown();
            this.dgvSucursales = new System.Windows.Forms.DataGridView();
            this.Sucursal_Sucursal = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Sucursal_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Sucursal_Anterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Sucursal_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Sucursal_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvPorAnio = new System.Windows.Forms.DataGridView();
            this.Anio_Anio = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Anio_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.chrPorAnio = new System.Windows.Forms.DataVisualization.Charting.Chart();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDia)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorSemana)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorMes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvDias)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvHoras)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorSemana)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorMes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDiaT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorSemanaT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nudDecimales)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvSucursales)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorAnio)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorAnio)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(169, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(40, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Tienda";
            // 
            // cmbSucursal
            // 
            this.cmbSucursal.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbSucursal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.cmbSucursal.FormattingEnabled = true;
            this.cmbSucursal.Location = new System.Drawing.Point(215, 13);
            this.cmbSucursal.Name = "cmbSucursal";
            this.cmbSucursal.Size = new System.Drawing.Size(140, 21);
            this.cmbSucursal.TabIndex = 1;
            this.cmbSucursal.SelectedIndexChanged += new System.EventHandler(this.cmbSucursal_SelectedIndexChanged);
            // 
            // chkPagadas
            // 
            this.chkPagadas.AutoSize = true;
            this.chkPagadas.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.chkPagadas.ForeColor = System.Drawing.Color.White;
            this.chkPagadas.Location = new System.Drawing.Point(371, 15);
            this.chkPagadas.Name = "chkPagadas";
            this.chkPagadas.Size = new System.Drawing.Size(65, 17);
            this.chkPagadas.TabIndex = 2;
            this.chkPagadas.Text = "Pagadas";
            this.chkPagadas.UseVisualStyleBackColor = true;
            this.chkPagadas.CheckedChanged += new System.EventHandler(this.chkPagadas_CheckedChanged);
            // 
            // chkCobradas
            // 
            this.chkCobradas.AutoSize = true;
            this.chkCobradas.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.chkCobradas.ForeColor = System.Drawing.Color.White;
            this.chkCobradas.Location = new System.Drawing.Point(445, 15);
            this.chkCobradas.Name = "chkCobradas";
            this.chkCobradas.Size = new System.Drawing.Size(68, 17);
            this.chkCobradas.TabIndex = 3;
            this.chkCobradas.Text = "Cobradas";
            this.chkCobradas.UseVisualStyleBackColor = true;
            this.chkCobradas.CheckedChanged += new System.EventHandler(this.chkCobradas_CheckedChanged);
            // 
            // dgvPorDia
            // 
            this.dgvPorDia.AllowUserToAddRows = false;
            this.dgvPorDia.AllowUserToDeleteRows = false;
            this.dgvPorDia.AllowUserToResizeRows = false;
            this.dgvPorDia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorDia.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorDia.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorDia.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorDia.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorDia.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Dia_Fecha,
            this.Dia_AnioActual,
            this.Dia_AnioAnterior,
            this.Dia_Resultado,
            this.Dia_Porcentaje});
            dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle63.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle63.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle63.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle63.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle63.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorDia.DefaultCellStyle = dataGridViewCellStyle63;
            this.dgvPorDia.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorDia.Location = new System.Drawing.Point(18, 55);
            this.dgvPorDia.Name = "dgvPorDia";
            this.dgvPorDia.ReadOnly = true;
            this.dgvPorDia.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle64.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle64.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle64.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle64.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle64.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle64.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorDia.RowHeadersDefaultCellStyle = dataGridViewCellStyle64;
            this.dgvPorDia.RowHeadersVisible = false;
            this.dgvPorDia.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorDia.Size = new System.Drawing.Size(320, 456);
            this.dgvPorDia.TabIndex = 10;
            // 
            // Dia_Fecha
            // 
            dataGridViewCellStyle58.Format = "M";
            dataGridViewCellStyle58.NullValue = null;
            this.Dia_Fecha.DefaultCellStyle = dataGridViewCellStyle58;
            this.Dia_Fecha.HeaderText = "Día";
            this.Dia_Fecha.Name = "Dia_Fecha";
            this.Dia_Fecha.ReadOnly = true;
            this.Dia_Fecha.Width = 60;
            // 
            // Dia_AnioActual
            // 
            dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle59.Format = "C2";
            this.Dia_AnioActual.DefaultCellStyle = dataGridViewCellStyle59;
            this.Dia_AnioActual.HeaderText = "Actual";
            this.Dia_AnioActual.Name = "Dia_AnioActual";
            this.Dia_AnioActual.ReadOnly = true;
            this.Dia_AnioActual.Width = 80;
            // 
            // Dia_AnioAnterior
            // 
            dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle60.Format = "C2";
            this.Dia_AnioAnterior.DefaultCellStyle = dataGridViewCellStyle60;
            this.Dia_AnioAnterior.HeaderText = "Anterior";
            this.Dia_AnioAnterior.Name = "Dia_AnioAnterior";
            this.Dia_AnioAnterior.ReadOnly = true;
            this.Dia_AnioAnterior.Width = 80;
            // 
            // Dia_Resultado
            // 
            dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle61.Format = "N2";
            this.Dia_Resultado.DefaultCellStyle = dataGridViewCellStyle61;
            this.Dia_Resultado.HeaderText = "R°";
            this.Dia_Resultado.Name = "Dia_Resultado";
            this.Dia_Resultado.ReadOnly = true;
            this.Dia_Resultado.Width = 40;
            // 
            // Dia_Porcentaje
            // 
            dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle62.Format = "N2";
            this.Dia_Porcentaje.DefaultCellStyle = dataGridViewCellStyle62;
            this.Dia_Porcentaje.HeaderText = "%";
            this.Dia_Porcentaje.Name = "Dia_Porcentaje";
            this.Dia_Porcentaje.ReadOnly = true;
            this.Dia_Porcentaje.Width = 40;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.White;
            this.label2.Location = new System.Drawing.Point(15, 39);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(49, 13);
            this.label2.TabIndex = 165;
            this.label2.Text = "Por día";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.White;
            this.label3.Location = new System.Drawing.Point(393, 39);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(73, 13);
            this.label3.TabIndex = 167;
            this.label3.Text = "Por semana";
            // 
            // dgvPorSemana
            // 
            this.dgvPorSemana.AllowUserToAddRows = false;
            this.dgvPorSemana.AllowUserToDeleteRows = false;
            this.dgvPorSemana.AllowUserToResizeRows = false;
            this.dgvPorSemana.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorSemana.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorSemana.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorSemana.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorSemana.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorSemana.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Semana_Semana,
            this.Semana_AnioActual,
            this.Semana_AnioAnterior,
            this.Semana_Resultado,
            this.Semana_Porcentaje});
            dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle69.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle69.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle69.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle69.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle69.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle69.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorSemana.DefaultCellStyle = dataGridViewCellStyle69;
            this.dgvPorSemana.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorSemana.Location = new System.Drawing.Point(396, 55);
            this.dgvPorSemana.Name = "dgvPorSemana";
            this.dgvPorSemana.ReadOnly = true;
            this.dgvPorSemana.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle70.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle70.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle70.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle70.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle70.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle70.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorSemana.RowHeadersDefaultCellStyle = dataGridViewCellStyle70;
            this.dgvPorSemana.RowHeadersVisible = false;
            this.dgvPorSemana.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorSemana.Size = new System.Drawing.Size(320, 456);
            this.dgvPorSemana.TabIndex = 12;
            // 
            // Semana_Semana
            // 
            this.Semana_Semana.HeaderText = "Semana";
            this.Semana_Semana.Name = "Semana_Semana";
            this.Semana_Semana.ReadOnly = true;
            this.Semana_Semana.Width = 60;
            // 
            // Semana_AnioActual
            // 
            dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle65.Format = "C2";
            this.Semana_AnioActual.DefaultCellStyle = dataGridViewCellStyle65;
            this.Semana_AnioActual.HeaderText = "Actual";
            this.Semana_AnioActual.Name = "Semana_AnioActual";
            this.Semana_AnioActual.ReadOnly = true;
            this.Semana_AnioActual.Width = 80;
            // 
            // Semana_AnioAnterior
            // 
            dataGridViewCellStyle66.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle66.Format = "C2";
            this.Semana_AnioAnterior.DefaultCellStyle = dataGridViewCellStyle66;
            this.Semana_AnioAnterior.HeaderText = "Anterior";
            this.Semana_AnioAnterior.Name = "Semana_AnioAnterior";
            this.Semana_AnioAnterior.ReadOnly = true;
            this.Semana_AnioAnterior.Width = 80;
            // 
            // Semana_Resultado
            // 
            dataGridViewCellStyle67.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle67.Format = "N2";
            this.Semana_Resultado.DefaultCellStyle = dataGridViewCellStyle67;
            this.Semana_Resultado.HeaderText = "R°";
            this.Semana_Resultado.Name = "Semana_Resultado";
            this.Semana_Resultado.ReadOnly = true;
            this.Semana_Resultado.Width = 40;
            // 
            // Semana_Porcentaje
            // 
            dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle68.Format = "N2";
            this.Semana_Porcentaje.DefaultCellStyle = dataGridViewCellStyle68;
            this.Semana_Porcentaje.HeaderText = "%";
            this.Semana_Porcentaje.Name = "Semana_Porcentaje";
            this.Semana_Porcentaje.ReadOnly = true;
            this.Semana_Porcentaje.Width = 40;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.ForeColor = System.Drawing.Color.White;
            this.label4.Location = new System.Drawing.Point(772, 39);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(52, 13);
            this.label4.TabIndex = 169;
            this.label4.Text = "Por mes";
            // 
            // dgvPorMes
            // 
            this.dgvPorMes.AllowUserToAddRows = false;
            this.dgvPorMes.AllowUserToDeleteRows = false;
            this.dgvPorMes.AllowUserToResizeRows = false;
            this.dgvPorMes.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorMes.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorMes.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorMes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorMes.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Mes_Mes,
            this.Mes_AnioActual,
            this.Mes_AnioAnterior,
            this.Mes_Resultado,
            this.Mes_Porcentaje});
            dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle75.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle75.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle75.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle75.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle75.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle75.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorMes.DefaultCellStyle = dataGridViewCellStyle75;
            this.dgvPorMes.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorMes.Location = new System.Drawing.Point(774, 55);
            this.dgvPorMes.Name = "dgvPorMes";
            this.dgvPorMes.ReadOnly = true;
            this.dgvPorMes.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle76.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle76.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle76.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle76.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle76.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle76.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle76.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorMes.RowHeadersDefaultCellStyle = dataGridViewCellStyle76;
            this.dgvPorMes.RowHeadersVisible = false;
            this.dgvPorMes.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorMes.Size = new System.Drawing.Size(320, 300);
            this.dgvPorMes.TabIndex = 14;
            // 
            // Mes_Mes
            // 
            this.Mes_Mes.HeaderText = "Mes";
            this.Mes_Mes.Name = "Mes_Mes";
            this.Mes_Mes.ReadOnly = true;
            this.Mes_Mes.Width = 60;
            // 
            // Mes_AnioActual
            // 
            dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle71.Format = "C2";
            this.Mes_AnioActual.DefaultCellStyle = dataGridViewCellStyle71;
            this.Mes_AnioActual.HeaderText = "Actual";
            this.Mes_AnioActual.Name = "Mes_AnioActual";
            this.Mes_AnioActual.ReadOnly = true;
            this.Mes_AnioActual.Width = 80;
            // 
            // Mes_AnioAnterior
            // 
            dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle72.Format = "C2";
            this.Mes_AnioAnterior.DefaultCellStyle = dataGridViewCellStyle72;
            this.Mes_AnioAnterior.HeaderText = "Anterior";
            this.Mes_AnioAnterior.Name = "Mes_AnioAnterior";
            this.Mes_AnioAnterior.ReadOnly = true;
            this.Mes_AnioAnterior.Width = 80;
            // 
            // Mes_Resultado
            // 
            dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle73.Format = "N2";
            this.Mes_Resultado.DefaultCellStyle = dataGridViewCellStyle73;
            this.Mes_Resultado.HeaderText = "R°";
            this.Mes_Resultado.Name = "Mes_Resultado";
            this.Mes_Resultado.ReadOnly = true;
            this.Mes_Resultado.Width = 40;
            // 
            // Mes_Porcentaje
            // 
            dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle74.Format = "N2";
            dataGridViewCellStyle74.NullValue = null;
            this.Mes_Porcentaje.DefaultCellStyle = dataGridViewCellStyle74;
            this.Mes_Porcentaje.HeaderText = "%";
            this.Mes_Porcentaje.Name = "Mes_Porcentaje";
            this.Mes_Porcentaje.ReadOnly = true;
            this.Mes_Porcentaje.Width = 40;
            // 
            // dtpDesde
            // 
            this.dtpDesde.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpDesde.Location = new System.Drawing.Point(1139, 55);
            this.dtpDesde.Name = "dtpDesde";
            this.dtpDesde.Size = new System.Drawing.Size(121, 20);
            this.dtpDesde.TabIndex = 8;
            this.dtpDesde.ValueChanged += new System.EventHandler(this.dtpDesde_ValueChanged);
            // 
            // dgvDias
            // 
            this.dgvDias.AllowUserToAddRows = false;
            this.dgvDias.AllowUserToDeleteRows = false;
            this.dgvDias.AllowUserToResizeRows = false;
            this.dgvDias.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvDias.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvDias.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvDias.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvDias.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Dias_Dia,
            this.Dias_AnioActual,
            this.Dias_AnioAnterior,
            this.Dias_Resultado,
            this.Dias_Porcentaje});
            dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle81.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle81.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle81.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle81.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle81.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle81.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvDias.DefaultCellStyle = dataGridViewCellStyle81;
            this.dgvDias.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvDias.Location = new System.Drawing.Point(774, 361);
            this.dgvDias.Name = "dgvDias";
            this.dgvDias.ReadOnly = true;
            this.dgvDias.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle82.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle82.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle82.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle82.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle82.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle82.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvDias.RowHeadersDefaultCellStyle = dataGridViewCellStyle82;
            this.dgvDias.RowHeadersVisible = false;
            this.dgvDias.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvDias.Size = new System.Drawing.Size(320, 175);
            this.dgvDias.TabIndex = 16;
            // 
            // Dias_Dia
            // 
            this.Dias_Dia.HeaderText = "Día";
            this.Dias_Dia.Name = "Dias_Dia";
            this.Dias_Dia.ReadOnly = true;
            this.Dias_Dia.Width = 60;
            // 
            // Dias_AnioActual
            // 
            dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle77.Format = "C2";
            this.Dias_AnioActual.DefaultCellStyle = dataGridViewCellStyle77;
            this.Dias_AnioActual.HeaderText = "Actual";
            this.Dias_AnioActual.Name = "Dias_AnioActual";
            this.Dias_AnioActual.ReadOnly = true;
            this.Dias_AnioActual.Width = 80;
            // 
            // Dias_AnioAnterior
            // 
            dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle78.Format = "C2";
            this.Dias_AnioAnterior.DefaultCellStyle = dataGridViewCellStyle78;
            this.Dias_AnioAnterior.HeaderText = "Anterior";
            this.Dias_AnioAnterior.Name = "Dias_AnioAnterior";
            this.Dias_AnioAnterior.ReadOnly = true;
            this.Dias_AnioAnterior.Width = 80;
            // 
            // Dias_Resultado
            // 
            dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle79.Format = "N2";
            this.Dias_Resultado.DefaultCellStyle = dataGridViewCellStyle79;
            this.Dias_Resultado.HeaderText = "R°";
            this.Dias_Resultado.Name = "Dias_Resultado";
            this.Dias_Resultado.ReadOnly = true;
            this.Dias_Resultado.Width = 40;
            // 
            // Dias_Porcentaje
            // 
            dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle80.Format = "N2";
            this.Dias_Porcentaje.DefaultCellStyle = dataGridViewCellStyle80;
            this.Dias_Porcentaje.HeaderText = "%";
            this.Dias_Porcentaje.Name = "Dias_Porcentaje";
            this.Dias_Porcentaje.ReadOnly = true;
            this.Dias_Porcentaje.Width = 40;
            // 
            // dtpHasta
            // 
            this.dtpHasta.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpHasta.Location = new System.Drawing.Point(1319, 55);
            this.dtpHasta.Name = "dtpHasta";
            this.dtpHasta.Size = new System.Drawing.Size(121, 20);
            this.dtpHasta.TabIndex = 9;
            this.dtpHasta.ValueChanged += new System.EventHandler(this.dtpHasta_ValueChanged);
            // 
            // dgvHoras
            // 
            this.dgvHoras.AllowUserToAddRows = false;
            this.dgvHoras.AllowUserToDeleteRows = false;
            this.dgvHoras.AllowUserToResizeRows = false;
            this.dgvHoras.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvHoras.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvHoras.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvHoras.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvHoras.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Horas_Hora,
            this.Horas_AnioActual,
            this.Horas_AnioAnterior,
            this.Horas_Resultado,
            this.Horas_Porcentaje});
            dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle88.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle88.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle88.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle88.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle88.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle88.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvHoras.DefaultCellStyle = dataGridViewCellStyle88;
            this.dgvHoras.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvHoras.Location = new System.Drawing.Point(1139, 81);
            this.dgvHoras.Name = "dgvHoras";
            this.dgvHoras.ReadOnly = true;
            this.dgvHoras.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle89.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle89.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle89.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle89.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle89.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle89.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvHoras.RowHeadersDefaultCellStyle = dataGridViewCellStyle89;
            this.dgvHoras.RowHeadersVisible = false;
            this.dgvHoras.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvHoras.Size = new System.Drawing.Size(320, 359);
            this.dgvHoras.TabIndex = 15;
            // 
            // Horas_Hora
            // 
            dataGridViewCellStyle83.NullValue = null;
            this.Horas_Hora.DefaultCellStyle = dataGridViewCellStyle83;
            this.Horas_Hora.HeaderText = "Hora";
            this.Horas_Hora.Name = "Horas_Hora";
            this.Horas_Hora.ReadOnly = true;
            this.Horas_Hora.Width = 60;
            // 
            // Horas_AnioActual
            // 
            dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle84.Format = "C2";
            this.Horas_AnioActual.DefaultCellStyle = dataGridViewCellStyle84;
            this.Horas_AnioActual.HeaderText = "Actual";
            this.Horas_AnioActual.Name = "Horas_AnioActual";
            this.Horas_AnioActual.ReadOnly = true;
            this.Horas_AnioActual.Width = 80;
            // 
            // Horas_AnioAnterior
            // 
            dataGridViewCellStyle85.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle85.Format = "C2";
            this.Horas_AnioAnterior.DefaultCellStyle = dataGridViewCellStyle85;
            this.Horas_AnioAnterior.HeaderText = "Anterior";
            this.Horas_AnioAnterior.Name = "Horas_AnioAnterior";
            this.Horas_AnioAnterior.ReadOnly = true;
            this.Horas_AnioAnterior.Width = 80;
            // 
            // Horas_Resultado
            // 
            dataGridViewCellStyle86.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle86.Format = "N2";
            this.Horas_Resultado.DefaultCellStyle = dataGridViewCellStyle86;
            this.Horas_Resultado.HeaderText = "R°";
            this.Horas_Resultado.Name = "Horas_Resultado";
            this.Horas_Resultado.ReadOnly = true;
            this.Horas_Resultado.Width = 40;
            // 
            // Horas_Porcentaje
            // 
            dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle87.Format = "N2";
            this.Horas_Porcentaje.DefaultCellStyle = dataGridViewCellStyle87;
            this.Horas_Porcentaje.HeaderText = "%";
            this.Horas_Porcentaje.Name = "Horas_Porcentaje";
            this.Horas_Porcentaje.ReadOnly = true;
            this.Horas_Porcentaje.Width = 40;
            // 
            // label5
            // 
            this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.ForeColor = System.Drawing.Color.White;
            this.label5.Location = new System.Drawing.Point(9, 550);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(36, 13);
            this.label5.TabIndex = 174;
            this.label5.Text = "Total";
            // 
            // lblAnioActual
            // 
            this.lblAnioActual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lblAnioActual.AutoSize = true;
            this.lblAnioActual.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAnioActual.ForeColor = System.Drawing.Color.White;
            this.lblAnioActual.Location = new System.Drawing.Point(46, 550);
            this.lblAnioActual.Name = "lblAnioActual";
            this.lblAnioActual.Size = new System.Drawing.Size(35, 13);
            this.lblAnioActual.TabIndex = 175;
            this.lblAnioActual.Text = "2014";
            // 
            // lblAnioAnterior
            // 
            this.lblAnioAnterior.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lblAnioAnterior.AutoSize = true;
            this.lblAnioAnterior.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAnioAnterior.ForeColor = System.Drawing.Color.White;
            this.lblAnioAnterior.Location = new System.Drawing.Point(211, 550);
            this.lblAnioAnterior.Name = "lblAnioAnterior";
            this.lblAnioAnterior.Size = new System.Drawing.Size(35, 13);
            this.lblAnioAnterior.TabIndex = 177;
            this.lblAnioAnterior.Text = "2013";
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label7.AutoSize = true;
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.White;
            this.label7.Location = new System.Drawing.Point(182, 550);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(36, 13);
            this.label7.TabIndex = 176;
            this.label7.Text = "Total";
            // 
            // txtAnioActual
            // 
            this.txtAnioActual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.txtAnioActual.Location = new System.Drawing.Point(83, 547);
            this.txtAnioActual.Name = "txtAnioActual";
            this.txtAnioActual.ReadOnly = true;
            this.txtAnioActual.Size = new System.Drawing.Size(80, 20);
            this.txtAnioActual.TabIndex = 15;
            this.txtAnioActual.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtAnioAnterior
            // 
            this.txtAnioAnterior.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.txtAnioAnterior.Location = new System.Drawing.Point(252, 547);
            this.txtAnioAnterior.Name = "txtAnioAnterior";
            this.txtAnioAnterior.ReadOnly = true;
            this.txtAnioAnterior.Size = new System.Drawing.Size(80, 20);
            this.txtAnioAnterior.TabIndex = 16;
            this.txtAnioAnterior.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label11
            // 
            this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label11.AutoSize = true;
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.White;
            this.label11.Location = new System.Drawing.Point(347, 550);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(64, 13);
            this.label11.TabIndex = 180;
            this.label11.Text = "Resultado";
            // 
            // txtResultado
            // 
            this.txtResultado.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.txtResultado.Location = new System.Drawing.Point(420, 547);
            this.txtResultado.Name = "txtResultado";
            this.txtResultado.ReadOnly = true;
            this.txtResultado.Size = new System.Drawing.Size(80, 20);
            this.txtResultado.TabIndex = 17;
            this.txtResultado.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // chrPorSemana
            // 
            this.chrPorSemana.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chrPorSemana.BackColor = System.Drawing.Color.Transparent;
            chartArea6.AxisX.Interval = 5D;
            chartArea6.AxisX.IntervalOffset = 1D;
            chartArea6.AxisX.IsLabelAutoFit = false;
            chartArea6.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea6.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea6.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea6.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisX.ScaleBreakStyle.LineColor = System.Drawing.Color.Maroon;
            chartArea6.AxisX.ScaleView.Size = 52D;
            chartArea6.AxisY.IsLabelAutoFit = false;
            chartArea6.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea6.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea6.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea6.BackColor = System.Drawing.Color.Transparent;
            chartArea6.Name = "ChartArea1";
            this.chrPorSemana.ChartAreas.Add(chartArea6);
            this.chrPorSemana.Location = new System.Drawing.Point(0, 573);
            this.chrPorSemana.Name = "chrPorSemana";
            series8.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series8.BackSecondaryColor = System.Drawing.Color.Red;
            series8.BorderColor = System.Drawing.Color.Silver;
            series8.BorderWidth = 2;
            series8.ChartArea = "ChartArea1";
            series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series8.Color = System.Drawing.Color.White;
            series8.CustomProperties = "LabelStyle=Center";
            series8.EmptyPointStyle.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            series8.EmptyPointStyle.Label = "3213";
            series8.EmptyPointStyle.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            series8.EmptyPointStyle.LabelToolTip = "9879";
            series8.EmptyPointStyle.ToolTip = "pp";
            series8.Label = "o";
            series8.LabelForeColor = System.Drawing.Color.Transparent;
            series8.LabelToolTip = "Semana: #VALX\\nComisión: $#VAL";
            series8.MarkerSize = 4;
            series8.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series8.Name = "Actual";
            series8.ShadowColor = System.Drawing.Color.Silver;
            series8.ShadowOffset = 1;
            series8.SmartLabelStyle.Enabled = false;
            series9.BorderColor = System.Drawing.Color.White;
            series9.ChartArea = "ChartArea1";
            series9.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series9.Color = System.Drawing.Color.IndianRed;
            series9.CustomProperties = "LabelStyle=Center";
            series9.Label = "o";
            series9.LabelForeColor = System.Drawing.Color.Transparent;
            series9.LabelToolTip = "Semana: #VALX\\nComisión: $#VAL";
            series9.MarkerBorderColor = System.Drawing.Color.IndianRed;
            series9.MarkerColor = System.Drawing.Color.IndianRed;
            series9.MarkerSize = 4;
            series9.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series9.Name = "Pasado";
            series9.ShadowColor = System.Drawing.Color.Silver;
            series9.ShadowOffset = 1;
            series9.SmartLabelStyle.Enabled = false;
            this.chrPorSemana.Series.Add(series8);
            this.chrPorSemana.Series.Add(series9);
            this.chrPorSemana.Size = new System.Drawing.Size(716, 200);
            this.chrPorSemana.TabIndex = 17;
            this.chrPorSemana.Text = "chart1";
            title6.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title6.ForeColor = System.Drawing.Color.White;
            title6.IsDockedInsideChartArea = false;
            title6.Name = "Title1";
            title6.ShadowOffset = 2;
            title6.Text = "Gráfica semanal";
            this.chrPorSemana.Titles.Add(title6);
            // 
            // chrPorMes
            // 
            this.chrPorMes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.chrPorMes.BackColor = System.Drawing.Color.Transparent;
            chartArea7.Area3DStyle.Enable3D = true;
            chartArea7.Area3DStyle.PointDepth = 60;
            chartArea7.Area3DStyle.PointGapDepth = 60;
            chartArea7.Area3DStyle.WallWidth = 0;
            chartArea7.AxisX.IntervalOffset = 1D;
            chartArea7.AxisX.IsLabelAutoFit = false;
            chartArea7.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea7.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea7.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea7.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea7.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea7.AxisX.ScaleView.Size = 11D;
            chartArea7.AxisY.IsLabelAutoFit = false;
            chartArea7.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea7.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea7.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea7.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea7.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea7.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea7.BackColor = System.Drawing.Color.Transparent;
            chartArea7.Name = "ChartArea1";
            this.chrPorMes.ChartAreas.Add(chartArea7);
            this.chrPorMes.Location = new System.Drawing.Point(713, 573);
            this.chrPorMes.Name = "chrPorMes";
            series10.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.HorizontalCenter;
            series10.BackSecondaryColor = System.Drawing.Color.Transparent;
            series10.BorderColor = System.Drawing.Color.Transparent;
            series10.BorderWidth = 0;
            series10.ChartArea = "ChartArea1";
            series10.Color = System.Drawing.Color.Gray;
            series10.CustomProperties = "PixelPointWidth=16";
            series10.Name = "Pasado";
            series10.ShadowColor = System.Drawing.Color.White;
            series11.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.HorizontalCenter;
            series11.BackSecondaryColor = System.Drawing.Color.Transparent;
            series11.BorderColor = System.Drawing.Color.Transparent;
            series11.BorderWidth = 0;
            series11.ChartArea = "ChartArea1";
            series11.Color = System.Drawing.Color.White;
            series11.CustomProperties = "PixelPointWidth=16";
            series11.LabelToolTip = "#VAL{C}";
            series11.MarkerSize = 7;
            series11.Name = "Actual";
            series11.ShadowColor = System.Drawing.Color.White;
            this.chrPorMes.Series.Add(series10);
            this.chrPorMes.Series.Add(series11);
            this.chrPorMes.Size = new System.Drawing.Size(528, 200);
            this.chrPorMes.TabIndex = 18;
            this.chrPorMes.Text = "chart1";
            title7.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title7.ForeColor = System.Drawing.Color.White;
            title7.IsDockedInsideChartArea = false;
            title7.Name = "Title1";
            title7.ShadowOffset = 2;
            title7.Text = "Gráfica mensual";
            this.chrPorMes.Titles.Add(title7);
            // 
            // chrPorDiaSem
            // 
            this.chrPorDiaSem.BackColor = System.Drawing.Color.Transparent;
            this.chrPorDiaSem.BorderSkin.BorderWidth = 0;
            chartArea8.Area3DStyle.Enable3D = true;
            chartArea8.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
            chartArea8.Area3DStyle.PointDepth = 60;
            chartArea8.Area3DStyle.PointGapDepth = 60;
            chartArea8.Area3DStyle.WallWidth = 0;
            chartArea8.AxisX.IntervalOffset = 1D;
            chartArea8.AxisX.IsLabelAutoFit = false;
            chartArea8.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea8.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea8.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea8.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisX.ScaleView.Size = 11D;
            chartArea8.AxisY.IsLabelAutoFit = false;
            chartArea8.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea8.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea8.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea8.BackColor = System.Drawing.Color.Transparent;
            chartArea8.Name = "ChartArea1";
            this.chrPorDiaSem.ChartAreas.Add(chartArea8);
            this.chrPorDiaSem.Location = new System.Drawing.Point(775, 533);
            this.chrPorDiaSem.Name = "chrPorDiaSem";
            this.chrPorDiaSem.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series12.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series12.BackSecondaryColor = System.Drawing.Color.Transparent;
            series12.BorderColor = System.Drawing.Color.White;
            series12.BorderWidth = 0;
            series12.ChartArea = "ChartArea1";
            series12.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series12.Color = System.Drawing.Color.White;
            series12.CustomProperties = "PieLineColor=White, PieDrawingStyle=Concave, PieLabelStyle=Outside";
            series12.EmptyPointStyle.CustomProperties = "Exploded=True";
            series12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series12.IsValueShownAsLabel = true;
            series12.Label = "#AXISLABEL (#PERCENT{P0})";
            series12.LabelForeColor = System.Drawing.Color.White;
            series12.MarkerColor = System.Drawing.Color.Green;
            series12.MarkerSize = 7;
            series12.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
            series12.Name = "Actual";
            series12.ShadowColor = System.Drawing.Color.White;
            series12.ShadowOffset = 3;
            series12.SmartLabelStyle.MovingDirection = ((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.Top | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.TopRight) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomLeft) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomRight)));
            this.chrPorDiaSem.Series.Add(series12);
            this.chrPorDiaSem.Size = new System.Drawing.Size(287, 212);
            this.chrPorDiaSem.TabIndex = 19;
            this.chrPorDiaSem.Text = "chart1";
            title8.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title8.ForeColor = System.Drawing.Color.White;
            title8.Name = "Title1";
            title8.ShadowOffset = 2;
            title8.Text = "Día";
            this.chrPorDiaSem.Titles.Add(title8);
            // 
            // chrPorHora
            // 
            this.chrPorHora.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chrPorHora.BackColor = System.Drawing.Color.Transparent;
            chartArea9.Area3DStyle.Enable3D = true;
            chartArea9.Area3DStyle.PointDepth = 20;
            chartArea9.Area3DStyle.PointGapDepth = 50;
            chartArea9.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea9.AxisX.LabelStyle.Enabled = false;
            chartArea9.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea9.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea9.AxisX.LineColor = System.Drawing.Color.White;
            chartArea9.AxisX.LineWidth = 2;
            chartArea9.AxisX.MajorGrid.Enabled = false;
            chartArea9.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea9.AxisX.MajorTickMark.Enabled = false;
            chartArea9.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea9.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea9.AxisY.ArrowStyle = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
            chartArea9.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea9.AxisY.Interval = 10D;
            chartArea9.AxisY.IsLabelAutoFit = false;
            chartArea9.AxisY.LabelStyle.Enabled = false;
            chartArea9.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea9.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea9.AxisY.LineColor = System.Drawing.Color.White;
            chartArea9.AxisY.LineWidth = 2;
            chartArea9.AxisY.MajorGrid.Enabled = false;
            chartArea9.AxisY.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea9.AxisY.MajorTickMark.Enabled = false;
            chartArea9.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
            chartArea9.AxisY.MajorTickMark.LineWidth = 2;
            chartArea9.AxisY.MajorTickMark.Size = 4F;
            chartArea9.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea9.AxisY.MinorTickMark.LineColor = System.Drawing.Color.White;
            chartArea9.AxisY.MinorTickMark.LineWidth = 2;
            chartArea9.AxisY.MinorTickMark.Size = 4F;
            chartArea9.AxisY.MinorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea9.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea9.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea9.BackColor = System.Drawing.Color.Transparent;
            chartArea9.BorderWidth = 0;
            chartArea9.Name = "ChartArea1";
            this.chrPorHora.ChartAreas.Add(chartArea9);
            this.chrPorHora.Location = new System.Drawing.Point(1446, 55);
            this.chrPorHora.Name = "chrPorHora";
            this.chrPorHora.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series13.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
            series13.BackSecondaryColor = System.Drawing.Color.Transparent;
            series13.BorderColor = System.Drawing.Color.Transparent;
            series13.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            series13.BorderWidth = 0;
            series13.ChartArea = "ChartArea1";
            series13.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series13.CustomProperties = "PixelPointWidth=80";
            series13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series13.Label = "#AXISLABEL";
            series13.LabelBorderWidth = 0;
            series13.LabelForeColor = System.Drawing.Color.White;
            series13.Name = "Referencia";
            dataPoint2.AxisLabel = "14";
            series13.Points.Add(dataPoint2);
            this.chrPorHora.Series.Add(series13);
            this.chrPorHora.Size = new System.Drawing.Size(132, 690);
            this.chrPorHora.TabIndex = 20;
            this.chrPorHora.Text = "chart1";
            title9.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title9.ForeColor = System.Drawing.Color.White;
            title9.Name = "Title1";
            title9.ShadowOffset = 2;
            title9.Text = "Hora";
            this.chrPorHora.Titles.Add(title9);
            // 
            // chk9500
            // 
            this.chk9500.AutoSize = true;
            this.chk9500.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.chk9500.ForeColor = System.Drawing.Color.White;
            this.chk9500.Location = new System.Drawing.Point(522, 15);
            this.chk9500.Name = "chk9500";
            this.chk9500.Size = new System.Drawing.Size(71, 17);
            this.chk9500.TabIndex = 4;
            this.chk9500.Text = "Sólo 9500";
            this.chk9500.UseVisualStyleBackColor = true;
            this.chk9500.CheckedChanged += new System.EventHandler(this.chk9500_CheckedChanged);
            // 
            // label6
            // 
            this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Freestyle Script", 35F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.ForeColor = System.Drawing.Color.White;
            this.label6.Location = new System.Drawing.Point(1334, 0);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(244, 57);
            this.label6.TabIndex = 169;
            this.label6.Text = "Utilidad por fecha";
            // 
            // chkOmitirDomingos
            // 
            this.chkOmitirDomingos.AutoSize = true;
            this.chkOmitirDomingos.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.chkOmitirDomingos.ForeColor = System.Drawing.Color.White;
            this.chkOmitirDomingos.Location = new System.Drawing.Point(602, 15);
            this.chkOmitirDomingos.Name = "chkOmitirDomingos";
            this.chkOmitirDomingos.Size = new System.Drawing.Size(99, 17);
            this.chkOmitirDomingos.TabIndex = 5;
            this.chkOmitirDomingos.Text = "Omitir Domingos";
            this.chkOmitirDomingos.UseVisualStyleBackColor = true;
            this.chkOmitirDomingos.CheckedChanged += new System.EventHandler(this.chkOmitirDomingos_CheckedChanged);
            // 
            // dgvPorDiaT
            // 
            this.dgvPorDiaT.AllowUserToAddRows = false;
            this.dgvPorDiaT.AllowUserToDeleteRows = false;
            this.dgvPorDiaT.AllowUserToResizeRows = false;
            this.dgvPorDiaT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorDiaT.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorDiaT.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorDiaT.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            dataGridViewCellStyle90.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle90.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle90.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle90.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle90.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle90.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle90.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorDiaT.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle90;
            this.dgvPorDiaT.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorDiaT.ColumnHeadersVisible = false;
            this.dgvPorDiaT.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.DiaT_Nombre,
            this.DiaT_Actual,
            this.DiaT_Anterior,
            this.DiaT_Resultado,
            this.DiaT_Porcentaje});
            dataGridViewCellStyle96.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle96.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle96.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle96.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle96.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle96.SelectionForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle96.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorDiaT.DefaultCellStyle = dataGridViewCellStyle96;
            this.dgvPorDiaT.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorDiaT.Location = new System.Drawing.Point(18, 517);
            this.dgvPorDiaT.Name = "dgvPorDiaT";
            this.dgvPorDiaT.ReadOnly = true;
            this.dgvPorDiaT.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle97.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle97.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle97.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle97.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle97.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle97.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorDiaT.RowHeadersDefaultCellStyle = dataGridViewCellStyle97;
            this.dgvPorDiaT.RowHeadersVisible = false;
            this.dgvPorDiaT.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorDiaT.Size = new System.Drawing.Size(320, 24);
            this.dgvPorDiaT.TabIndex = 11;
            // 
            // DiaT_Nombre
            // 
            dataGridViewCellStyle91.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.DiaT_Nombre.DefaultCellStyle = dataGridViewCellStyle91;
            this.DiaT_Nombre.HeaderText = "Nombre";
            this.DiaT_Nombre.Name = "DiaT_Nombre";
            this.DiaT_Nombre.ReadOnly = true;
            this.DiaT_Nombre.Width = 60;
            // 
            // DiaT_Actual
            // 
            dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle92.Format = "C2";
            this.DiaT_Actual.DefaultCellStyle = dataGridViewCellStyle92;
            this.DiaT_Actual.HeaderText = "Actual";
            this.DiaT_Actual.Name = "DiaT_Actual";
            this.DiaT_Actual.ReadOnly = true;
            this.DiaT_Actual.Width = 80;
            // 
            // DiaT_Anterior
            // 
            dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle93.Format = "C2";
            this.DiaT_Anterior.DefaultCellStyle = dataGridViewCellStyle93;
            this.DiaT_Anterior.HeaderText = "Anterior";
            this.DiaT_Anterior.Name = "DiaT_Anterior";
            this.DiaT_Anterior.ReadOnly = true;
            this.DiaT_Anterior.Width = 80;
            // 
            // DiaT_Resultado
            // 
            dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle94.Format = "N2";
            this.DiaT_Resultado.DefaultCellStyle = dataGridViewCellStyle94;
            this.DiaT_Resultado.HeaderText = "R°";
            this.DiaT_Resultado.Name = "DiaT_Resultado";
            this.DiaT_Resultado.ReadOnly = true;
            this.DiaT_Resultado.Width = 40;
            // 
            // DiaT_Porcentaje
            // 
            dataGridViewCellStyle95.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle95.Format = "N2";
            this.DiaT_Porcentaje.DefaultCellStyle = dataGridViewCellStyle95;
            this.DiaT_Porcentaje.HeaderText = "%";
            this.DiaT_Porcentaje.Name = "DiaT_Porcentaje";
            this.DiaT_Porcentaje.ReadOnly = true;
            this.DiaT_Porcentaje.Width = 40;
            // 
            // dgvPorSemanaT
            // 
            this.dgvPorSemanaT.AllowUserToAddRows = false;
            this.dgvPorSemanaT.AllowUserToDeleteRows = false;
            this.dgvPorSemanaT.AllowUserToResizeRows = false;
            this.dgvPorSemanaT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorSemanaT.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorSemanaT.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorSemanaT.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle98.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle98.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle98.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle98.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle98.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle98.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorSemanaT.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle98;
            this.dgvPorSemanaT.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorSemanaT.ColumnHeadersVisible = false;
            this.dgvPorSemanaT.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.SemanaT_Nombre,
            this.SemanaT_Actual,
            this.SemanaT_Anterior,
            this.SemanaT_Resultado,
            this.SemanaT_Porcentaje});
            dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle104.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle104.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle104.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle104.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle104.SelectionForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle104.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorSemanaT.DefaultCellStyle = dataGridViewCellStyle104;
            this.dgvPorSemanaT.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorSemanaT.Location = new System.Drawing.Point(396, 517);
            this.dgvPorSemanaT.Name = "dgvPorSemanaT";
            this.dgvPorSemanaT.ReadOnly = true;
            this.dgvPorSemanaT.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle105.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle105.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle105.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle105.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle105.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle105.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle105.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorSemanaT.RowHeadersDefaultCellStyle = dataGridViewCellStyle105;
            this.dgvPorSemanaT.RowHeadersVisible = false;
            this.dgvPorSemanaT.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorSemanaT.Size = new System.Drawing.Size(320, 24);
            this.dgvPorSemanaT.TabIndex = 13;
            // 
            // SemanaT_Nombre
            // 
            dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.SemanaT_Nombre.DefaultCellStyle = dataGridViewCellStyle99;
            this.SemanaT_Nombre.HeaderText = "Nombre";
            this.SemanaT_Nombre.Name = "SemanaT_Nombre";
            this.SemanaT_Nombre.ReadOnly = true;
            this.SemanaT_Nombre.Width = 60;
            // 
            // SemanaT_Actual
            // 
            dataGridViewCellStyle100.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle100.Format = "C2";
            this.SemanaT_Actual.DefaultCellStyle = dataGridViewCellStyle100;
            this.SemanaT_Actual.HeaderText = "Actual";
            this.SemanaT_Actual.Name = "SemanaT_Actual";
            this.SemanaT_Actual.ReadOnly = true;
            this.SemanaT_Actual.Width = 80;
            // 
            // SemanaT_Anterior
            // 
            dataGridViewCellStyle101.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle101.Format = "C2";
            this.SemanaT_Anterior.DefaultCellStyle = dataGridViewCellStyle101;
            this.SemanaT_Anterior.HeaderText = "Anterior";
            this.SemanaT_Anterior.Name = "SemanaT_Anterior";
            this.SemanaT_Anterior.ReadOnly = true;
            this.SemanaT_Anterior.Width = 80;
            // 
            // SemanaT_Resultado
            // 
            dataGridViewCellStyle102.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle102.Format = "N2";
            this.SemanaT_Resultado.DefaultCellStyle = dataGridViewCellStyle102;
            this.SemanaT_Resultado.HeaderText = "R°";
            this.SemanaT_Resultado.Name = "SemanaT_Resultado";
            this.SemanaT_Resultado.ReadOnly = true;
            this.SemanaT_Resultado.Width = 40;
            // 
            // SemanaT_Porcentaje
            // 
            dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle103.Format = "N2";
            this.SemanaT_Porcentaje.DefaultCellStyle = dataGridViewCellStyle103;
            this.SemanaT_Porcentaje.HeaderText = "%";
            this.SemanaT_Porcentaje.Name = "SemanaT_Porcentaje";
            this.SemanaT_Porcentaje.ReadOnly = true;
            this.SemanaT_Porcentaje.Width = 40;
            // 
            // btnMostrar
            // 
            this.btnMostrar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(63)))), ((int)(((byte)(87)))));
            this.btnMostrar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnMostrar.ForeColor = System.Drawing.Color.White;
            this.btnMostrar.Location = new System.Drawing.Point(839, 12);
            this.btnMostrar.Name = "btnMostrar";
            this.btnMostrar.Size = new System.Drawing.Size(75, 23);
            this.btnMostrar.TabIndex = 7;
            this.btnMostrar.Text = "Mostrar";
            this.btnMostrar.UseVisualStyleBackColor = false;
            this.btnMostrar.Click += new System.EventHandler(this.btnMostrar_Click);
            // 
            // cmbCalculo
            // 
            this.cmbCalculo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbCalculo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.cmbCalculo.FormattingEnabled = true;
            this.cmbCalculo.Location = new System.Drawing.Point(63, 13);
            this.cmbCalculo.Name = "cmbCalculo";
            this.cmbCalculo.Size = new System.Drawing.Size(100, 21);
            this.cmbCalculo.TabIndex = 0;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.ForeColor = System.Drawing.Color.White;
            this.label8.Location = new System.Drawing.Point(15, 16);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(42, 13);
            this.label8.TabIndex = 181;
            this.label8.Text = "Cálculo";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.ForeColor = System.Drawing.Color.White;
            this.label9.Location = new System.Drawing.Point(710, 16);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(56, 13);
            this.label9.TabIndex = 182;
            this.label9.Text = "Decimales";
            // 
            // nudDecimales
            // 
            this.nudDecimales.Location = new System.Drawing.Point(772, 14);
            this.nudDecimales.Maximum = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.nudDecimales.Name = "nudDecimales";
            this.nudDecimales.Size = new System.Drawing.Size(40, 20);
            this.nudDecimales.TabIndex = 6;
            this.nudDecimales.ValueChanged += new System.EventHandler(this.nudDecimales_ValueChanged);
            // 
            // dgvSucursales
            // 
            this.dgvSucursales.AllowUserToAddRows = false;
            this.dgvSucursales.AllowUserToDeleteRows = false;
            this.dgvSucursales.AllowUserToResizeRows = false;
            this.dgvSucursales.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvSucursales.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvSucursales.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvSucursales.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvSucursales.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Sucursal_Sucursal,
            this.Sucursal_Actual,
            this.Sucursal_Anterior,
            this.Sucursal_Resultado,
            this.Sucursal_Porcentaje});
            dataGridViewCellStyle110.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle110.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle110.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle110.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle110.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle110.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle110.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvSucursales.DefaultCellStyle = dataGridViewCellStyle110;
            this.dgvSucursales.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvSucursales.Location = new System.Drawing.Point(1139, 446);
            this.dgvSucursales.Name = "dgvSucursales";
            this.dgvSucursales.ReadOnly = true;
            this.dgvSucursales.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle111.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle111.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle111.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle111.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle111.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle111.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle111.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvSucursales.RowHeadersDefaultCellStyle = dataGridViewCellStyle111;
            this.dgvSucursales.RowHeadersVisible = false;
            this.dgvSucursales.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvSucursales.ShowEditingIcon = false;
            this.dgvSucursales.Size = new System.Drawing.Size(303, 112);
            this.dgvSucursales.TabIndex = 183;
            // 
            // Sucursal_Sucursal
            // 
            this.Sucursal_Sucursal.HeaderText = "Suc.";
            this.Sucursal_Sucursal.Name = "Sucursal_Sucursal";
            this.Sucursal_Sucursal.ReadOnly = true;
            this.Sucursal_Sucursal.Width = 50;
            // 
            // Sucursal_Actual
            // 
            dataGridViewCellStyle106.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle106.Format = "C2";
            this.Sucursal_Actual.DefaultCellStyle = dataGridViewCellStyle106;
            this.Sucursal_Actual.HeaderText = "Actual";
            this.Sucursal_Actual.Name = "Sucursal_Actual";
            this.Sucursal_Actual.ReadOnly = true;
            this.Sucursal_Actual.Width = 80;
            // 
            // Sucursal_Anterior
            // 
            dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle107.Format = "C2";
            this.Sucursal_Anterior.DefaultCellStyle = dataGridViewCellStyle107;
            this.Sucursal_Anterior.HeaderText = "Anterior";
            this.Sucursal_Anterior.Name = "Sucursal_Anterior";
            this.Sucursal_Anterior.ReadOnly = true;
            this.Sucursal_Anterior.Width = 80;
            // 
            // Sucursal_Resultado
            // 
            dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle108.Format = "N2";
            this.Sucursal_Resultado.DefaultCellStyle = dataGridViewCellStyle108;
            this.Sucursal_Resultado.HeaderText = "R°";
            this.Sucursal_Resultado.Name = "Sucursal_Resultado";
            this.Sucursal_Resultado.ReadOnly = true;
            this.Sucursal_Resultado.Width = 40;
            // 
            // Sucursal_Porcentaje
            // 
            dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle109.Format = "N2";
            this.Sucursal_Porcentaje.DefaultCellStyle = dataGridViewCellStyle109;
            this.Sucursal_Porcentaje.HeaderText = "%";
            this.Sucursal_Porcentaje.Name = "Sucursal_Porcentaje";
            this.Sucursal_Porcentaje.ReadOnly = true;
            this.Sucursal_Porcentaje.Width = 40;
            // 
            // dgvPorAnio
            // 
            this.dgvPorAnio.AllowUserToAddRows = false;
            this.dgvPorAnio.AllowUserToDeleteRows = false;
            this.dgvPorAnio.AllowUserToResizeRows = false;
            this.dgvPorAnio.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorAnio.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorAnio.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorAnio.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorAnio.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Anio_Anio,
            this.Anio_Actual});
            dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle113.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle113.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle113.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle113.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle113.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle113.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorAnio.DefaultCellStyle = dataGridViewCellStyle113;
            this.dgvPorAnio.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorAnio.Location = new System.Drawing.Point(1139, 543);
            this.dgvPorAnio.Name = "dgvPorAnio";
            this.dgvPorAnio.ReadOnly = true;
            this.dgvPorAnio.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle114.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle114.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle114.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle114.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle114.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle114.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorAnio.RowHeadersDefaultCellStyle = dataGridViewCellStyle114;
            this.dgvPorAnio.RowHeadersVisible = false;
            this.dgvPorAnio.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorAnio.ShowEditingIcon = false;
            this.dgvPorAnio.Size = new System.Drawing.Size(152, 175);
            this.dgvPorAnio.TabIndex = 184;
            // 
            // Anio_Anio
            // 
            this.Anio_Anio.HeaderText = "Año";
            this.Anio_Anio.Name = "Anio_Anio";
            this.Anio_Anio.ReadOnly = true;
            this.Anio_Anio.Width = 50;
            // 
            // Anio_Actual
            // 
            dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle112.Format = "C2";
            this.Anio_Actual.DefaultCellStyle = dataGridViewCellStyle112;
            this.Anio_Actual.HeaderText = "Actual";
            this.Anio_Actual.Name = "Anio_Actual";
            this.Anio_Actual.ReadOnly = true;
            this.Anio_Actual.Width = 80;
            // 
            // chrPorAnio
            // 
            this.chrPorAnio.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.chrPorAnio.BackColor = System.Drawing.Color.Transparent;
            chartArea10.AxisX.IsLabelAutoFit = false;
            chartArea10.AxisX.LabelStyle.Angle = 90;
            chartArea10.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea10.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea10.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea10.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea10.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea10.AxisX.ScaleBreakStyle.LineColor = System.Drawing.Color.Maroon;
            chartArea10.AxisY.IsLabelAutoFit = false;
            chartArea10.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea10.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea10.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea10.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea10.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea10.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea10.BackColor = System.Drawing.Color.Transparent;
            chartArea10.Name = "ChartArea1";
            this.chrPorAnio.ChartAreas.Add(chartArea10);
            this.chrPorAnio.Location = new System.Drawing.Point(1247, 573);
            this.chrPorAnio.Name = "chrPorAnio";
            series14.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series14.BackSecondaryColor = System.Drawing.Color.Red;
            series14.BorderColor = System.Drawing.Color.Silver;
            series14.BorderWidth = 2;
            series14.ChartArea = "ChartArea1";
            series14.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series14.Color = System.Drawing.Color.White;
            series14.CustomProperties = "LabelStyle=Center";
            series14.EmptyPointStyle.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            series14.EmptyPointStyle.Label = "3213";
            series14.EmptyPointStyle.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            series14.EmptyPointStyle.LabelToolTip = "9879";
            series14.EmptyPointStyle.ToolTip = "pp";
            series14.Label = "o";
            series14.LabelForeColor = System.Drawing.Color.Transparent;
            series14.LabelToolTip = "Semana: #VALX\\nComisión: $#VAL";
            series14.MarkerSize = 4;
            series14.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series14.Name = "Actual";
            series14.ShadowColor = System.Drawing.Color.Silver;
            series14.ShadowOffset = 1;
            series14.SmartLabelStyle.Enabled = false;
            this.chrPorAnio.Series.Add(series14);
            this.chrPorAnio.Size = new System.Drawing.Size(334, 200);
            this.chrPorAnio.TabIndex = 221;
            this.chrPorAnio.Text = "chart1";
            title10.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title10.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title10.ForeColor = System.Drawing.Color.White;
            title10.IsDockedInsideChartArea = false;
            title10.Name = "Title1";
            title10.ShadowOffset = 2;
            title10.Text = "Gráfica anual";
            this.chrPorAnio.Titles.Add(title10);
            // 
            // CuadroVentas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.Controls.Add(this.chrPorAnio);
            this.Controls.Add(this.dgvPorAnio);
            this.Controls.Add(this.dgvSucursales);
            this.Controls.Add(this.nudDecimales);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.cmbCalculo);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.btnMostrar);
            this.Controls.Add(this.dgvPorSemanaT);
            this.Controls.Add(this.dgvPorDiaT);
            this.Controls.Add(this.chkOmitirDomingos);
            this.Controls.Add(this.chk9500);
            this.Controls.Add(this.chrPorHora);
            this.Controls.Add(this.chrPorMes);
            this.Controls.Add(this.chrPorSemana);
            this.Controls.Add(this.txtResultado);
            this.Controls.Add(this.label11);
            this.Controls.Add(this.txtAnioAnterior);
            this.Controls.Add(this.txtAnioActual);
            this.Controls.Add(this.lblAnioAnterior);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.lblAnioActual);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.dgvHoras);
            this.Controls.Add(this.dtpHasta);
            this.Controls.Add(this.dgvDias);
            this.Controls.Add(this.dtpDesde);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.dgvPorMes);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.dgvPorSemana);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.dgvPorDia);
            this.Controls.Add(this.chkCobradas);
            this.Controls.Add(this.chkPagadas);
            this.Controls.Add(this.cmbSucursal);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.chrPorDiaSem);
            this.Name = "CuadroVentas";
            this.Size = new System.Drawing.Size(1581, 776);
            this.Load += new System.EventHandler(this.CuadroVentas_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDia)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorSemana)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorMes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvDias)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvHoras)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorSemana)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorMes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDiaT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorSemanaT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nudDecimales)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvSucursales)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorAnio)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorAnio)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #40
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmTrail));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = 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 series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(10D, 3.5D);
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.tb_SysInfo = new System.Windows.Forms.TextBox();
            this.tb_RealTime = new System.Windows.Forms.TextBox();
            this.bt_ClearInfo = new System.Windows.Forms.Button();
            this.bt_Exit = new System.Windows.Forms.Button();
            this.bt_ConnectDevice = new System.Windows.Forms.Button();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.bt_CheckAutoWave = new System.Windows.Forms.Button();
            this.bt_DeleteCheckedAutoData = new System.Windows.Forms.Button();
            this.bt_ClearAutoData = new System.Windows.Forms.Button();
            this.bt_Check = new System.Windows.Forms.Button();
            this.label8 = new System.Windows.Forms.Label();
            this.comboBox4 = new System.Windows.Forms.ComboBox();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.bt_ClearHandData = new System.Windows.Forms.Button();
            this.bt_DeleteCheckedHandData = new System.Windows.Forms.Button();
            this.bt_CheckHandWave = new System.Windows.Forms.Button();
            this.dg_AutoData = new System.Windows.Forms.DataGridView();
            this.dg_HandData = new System.Windows.Forms.DataGridView();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.bt_ReadAutoData = new System.Windows.Forms.Button();
            this.bt_ReadHandData = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.cb_MaxDistance = new System.Windows.Forms.ComboBox();
            this.cb_MaxPower = new System.Windows.Forms.ComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.chart_HandAutoData = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.HandData_StoreTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.HandData_StoreDistance = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.HandData_StorePower = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.HandData_StoreType = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.StoreIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.AutoData_StoreTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.AutoData_DataNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.AutoData_StoreType = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.tabPage2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dg_AutoData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dg_HandData)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart_HandAutoData)).BeginInit();
            this.SuspendLayout();
            // 
            // tb_SysInfo
            // 
            this.tb_SysInfo.Location = new System.Drawing.Point(12, 423);
            this.tb_SysInfo.Multiline = true;
            this.tb_SysInfo.Name = "tb_SysInfo";
            this.tb_SysInfo.Size = new System.Drawing.Size(761, 115);
            this.tb_SysInfo.TabIndex = 13;
            // 
            // tb_RealTime
            // 
            this.tb_RealTime.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.tb_RealTime.Location = new System.Drawing.Point(779, 423);
            this.tb_RealTime.Name = "tb_RealTime";
            this.tb_RealTime.ReadOnly = true;
            this.tb_RealTime.Size = new System.Drawing.Size(166, 26);
            this.tb_RealTime.TabIndex = 14;
            this.tb_RealTime.Text = "20130518 20:36:10";
            // 
            // bt_ClearInfo
            // 
            this.bt_ClearInfo.Location = new System.Drawing.Point(779, 460);
            this.bt_ClearInfo.Name = "bt_ClearInfo";
            this.bt_ClearInfo.Size = new System.Drawing.Size(84, 33);
            this.bt_ClearInfo.TabIndex = 15;
            this.bt_ClearInfo.Text = "清空信息";
            this.bt_ClearInfo.UseVisualStyleBackColor = false;
            this.bt_ClearInfo.Click += new System.EventHandler(this.bt_ClearInfo_Click);
            // 
            // bt_Exit
            // 
            this.bt_Exit.Location = new System.Drawing.Point(779, 505);
            this.bt_Exit.Name = "bt_Exit";
            this.bt_Exit.Size = new System.Drawing.Size(84, 33);
            this.bt_Exit.TabIndex = 16;
            this.bt_Exit.Text = "退出系统";
            this.bt_Exit.UseVisualStyleBackColor = false;
            // 
            // bt_ConnectDevice
            // 
            this.bt_ConnectDevice.Location = new System.Drawing.Point(877, 460);
            this.bt_ConnectDevice.Name = "bt_ConnectDevice";
            this.bt_ConnectDevice.Size = new System.Drawing.Size(68, 78);
            this.bt_ConnectDevice.TabIndex = 17;
            this.bt_ConnectDevice.Text = "连接设备";
            this.bt_ConnectDevice.UseVisualStyleBackColor = false;
            this.bt_ConnectDevice.Click += new System.EventHandler(this.bt_ConnectDevice_Click);
            // 
            // tabPage3
            // 
            this.tabPage3.BackColor = System.Drawing.Color.LightSteelBlue;
            this.tabPage3.Controls.Add(this.pictureBox1);
            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(950, 386);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "关于";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(950, 386);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // tabPage2
            // 
            this.tabPage2.BackColor = System.Drawing.Color.LightSteelBlue;
            this.tabPage2.Controls.Add(this.groupBox3);
            this.tabPage2.Controls.Add(this.groupBox4);
            this.tabPage2.Controls.Add(this.dg_AutoData);
            this.tabPage2.Controls.Add(this.dg_HandData);
            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(950, 386);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "数据操作";
            // 
            // groupBox3
            // 
            this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox3.Controls.Add(this.bt_CheckAutoWave);
            this.groupBox3.Controls.Add(this.bt_DeleteCheckedAutoData);
            this.groupBox3.Controls.Add(this.bt_ClearAutoData);
            this.groupBox3.Controls.Add(this.bt_Check);
            this.groupBox3.Controls.Add(this.label8);
            this.groupBox3.Controls.Add(this.comboBox4);
            this.groupBox3.Location = new System.Drawing.Point(508, 275);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(414, 105);
            this.groupBox3.TabIndex = 4;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "自动数据操作";
            // 
            // bt_CheckAutoWave
            // 
            this.bt_CheckAutoWave.Location = new System.Drawing.Point(290, 73);
            this.bt_CheckAutoWave.Name = "bt_CheckAutoWave";
            this.bt_CheckAutoWave.Size = new System.Drawing.Size(96, 23);
            this.bt_CheckAutoWave.TabIndex = 22;
            this.bt_CheckAutoWave.Text = "查看波形";
            this.bt_CheckAutoWave.UseVisualStyleBackColor = true;
            // 
            // bt_DeleteCheckedAutoData
            // 
            this.bt_DeleteCheckedAutoData.Location = new System.Drawing.Point(168, 73);
            this.bt_DeleteCheckedAutoData.Name = "bt_DeleteCheckedAutoData";
            this.bt_DeleteCheckedAutoData.Size = new System.Drawing.Size(96, 23);
            this.bt_DeleteCheckedAutoData.TabIndex = 21;
            this.bt_DeleteCheckedAutoData.Text = "删除数据";
            this.bt_DeleteCheckedAutoData.UseVisualStyleBackColor = true;
            // 
            // bt_ClearAutoData
            // 
            this.bt_ClearAutoData.Location = new System.Drawing.Point(32, 73);
            this.bt_ClearAutoData.Name = "bt_ClearAutoData";
            this.bt_ClearAutoData.Size = new System.Drawing.Size(96, 23);
            this.bt_ClearAutoData.TabIndex = 20;
            this.bt_ClearAutoData.Text = "清空数据";
            this.bt_ClearAutoData.UseVisualStyleBackColor = true;
            // 
            // bt_Check
            // 
            this.bt_Check.Location = new System.Drawing.Point(311, 18);
            this.bt_Check.Name = "bt_Check";
            this.bt_Check.Size = new System.Drawing.Size(75, 23);
            this.bt_Check.TabIndex = 19;
            this.bt_Check.Text = "确定选择";
            this.bt_Check.UseVisualStyleBackColor = true;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(30, 25);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(65, 12);
            this.label8.TabIndex = 4;
            this.label8.Text = "选择日期:";
            // 
            // comboBox4
            // 
            this.comboBox4.FormattingEnabled = true;
            this.comboBox4.Location = new System.Drawing.Point(101, 20);
            this.comboBox4.Name = "comboBox4";
            this.comboBox4.Size = new System.Drawing.Size(204, 20);
            this.comboBox4.TabIndex = 2;
            // 
            // groupBox4
            // 
            this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox4.Controls.Add(this.bt_ClearHandData);
            this.groupBox4.Controls.Add(this.bt_DeleteCheckedHandData);
            this.groupBox4.Controls.Add(this.bt_CheckHandWave);
            this.groupBox4.Location = new System.Drawing.Point(27, 275);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(422, 105);
            this.groupBox4.TabIndex = 3;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "手动数据操作";
            // 
            // bt_ClearHandData
            // 
            this.bt_ClearHandData.Location = new System.Drawing.Point(224, 70);
            this.bt_ClearHandData.Name = "bt_ClearHandData";
            this.bt_ClearHandData.Size = new System.Drawing.Size(143, 28);
            this.bt_ClearHandData.TabIndex = 22;
            this.bt_ClearHandData.Text = "清空所有数据";
            this.bt_ClearHandData.UseVisualStyleBackColor = true;
            // 
            // bt_DeleteCheckedHandData
            // 
            this.bt_DeleteCheckedHandData.Location = new System.Drawing.Point(29, 70);
            this.bt_DeleteCheckedHandData.Name = "bt_DeleteCheckedHandData";
            this.bt_DeleteCheckedHandData.Size = new System.Drawing.Size(143, 28);
            this.bt_DeleteCheckedHandData.TabIndex = 21;
            this.bt_DeleteCheckedHandData.Text = "删除选中数据";
            this.bt_DeleteCheckedHandData.UseVisualStyleBackColor = true;
            // 
            // bt_CheckHandWave
            // 
            this.bt_CheckHandWave.Location = new System.Drawing.Point(29, 25);
            this.bt_CheckHandWave.Name = "bt_CheckHandWave";
            this.bt_CheckHandWave.Size = new System.Drawing.Size(143, 28);
            this.bt_CheckHandWave.TabIndex = 20;
            this.bt_CheckHandWave.Text = "查看手动波形";
            this.bt_CheckHandWave.UseVisualStyleBackColor = true;
            // 
            // dg_AutoData
            // 
            this.dg_AutoData.BackgroundColor = System.Drawing.Color.LightSteelBlue;
            this.dg_AutoData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.dg_AutoData.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken;
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle9.BackColor = System.Drawing.Color.LightSteelBlue;
            dataGridViewCellStyle9.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dg_AutoData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle9;
            this.dg_AutoData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dg_AutoData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.StoreIndex,
            this.AutoData_StoreTime,
            this.AutoData_DataNumber,
            this.AutoData_StoreType});
            this.dg_AutoData.Location = new System.Drawing.Point(478, 0);
            this.dg_AutoData.Name = "dg_AutoData";
            this.dg_AutoData.RowHeadersVisible = false;
            this.dg_AutoData.RowHeadersWidth = 40;
            dataGridViewCellStyle10.BackColor = System.Drawing.Color.LightSteelBlue;
            this.dg_AutoData.RowsDefaultCellStyle = dataGridViewCellStyle10;
            this.dg_AutoData.RowTemplate.Height = 23;
            this.dg_AutoData.Size = new System.Drawing.Size(472, 269);
            this.dg_AutoData.TabIndex = 1;
            // 
            // dg_HandData
            // 
            this.dg_HandData.BackgroundColor = System.Drawing.Color.LightSteelBlue;
            this.dg_HandData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.dg_HandData.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken;
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle11.BackColor = System.Drawing.Color.LightSteelBlue;
            dataGridViewCellStyle11.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dg_HandData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle11;
            this.dg_HandData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dg_HandData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.HandData_StoreTime,
            this.HandData_StoreDistance,
            this.HandData_StorePower,
            this.HandData_StoreType});
            this.dg_HandData.Location = new System.Drawing.Point(0, 0);
            this.dg_HandData.Name = "dg_HandData";
            this.dg_HandData.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
            this.dg_HandData.RowHeadersVisible = false;
            this.dg_HandData.RowHeadersWidth = 40;
            dataGridViewCellStyle12.BackColor = System.Drawing.Color.LightSteelBlue;
            this.dg_HandData.RowsDefaultCellStyle = dataGridViewCellStyle12;
            this.dg_HandData.RowTemplate.Height = 23;
            this.dg_HandData.Size = new System.Drawing.Size(472, 269);
            this.dg_HandData.TabIndex = 0;
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | 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(2, 5);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(958, 412);
            this.tabControl1.TabIndex = 12;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.Color.LightSteelBlue;
            this.tabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.tabPage1.Controls.Add(this.groupBox2);
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.chart_HandAutoData);
            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(950, 386);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "波形操作";
            // 
            // groupBox2
            // 
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.bt_ReadAutoData);
            this.groupBox2.Controls.Add(this.bt_ReadHandData);
            this.groupBox2.Location = new System.Drawing.Point(742, 114);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(198, 96);
            this.groupBox2.TabIndex = 2;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "数据读取";
            // 
            // bt_ReadAutoData
            // 
            this.bt_ReadAutoData.Location = new System.Drawing.Point(32, 59);
            this.bt_ReadAutoData.Name = "bt_ReadAutoData";
            this.bt_ReadAutoData.Size = new System.Drawing.Size(136, 33);
            this.bt_ReadAutoData.TabIndex = 18;
            this.bt_ReadAutoData.Text = "读取自动存储数据";
            this.bt_ReadAutoData.UseVisualStyleBackColor = false;
            // 
            // bt_ReadHandData
            // 
            this.bt_ReadHandData.Location = new System.Drawing.Point(32, 20);
            this.bt_ReadHandData.Name = "bt_ReadHandData";
            this.bt_ReadHandData.Size = new System.Drawing.Size(136, 33);
            this.bt_ReadHandData.TabIndex = 17;
            this.bt_ReadHandData.Text = "读取手动存储数据";
            this.bt_ReadHandData.UseVisualStyleBackColor = false;
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.cb_MaxDistance);
            this.groupBox1.Controls.Add(this.cb_MaxPower);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Location = new System.Drawing.Point(742, 6);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(198, 105);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "量程选择";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(161, 62);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(17, 12);
            this.label6.TabIndex = 5;
            this.label6.Text = "MM";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(160, 31);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(17, 12);
            this.label5.TabIndex = 4;
            this.label5.Text = "KN";
            // 
            // cb_MaxDistance
            // 
            this.cb_MaxDistance.FormattingEnabled = true;
            this.cb_MaxDistance.Location = new System.Drawing.Point(64, 58);
            this.cb_MaxDistance.Name = "cb_MaxDistance";
            this.cb_MaxDistance.Size = new System.Drawing.Size(94, 20);
            this.cb_MaxDistance.TabIndex = 3;
            // 
            // cb_MaxPower
            // 
            this.cb_MaxPower.FormattingEnabled = true;
            this.cb_MaxPower.Location = new System.Drawing.Point(63, 27);
            this.cb_MaxPower.Name = "cb_MaxPower";
            this.cb_MaxPower.Size = new System.Drawing.Size(95, 20);
            this.cb_MaxPower.TabIndex = 2;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(20, 61);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(41, 12);
            this.label4.TabIndex = 1;
            this.label4.Text = "位移:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(20, 30);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(41, 12);
            this.label3.TabIndex = 0;
            this.label3.Text = "拉力:";
            // 
            // chart_HandAutoData
            // 
            this.chart_HandAutoData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.chart_HandAutoData.BackColor = System.Drawing.Color.LightSteelBlue;
            chartArea3.AxisX.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Horizontal;
            chartArea3.Name = "ChartArea1";
            this.chart_HandAutoData.ChartAreas.Add(chartArea3);
            legend3.Name = "Legend1";
            this.chart_HandAutoData.Legends.Add(legend3);
            this.chart_HandAutoData.Location = new System.Drawing.Point(0, 6);
            this.chart_HandAutoData.Name = "chart_HandAutoData";
            series5.BorderColor = System.Drawing.Color.Lime;
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
            series5.Color = System.Drawing.Color.Blue;
            series5.Legend = "Legend1";
            series5.Name = "自动数据";
            series5.Points.Add(dataPoint3);
            series5.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
            series6.Color = System.Drawing.Color.Red;
            series6.Legend = "Legend1";
            series6.Name = "手动数据";
            this.chart_HandAutoData.Series.Add(series5);
            this.chart_HandAutoData.Series.Add(series6);
            this.chart_HandAutoData.Size = new System.Drawing.Size(715, 373);
            this.chart_HandAutoData.TabIndex = 0;
            this.chart_HandAutoData.Text = "chart1";
            // 
            // HandData_StoreTime
            // 
            this.HandData_StoreTime.HeaderText = "存储时间";
            this.HandData_StoreTime.Name = "HandData_StoreTime";
            this.HandData_StoreTime.Width = 110;
            // 
            // HandData_StoreDistance
            // 
            this.HandData_StoreDistance.HeaderText = "位移值(MM)";
            this.HandData_StoreDistance.Name = "HandData_StoreDistance";
            this.HandData_StoreDistance.Width = 120;
            // 
            // HandData_StorePower
            // 
            this.HandData_StorePower.HeaderText = "力值(KN)";
            this.HandData_StorePower.Name = "HandData_StorePower";
            this.HandData_StorePower.Width = 120;
            // 
            // HandData_StoreType
            // 
            this.HandData_StoreType.HeaderText = "存储方式";
            this.HandData_StoreType.Name = "HandData_StoreType";
            this.HandData_StoreType.Width = 120;
            // 
            // StoreIndex
            // 
            this.StoreIndex.HeaderText = "序号";
            this.StoreIndex.Name = "StoreIndex";
            this.StoreIndex.Width = 110;
            // 
            // AutoData_StoreTime
            // 
            this.AutoData_StoreTime.HeaderText = "存储时间";
            this.AutoData_StoreTime.Name = "AutoData_StoreTime";
            this.AutoData_StoreTime.Width = 120;
            // 
            // AutoData_DataNumber
            // 
            this.AutoData_DataNumber.HeaderText = "数据量";
            this.AutoData_DataNumber.Name = "AutoData_DataNumber";
            this.AutoData_DataNumber.Width = 120;
            // 
            // AutoData_StoreType
            // 
            this.AutoData_StoreType.HeaderText = "存储方式";
            this.AutoData_StoreType.Name = "AutoData_StoreType";
            this.AutoData_StoreType.Width = 120;
            // 
            // FrmTrail
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.LightSteelBlue;
            this.ClientSize = new System.Drawing.Size(960, 541);
            this.Controls.Add(this.bt_ConnectDevice);
            this.Controls.Add(this.bt_Exit);
            this.Controls.Add(this.bt_ClearInfo);
            this.Controls.Add(this.tb_RealTime);
            this.Controls.Add(this.tb_SysInfo);
            this.Controls.Add(this.tabControl1);
            this.MaximizeBox = false;
            this.Name = "FrmTrail";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "锚杆拉力测试系统";
            this.Load += new System.EventHandler(this.FrmTrail_Load);
            this.tabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.tabPage2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dg_AutoData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dg_HandData)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart_HandAutoData)).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()
        {
            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.Series series1 = 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.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.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            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.Title title2 = 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.ChartArea chartArea5 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.MainMenu = new System.Windows.Forms.MenuStrip();
            this.Menu_File = new System.Windows.Forms.ToolStripMenuItem();
            this.OpenSim = new System.Windows.Forms.ToolStripMenuItem();
            this.openBufferedSimulationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.SaveSim = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.StartButton = new System.Windows.Forms.ToolStripMenuItem();
            this.ResumeButton = new System.Windows.Forms.ToolStripMenuItem();
            this.StopButton = new System.Windows.Forms.ToolStripMenuItem();
            this.BufferCurrent = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu_Manipulate = new System.Windows.Forms.ToolStripMenuItem();
            this.ReCenter = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            this.Menu_Parallel = new System.Windows.Forms.ToolStripMenuItem();
            this.ParallelON = new System.Windows.Forms.ToolStripMenuItem();
            this.ParallelOFF = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu_Collisions = new System.Windows.Forms.ToolStripMenuItem();
            this.Collisions_ON = new System.Windows.Forms.ToolStripMenuItem();
            this.Collisions_OFF = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.CollisionMode_PIE = new System.Windows.Forms.ToolStripMenuItem();
            this.CollisionMode_PE = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
            this.quarterPrecisionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.thirdPrecisionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.halfPrecisionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fullPrecisionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.seedSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.RectangularSeed = new System.Windows.Forms.ToolStripMenuItem();
            this.PolarSeed = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
            this.SeedSettings_RegularMass = new System.Windows.Forms.ToolStripMenuItem();
            this.SeedSettings_CrazyMass = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.Menu_UniverseBoundaryType = new System.Windows.Forms.ToolStripMenuItem();
            this.BoundaryType_Infinate = new System.Windows.Forms.ToolStripMenuItem();
            this.BoundaryType_Fixed = new System.Windows.Forms.ToolStripMenuItem();
            this.BoundaryType_Fixed_Wrapped = new System.Windows.Forms.ToolStripMenuItem();
            this.BoundaryType_Fixed_Relative = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu_Manipulation = new System.Windows.Forms.ToolStripMenuItem();
            this.e0ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e6ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e8ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e9ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e10ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e12ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.e14ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.Button_NEGATE = new System.Windows.Forms.ToolStripMenuItem();
            this.maxVelocityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem19 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem18 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
            this.nONEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.softeningValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem28 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem31 = new System.Windows.Forms.ToolStripMenuItem();
            this.precisionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aBSOLUTEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem17 = new System.Windows.Forms.ToolStripMenuItem();
            this.Button_ResetDefaults = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.Menu_DropWeight = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem20 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem21 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem22 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem23 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem24 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem25 = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu_UpdateInterval = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_1 = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_50 = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_100 = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_200 = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_500 = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_1000 = new System.Windows.Forms.ToolStripMenuItem();
            this.UI_2000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu_Seeds = new System.Windows.Forms.ToolStripMenuItem();
            this.ParticleSeeds_Genaric = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_50 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_200 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_300 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_500 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_1000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_5000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_7500 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_10000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Seed_20000 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.crazyMassToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cM300ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.blackHoleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.bH300ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.uniformToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.singularityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sG300ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.antiGravToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.orbitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.bangToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.randomVelocityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu_3DTests = new System.Windows.Forms.ToolStripMenuItem();
            this.Start3DTest = new System.Windows.Forms.ToolStripMenuItem();
            this.Stop3DTest = new System.Windows.Forms.ToolStripMenuItem();
            this.SimTimer = new System.Windows.Forms.Timer(this.components);
            this.Tabs = new System.Windows.Forms.TabControl();
            this.Tab_Grid = new System.Windows.Forms.TabPage();
            this.PrimaryGrid = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.GridMenu = new System.Windows.Forms.MenuStrip();
            this.GM_RenderSettings = new System.Windows.Forms.ToolStripMenuItem();
            this.GM_RenderSettings_SelectiveRendering = new System.Windows.Forms.ToolStripMenuItem();
            this.RendAll = new System.Windows.Forms.ToolStripMenuItem();
            this.SelectiveRendering = new System.Windows.Forms.ToolStripMenuItem();
            this.RendOnlyVisible = new System.Windows.Forms.ToolStripMenuItem();
            this.renderQualityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.RenderHQ = new System.Windows.Forms.ToolStripMenuItem();
            this.RenderLQ = new System.Windows.Forms.ToolStripMenuItem();
            this.GM_Scale = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_Fit = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
            this.Scale_50 = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_100 = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_500 = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_1000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_5000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_10000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Scale_50000 = new System.Windows.Forms.ToolStripMenuItem();
            this.Tab_3DGrid = new System.Windows.Forms.TabPage();
            this.Tab_Components = new System.Windows.Forms.TabPage();
            this.ComponentsChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.Tab_TimeGraphs = new System.Windows.Forms.TabPage();
            this.TimeGraphChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.TimeGraphsMenu = new System.Windows.Forms.MenuStrip();
            this.TimeGraphs_ON = new System.Windows.Forms.ToolStripMenuItem();
            this.TimeGraphs_OFF = new System.Windows.Forms.ToolStripMenuItem();
            this.TGMenu_Charts = new System.Windows.Forms.ToolStripMenuItem();
            this.TGM_Charts_Chart1 = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart1_AverageAccel = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart1_SpecificAccel = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart1_AverageVel = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart1_SpecificVel = new System.Windows.Forms.ToolStripMenuItem();
            this.TGM_Charts_Chart2 = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart2_AverageAccel = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart2_SpecificAccel = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart2_AverageVel = new System.Windows.Forms.ToolStripMenuItem();
            this.Chart2_SpecificVel = new System.Windows.Forms.ToolStripMenuItem();
            this.TGMenu_DataRange = new System.Windows.Forms.ToolStripMenuItem();
            this.CDR_AllGenerations = new System.Windows.Forms.ToolStripMenuItem();
            this.CDR_Last100 = new System.Windows.Forms.ToolStripMenuItem();
            this.CDR_Last500 = new System.Windows.Forms.ToolStripMenuItem();
            this.CDR_Last1000 = new System.Windows.Forms.ToolStripMenuItem();
            this.TGMenu_DisplayType = new System.Windows.Forms.ToolStripMenuItem();
            this.CDT_Line = new System.Windows.Forms.ToolStripMenuItem();
            this.CDT_SLine = new System.Windows.Forms.ToolStripMenuItem();
            this.CDT_Column = new System.Windows.Forms.ToolStripMenuItem();
            this.TGMenu_Resolution = new System.Windows.Forms.ToolStripMenuItem();
            this.absoluteToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItem26 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem27 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem29 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem30 = new System.Windows.Forms.ToolStripMenuItem();
            this.FakeSeperator = new System.Windows.Forms.ToolStripMenuItem();
            this.WatchIndexLabel = new System.Windows.Forms.ToolStripMenuItem();
            this.WatchIndexBox = new System.Windows.Forms.ToolStripTextBox();
            this.Tab_ParticleData = new System.Windows.Forms.TabPage();
            this.RawData = new System.Windows.Forms.ListView();
            this.ParticleIndex = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ParticleMass = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ParticleAcceleration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ParticleVelocity = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ParticlePosition = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.Tab_AddInfo = new System.Windows.Forms.TabPage();
            this.InfoBox = new System.Windows.Forms.TextBox();
            this.OFD = new System.Windows.Forms.OpenFileDialog();
            this.SFD = new System.Windows.Forms.SaveFileDialog();
            this.OBFD = new System.Windows.Forms.OpenFileDialog();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.ManipulateExponent = new System.Windows.Forms.ComboBox();
            this.ManipulateBox = new System.Windows.Forms.ComboBox();
            this.ManipulateTrackBar = new System.Windows.Forms.TrackBar();
            this.ManipulateTB = new System.Windows.Forms.TextBox();
            this.Timer3D = new System.Windows.Forms.Timer(this.components);
            this.MainMenu.SuspendLayout();
            this.Tabs.SuspendLayout();
            this.Tab_Grid.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PrimaryGrid)).BeginInit();
            this.GridMenu.SuspendLayout();
            this.Tab_Components.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ComponentsChart)).BeginInit();
            this.Tab_TimeGraphs.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TimeGraphChart)).BeginInit();
            this.TimeGraphsMenu.SuspendLayout();
            this.Tab_ParticleData.SuspendLayout();
            this.Tab_AddInfo.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ManipulateTrackBar)).BeginInit();
            this.SuspendLayout();
            // 
            // MainMenu
            // 
            this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Menu_File,
            this.StartButton,
            this.ResumeButton,
            this.StopButton,
            this.BufferCurrent,
            this.Menu_Manipulate,
            this.Menu_UpdateInterval,
            this.Menu_Seeds,
            this.Menu_3DTests});
            this.MainMenu.Location = new System.Drawing.Point(0, 0);
            this.MainMenu.Name = "MainMenu";
            this.MainMenu.Size = new System.Drawing.Size(804, 24);
            this.MainMenu.TabIndex = 0;
            this.MainMenu.Text = "menuStrip1";
            this.MainMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MainMenu_ItemClicked);
            // 
            // Menu_File
            // 
            this.Menu_File.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.OpenSim,
            this.openBufferedSimulationToolStripMenuItem,
            this.SaveSim,
            this.toolStripSeparator9,
            this.exitToolStripMenuItem});
            this.Menu_File.Name = "Menu_File";
            this.Menu_File.Size = new System.Drawing.Size(37, 20);
            this.Menu_File.Text = "File";
            // 
            // OpenSim
            // 
            this.OpenSim.Name = "OpenSim";
            this.OpenSim.Size = new System.Drawing.Size(211, 22);
            this.OpenSim.Text = "Open Simulation";
            this.OpenSim.Click += new System.EventHandler(this.OpenSim_Click);
            // 
            // openBufferedSimulationToolStripMenuItem
            // 
            this.openBufferedSimulationToolStripMenuItem.Name = "openBufferedSimulationToolStripMenuItem";
            this.openBufferedSimulationToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
            this.openBufferedSimulationToolStripMenuItem.Text = "Open Buffered Simulation";
            this.openBufferedSimulationToolStripMenuItem.Click += new System.EventHandler(this.openBufferedSimulationToolStripMenuItem_Click);
            // 
            // SaveSim
            // 
            this.SaveSim.Name = "SaveSim";
            this.SaveSim.Size = new System.Drawing.Size(211, 22);
            this.SaveSim.Text = "Save Simulation";
            this.SaveSim.Click += new System.EventHandler(this.SaveSim_Click);
            // 
            // toolStripSeparator9
            // 
            this.toolStripSeparator9.Name = "toolStripSeparator9";
            this.toolStripSeparator9.Size = new System.Drawing.Size(208, 6);
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
            this.exitToolStripMenuItem.Text = "Exit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // StartButton
            // 
            this.StartButton.Name = "StartButton";
            this.StartButton.Size = new System.Drawing.Size(54, 20);
            this.StartButton.Text = "START";
            this.StartButton.Click += new System.EventHandler(this.StartButton_Click);
            // 
            // ResumeButton
            // 
            this.ResumeButton.Name = "ResumeButton";
            this.ResumeButton.Size = new System.Drawing.Size(63, 20);
            this.ResumeButton.Text = "RESUME";
            this.ResumeButton.Click += new System.EventHandler(this.ResumeButton_Click);
            // 
            // StopButton
            // 
            this.StopButton.Name = "StopButton";
            this.StopButton.Size = new System.Drawing.Size(48, 20);
            this.StopButton.Text = "STOP";
            this.StopButton.Click += new System.EventHandler(this.StopButton_Click);
            // 
            // BufferCurrent
            // 
            this.BufferCurrent.Name = "BufferCurrent";
            this.BufferCurrent.Size = new System.Drawing.Size(114, 20);
            this.BufferCurrent.Text = "BUFFER CURRENT";
            this.BufferCurrent.Click += new System.EventHandler(this.BufferCurrent_Click);
            // 
            // Menu_Manipulate
            // 
            this.Menu_Manipulate.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ReCenter,
            this.toolStripSeparator8,
            this.Menu_Parallel,
            this.Menu_Collisions,
            this.seedSettingsToolStripMenuItem,
            this.toolStripSeparator5,
            this.Menu_UniverseBoundaryType,
            this.Menu_Manipulation,
            this.maxVelocityToolStripMenuItem,
            this.softeningValueToolStripMenuItem,
            this.precisionToolStripMenuItem,
            this.Button_ResetDefaults,
            this.toolStripSeparator2,
            this.Menu_DropWeight});
            this.Menu_Manipulate.Name = "Menu_Manipulate";
            this.Menu_Manipulate.Size = new System.Drawing.Size(79, 20);
            this.Menu_Manipulate.Text = "Manipulate";
            // 
            // ReCenter
            // 
            this.ReCenter.Name = "ReCenter";
            this.ReCenter.Size = new System.Drawing.Size(202, 22);
            this.ReCenter.Text = "Re-Center Simulation";
            this.ReCenter.Click += new System.EventHandler(this.ReCenter_Click);
            // 
            // toolStripSeparator8
            // 
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(199, 6);
            // 
            // Menu_Parallel
            // 
            this.Menu_Parallel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ParallelON,
            this.ParallelOFF});
            this.Menu_Parallel.Name = "Menu_Parallel";
            this.Menu_Parallel.Size = new System.Drawing.Size(202, 22);
            this.Menu_Parallel.Text = "Parallel Processing";
            // 
            // ParallelON
            // 
            this.ParallelON.Enabled = false;
            this.ParallelON.Name = "ParallelON";
            this.ParallelON.Size = new System.Drawing.Size(95, 22);
            this.ParallelON.Text = "ON";
            this.ParallelON.Click += new System.EventHandler(this.ParallelON_Click);
            // 
            // ParallelOFF
            // 
            this.ParallelOFF.Name = "ParallelOFF";
            this.ParallelOFF.Size = new System.Drawing.Size(95, 22);
            this.ParallelOFF.Text = "OFF";
            this.ParallelOFF.Click += new System.EventHandler(this.ParallelOFF_Click);
            // 
            // Menu_Collisions
            // 
            this.Menu_Collisions.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Collisions_ON,
            this.Collisions_OFF,
            this.toolStripSeparator6,
            this.CollisionMode_PIE,
            this.CollisionMode_PE,
            this.toolStripSeparator11,
            this.quarterPrecisionToolStripMenuItem,
            this.thirdPrecisionToolStripMenuItem,
            this.halfPrecisionToolStripMenuItem,
            this.fullPrecisionToolStripMenuItem});
            this.Menu_Collisions.Name = "Menu_Collisions";
            this.Menu_Collisions.Size = new System.Drawing.Size(202, 22);
            this.Menu_Collisions.Text = "Collisions";
            // 
            // Collisions_ON
            // 
            this.Collisions_ON.Enabled = false;
            this.Collisions_ON.Name = "Collisions_ON";
            this.Collisions_ON.Size = new System.Drawing.Size(196, 22);
            this.Collisions_ON.Text = "ON";
            this.Collisions_ON.Click += new System.EventHandler(this.Collisions_ON_Click);
            // 
            // Collisions_OFF
            // 
            this.Collisions_OFF.Name = "Collisions_OFF";
            this.Collisions_OFF.Size = new System.Drawing.Size(196, 22);
            this.Collisions_OFF.Text = "OFF";
            this.Collisions_OFF.Click += new System.EventHandler(this.Collisions_OFF_Click);
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(193, 6);
            // 
            // CollisionMode_PIE
            // 
            this.CollisionMode_PIE.Enabled = false;
            this.CollisionMode_PIE.Name = "CollisionMode_PIE";
            this.CollisionMode_PIE.Size = new System.Drawing.Size(196, 22);
            this.CollisionMode_PIE.Text = "Perfectly Inelastic";
            this.CollisionMode_PIE.Click += new System.EventHandler(this.CollisionMode_PIE_Click);
            // 
            // CollisionMode_PE
            // 
            this.CollisionMode_PE.Name = "CollisionMode_PE";
            this.CollisionMode_PE.Size = new System.Drawing.Size(196, 22);
            this.CollisionMode_PE.Text = "Perfectly Elastic";
            this.CollisionMode_PE.Click += new System.EventHandler(this.CollisionMode_PE_Click);
            // 
            // toolStripSeparator11
            // 
            this.toolStripSeparator11.Name = "toolStripSeparator11";
            this.toolStripSeparator11.Size = new System.Drawing.Size(193, 6);
            // 
            // quarterPrecisionToolStripMenuItem
            // 
            this.quarterPrecisionToolStripMenuItem.Name = "quarterPrecisionToolStripMenuItem";
            this.quarterPrecisionToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.quarterPrecisionToolStripMenuItem.Text = "Quarter Precision";
            this.quarterPrecisionToolStripMenuItem.Click += new System.EventHandler(this.quarterPrecisionToolStripMenuItem_Click);
            // 
            // thirdPrecisionToolStripMenuItem
            // 
            this.thirdPrecisionToolStripMenuItem.Name = "thirdPrecisionToolStripMenuItem";
            this.thirdPrecisionToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.thirdPrecisionToolStripMenuItem.Text = "Third Precision";
            this.thirdPrecisionToolStripMenuItem.Click += new System.EventHandler(this.thirdPrecisionToolStripMenuItem_Click);
            // 
            // halfPrecisionToolStripMenuItem
            // 
            this.halfPrecisionToolStripMenuItem.Name = "halfPrecisionToolStripMenuItem";
            this.halfPrecisionToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.halfPrecisionToolStripMenuItem.Text = "Half Precision (Default)";
            this.halfPrecisionToolStripMenuItem.Click += new System.EventHandler(this.halfPrecisionToolStripMenuItem_Click);
            // 
            // fullPrecisionToolStripMenuItem
            // 
            this.fullPrecisionToolStripMenuItem.Name = "fullPrecisionToolStripMenuItem";
            this.fullPrecisionToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.fullPrecisionToolStripMenuItem.Text = "Full Precision";
            this.fullPrecisionToolStripMenuItem.Click += new System.EventHandler(this.fullPrecisionToolStripMenuItem_Click);
            // 
            // seedSettingsToolStripMenuItem
            // 
            this.seedSettingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.RectangularSeed,
            this.PolarSeed,
            this.toolStripSeparator10,
            this.SeedSettings_RegularMass,
            this.SeedSettings_CrazyMass});
            this.seedSettingsToolStripMenuItem.Name = "seedSettingsToolStripMenuItem";
            this.seedSettingsToolStripMenuItem.Size = new System.Drawing.Size(202, 22);
            this.seedSettingsToolStripMenuItem.Text = "Seed Settings";
            // 
            // RectangularSeed
            // 
            this.RectangularSeed.Enabled = false;
            this.RectangularSeed.Name = "RectangularSeed";
            this.RectangularSeed.Size = new System.Drawing.Size(144, 22);
            this.RectangularSeed.Text = "Rectangular";
            this.RectangularSeed.Click += new System.EventHandler(this.RectangularSeed_Click);
            // 
            // PolarSeed
            // 
            this.PolarSeed.Name = "PolarSeed";
            this.PolarSeed.Size = new System.Drawing.Size(144, 22);
            this.PolarSeed.Text = "Polar";
            this.PolarSeed.Click += new System.EventHandler(this.PolarSeed_Click);
            // 
            // toolStripSeparator10
            // 
            this.toolStripSeparator10.Name = "toolStripSeparator10";
            this.toolStripSeparator10.Size = new System.Drawing.Size(141, 6);
            // 
            // SeedSettings_RegularMass
            // 
            this.SeedSettings_RegularMass.Enabled = false;
            this.SeedSettings_RegularMass.Name = "SeedSettings_RegularMass";
            this.SeedSettings_RegularMass.Size = new System.Drawing.Size(144, 22);
            this.SeedSettings_RegularMass.Text = "Regular Mass";
            this.SeedSettings_RegularMass.Click += new System.EventHandler(this.SeedSettings_RegularMass_Click);
            // 
            // SeedSettings_CrazyMass
            // 
            this.SeedSettings_CrazyMass.Name = "SeedSettings_CrazyMass";
            this.SeedSettings_CrazyMass.Size = new System.Drawing.Size(144, 22);
            this.SeedSettings_CrazyMass.Text = "Crazy Mass";
            this.SeedSettings_CrazyMass.Click += new System.EventHandler(this.SeedSettings_CrazyMass_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(199, 6);
            // 
            // Menu_UniverseBoundaryType
            // 
            this.Menu_UniverseBoundaryType.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.BoundaryType_Infinate,
            this.BoundaryType_Fixed,
            this.BoundaryType_Fixed_Wrapped,
            this.BoundaryType_Fixed_Relative});
            this.Menu_UniverseBoundaryType.Name = "Menu_UniverseBoundaryType";
            this.Menu_UniverseBoundaryType.Size = new System.Drawing.Size(202, 22);
            this.Menu_UniverseBoundaryType.Text = "Universe Boundary Type";
            // 
            // BoundaryType_Infinate
            // 
            this.BoundaryType_Infinate.Name = "BoundaryType_Infinate";
            this.BoundaryType_Infinate.Size = new System.Drawing.Size(160, 22);
            this.BoundaryType_Infinate.Text = "Infinate";
            this.BoundaryType_Infinate.Click += new System.EventHandler(this.BoundaryType_Infinate_Click);
            // 
            // BoundaryType_Fixed
            // 
            this.BoundaryType_Fixed.Name = "BoundaryType_Fixed";
            this.BoundaryType_Fixed.Size = new System.Drawing.Size(160, 22);
            this.BoundaryType_Fixed.Text = "Fixed";
            this.BoundaryType_Fixed.Click += new System.EventHandler(this.BoundaryType_Fixed_Click);
            // 
            // BoundaryType_Fixed_Wrapped
            // 
            this.BoundaryType_Fixed_Wrapped.Name = "BoundaryType_Fixed_Wrapped";
            this.BoundaryType_Fixed_Wrapped.Size = new System.Drawing.Size(160, 22);
            this.BoundaryType_Fixed_Wrapped.Text = "Fixed - Wrapped";
            this.BoundaryType_Fixed_Wrapped.Click += new System.EventHandler(this.BoundaryType_Fixed_Wrapped_Click);
            // 
            // BoundaryType_Fixed_Relative
            // 
            this.BoundaryType_Fixed_Relative.Name = "BoundaryType_Fixed_Relative";
            this.BoundaryType_Fixed_Relative.Size = new System.Drawing.Size(160, 22);
            this.BoundaryType_Fixed_Relative.Text = "Fixed - Relative";
            this.BoundaryType_Fixed_Relative.Visible = false;
            this.BoundaryType_Fixed_Relative.Click += new System.EventHandler(this.BoundaryType_Fixed_Relative_Click);
            // 
            // Menu_Manipulation
            // 
            this.Menu_Manipulation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.e0ToolStripMenuItem,
            this.e4ToolStripMenuItem,
            this.e6ToolStripMenuItem,
            this.e7ToolStripMenuItem,
            this.e8ToolStripMenuItem,
            this.e9ToolStripMenuItem,
            this.e10ToolStripMenuItem,
            this.e12ToolStripMenuItem,
            this.e14ToolStripMenuItem,
            this.toolStripSeparator3,
            this.Button_NEGATE});
            this.Menu_Manipulation.Name = "Menu_Manipulation";
            this.Menu_Manipulation.Size = new System.Drawing.Size(202, 22);
            this.Menu_Manipulation.Text = "Gravitational Constant";
            // 
            // e0ToolStripMenuItem
            // 
            this.e0ToolStripMenuItem.Name = "e0ToolStripMenuItem";
            this.e0ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e0ToolStripMenuItem.Text = "E0 (Weak)";
            this.e0ToolStripMenuItem.Click += new System.EventHandler(this.e0ToolStripMenuItem_Click);
            // 
            // e4ToolStripMenuItem
            // 
            this.e4ToolStripMenuItem.Name = "e4ToolStripMenuItem";
            this.e4ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e4ToolStripMenuItem.Text = "E4";
            this.e4ToolStripMenuItem.Click += new System.EventHandler(this.e4ToolStripMenuItem_Click);
            // 
            // e6ToolStripMenuItem
            // 
            this.e6ToolStripMenuItem.Name = "e6ToolStripMenuItem";
            this.e6ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e6ToolStripMenuItem.Text = "E6";
            this.e6ToolStripMenuItem.Click += new System.EventHandler(this.e6ToolStripMenuItem_Click);
            // 
            // e7ToolStripMenuItem
            // 
            this.e7ToolStripMenuItem.Name = "e7ToolStripMenuItem";
            this.e7ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e7ToolStripMenuItem.Text = "E7";
            this.e7ToolStripMenuItem.Click += new System.EventHandler(this.e7ToolStripMenuItem_Click);
            // 
            // e8ToolStripMenuItem
            // 
            this.e8ToolStripMenuItem.Name = "e8ToolStripMenuItem";
            this.e8ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e8ToolStripMenuItem.Text = "E8 (Default)";
            this.e8ToolStripMenuItem.Click += new System.EventHandler(this.e8ToolStripMenuItem_Click);
            // 
            // e9ToolStripMenuItem
            // 
            this.e9ToolStripMenuItem.Name = "e9ToolStripMenuItem";
            this.e9ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e9ToolStripMenuItem.Text = "E9";
            this.e9ToolStripMenuItem.Click += new System.EventHandler(this.e9ToolStripMenuItem_Click);
            // 
            // e10ToolStripMenuItem
            // 
            this.e10ToolStripMenuItem.Name = "e10ToolStripMenuItem";
            this.e10ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e10ToolStripMenuItem.Text = "E10";
            this.e10ToolStripMenuItem.Click += new System.EventHandler(this.e10ToolStripMenuItem_Click);
            // 
            // e12ToolStripMenuItem
            // 
            this.e12ToolStripMenuItem.Name = "e12ToolStripMenuItem";
            this.e12ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e12ToolStripMenuItem.Text = "E12";
            this.e12ToolStripMenuItem.Click += new System.EventHandler(this.e12ToolStripMenuItem_Click);
            // 
            // e14ToolStripMenuItem
            // 
            this.e14ToolStripMenuItem.Name = "e14ToolStripMenuItem";
            this.e14ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.e14ToolStripMenuItem.Text = "E14 (Strong)";
            this.e14ToolStripMenuItem.Click += new System.EventHandler(this.e14ToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(135, 6);
            // 
            // Button_NEGATE
            // 
            this.Button_NEGATE.Name = "Button_NEGATE";
            this.Button_NEGATE.Size = new System.Drawing.Size(138, 22);
            this.Button_NEGATE.Text = "NEGATE";
            this.Button_NEGATE.Click += new System.EventHandler(this.Button_NEGATE_Click);
            // 
            // maxVelocityToolStripMenuItem
            // 
            this.maxVelocityToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem2,
            this.toolStripMenuItem19,
            this.toolStripMenuItem3,
            this.toolStripMenuItem4,
            this.toolStripMenuItem6,
            this.toolStripMenuItem18,
            this.toolStripMenuItem5,
            this.nONEToolStripMenuItem});
            this.maxVelocityToolStripMenuItem.Name = "maxVelocityToolStripMenuItem";
            this.maxVelocityToolStripMenuItem.Size = new System.Drawing.Size(202, 22);
            this.maxVelocityToolStripMenuItem.Text = "Max Velocity";
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem2.Text = "1";
            this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
            // 
            // toolStripMenuItem19
            // 
            this.toolStripMenuItem19.Name = "toolStripMenuItem19";
            this.toolStripMenuItem19.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem19.Text = "5";
            this.toolStripMenuItem19.Click += new System.EventHandler(this.toolStripMenuItem19_Click);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem3.Text = "10";
            this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
            // 
            // toolStripMenuItem4
            // 
            this.toolStripMenuItem4.Name = "toolStripMenuItem4";
            this.toolStripMenuItem4.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem4.Text = "50";
            this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click);
            // 
            // toolStripMenuItem6
            // 
            this.toolStripMenuItem6.Name = "toolStripMenuItem6";
            this.toolStripMenuItem6.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem6.Text = "100 (Default)";
            this.toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItem6_Click);
            // 
            // toolStripMenuItem18
            // 
            this.toolStripMenuItem18.Name = "toolStripMenuItem18";
            this.toolStripMenuItem18.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem18.Text = "500";
            this.toolStripMenuItem18.Click += new System.EventHandler(this.toolStripMenuItem18_Click);
            // 
            // toolStripMenuItem5
            // 
            this.toolStripMenuItem5.Name = "toolStripMenuItem5";
            this.toolStripMenuItem5.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem5.Text = "1000";
            this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click);
            // 
            // nONEToolStripMenuItem
            // 
            this.nONEToolStripMenuItem.Name = "nONEToolStripMenuItem";
            this.nONEToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
            this.nONEToolStripMenuItem.Text = "NONE";
            this.nONEToolStripMenuItem.Click += new System.EventHandler(this.nONEToolStripMenuItem_Click);
            // 
            // softeningValueToolStripMenuItem
            // 
            this.softeningValueToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem10,
            this.toolStripMenuItem28,
            this.toolStripMenuItem7,
            this.toolStripMenuItem8,
            this.toolStripMenuItem9,
            this.toolStripMenuItem11,
            this.toolStripMenuItem31});
            this.softeningValueToolStripMenuItem.Name = "softeningValueToolStripMenuItem";
            this.softeningValueToolStripMenuItem.Size = new System.Drawing.Size(202, 22);
            this.softeningValueToolStripMenuItem.Text = "Softening Value";
            // 
            // toolStripMenuItem10
            // 
            this.toolStripMenuItem10.Name = "toolStripMenuItem10";
            this.toolStripMenuItem10.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem10.Text = "0";
            this.toolStripMenuItem10.Click += new System.EventHandler(this.toolStripMenuItem10_Click);
            // 
            // toolStripMenuItem28
            // 
            this.toolStripMenuItem28.Name = "toolStripMenuItem28";
            this.toolStripMenuItem28.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem28.Text = "0.5";
            this.toolStripMenuItem28.Click += new System.EventHandler(this.toolStripMenuItem28_Click);
            // 
            // toolStripMenuItem7
            // 
            this.toolStripMenuItem7.Name = "toolStripMenuItem7";
            this.toolStripMenuItem7.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem7.Text = "2";
            this.toolStripMenuItem7.Click += new System.EventHandler(this.toolStripMenuItem7_Click);
            // 
            // toolStripMenuItem8
            // 
            this.toolStripMenuItem8.Name = "toolStripMenuItem8";
            this.toolStripMenuItem8.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem8.Text = "5 (Default)";
            this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click);
            // 
            // toolStripMenuItem9
            // 
            this.toolStripMenuItem9.Name = "toolStripMenuItem9";
            this.toolStripMenuItem9.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem9.Text = "10";
            this.toolStripMenuItem9.Click += new System.EventHandler(this.toolStripMenuItem9_Click);
            // 
            // toolStripMenuItem11
            // 
            this.toolStripMenuItem11.Name = "toolStripMenuItem11";
            this.toolStripMenuItem11.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem11.Text = "20";
            this.toolStripMenuItem11.Click += new System.EventHandler(this.toolStripMenuItem11_Click);
            // 
            // toolStripMenuItem31
            // 
            this.toolStripMenuItem31.Name = "toolStripMenuItem31";
            this.toolStripMenuItem31.Size = new System.Drawing.Size(129, 22);
            this.toolStripMenuItem31.Text = "100";
            this.toolStripMenuItem31.Click += new System.EventHandler(this.toolStripMenuItem31_Click);
            // 
            // precisionToolStripMenuItem
            // 
            this.precisionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.aBSOLUTEToolStripMenuItem,
            this.toolStripSeparator4,
            this.toolStripMenuItem13,
            this.toolStripMenuItem14,
            this.toolStripMenuItem15,
            this.toolStripMenuItem16,
            this.toolStripMenuItem12,
            this.toolStripMenuItem17});
            this.precisionToolStripMenuItem.Name = "precisionToolStripMenuItem";
            this.precisionToolStripMenuItem.Size = new System.Drawing.Size(202, 22);
            this.precisionToolStripMenuItem.Text = "Precision";
            // 
            // aBSOLUTEToolStripMenuItem
            // 
            this.aBSOLUTEToolStripMenuItem.Name = "aBSOLUTEToolStripMenuItem";
            this.aBSOLUTEToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
            this.aBSOLUTEToolStripMenuItem.Text = "ABSOLUTE";
            this.aBSOLUTEToolStripMenuItem.Click += new System.EventHandler(this.aBSOLUTEToolStripMenuItem_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(141, 6);
            // 
            // toolStripMenuItem13
            // 
            this.toolStripMenuItem13.Name = "toolStripMenuItem13";
            this.toolStripMenuItem13.Size = new System.Drawing.Size(144, 22);
            this.toolStripMenuItem13.Text = "0.0001 (High)";
            this.toolStripMenuItem13.Click += new System.EventHandler(this.toolStripMenuItem13_Click);
            // 
            // toolStripMenuItem14
            // 
            this.toolStripMenuItem14.Name = "toolStripMenuItem14";
            this.toolStripMenuItem14.Size = new System.Drawing.Size(144, 22);
            this.toolStripMenuItem14.Text = "0.01 (Default)";
            this.toolStripMenuItem14.Click += new System.EventHandler(this.toolStripMenuItem14_Click);
            // 
            // toolStripMenuItem15
            // 
            this.toolStripMenuItem15.Name = "toolStripMenuItem15";
            this.toolStripMenuItem15.Size = new System.Drawing.Size(144, 22);
            this.toolStripMenuItem15.Text = "0.1";
            this.toolStripMenuItem15.Click += new System.EventHandler(this.toolStripMenuItem15_Click);
            // 
            // toolStripMenuItem16
            // 
            this.toolStripMenuItem16.Name = "toolStripMenuItem16";
            this.toolStripMenuItem16.Size = new System.Drawing.Size(144, 22);
            this.toolStripMenuItem16.Text = "1";
            this.toolStripMenuItem16.Click += new System.EventHandler(this.toolStripMenuItem16_Click);
            // 
            // toolStripMenuItem12
            // 
            this.toolStripMenuItem12.Name = "toolStripMenuItem12";
            this.toolStripMenuItem12.Size = new System.Drawing.Size(144, 22);
            this.toolStripMenuItem12.Text = "10";
            this.toolStripMenuItem12.Click += new System.EventHandler(this.toolStripMenuItem12_Click);
            // 
            // toolStripMenuItem17
            // 
            this.toolStripMenuItem17.Name = "toolStripMenuItem17";
            this.toolStripMenuItem17.Size = new System.Drawing.Size(144, 22);
            this.toolStripMenuItem17.Text = "100 (Low)";
            this.toolStripMenuItem17.Click += new System.EventHandler(this.toolStripMenuItem17_Click);
            // 
            // Button_ResetDefaults
            // 
            this.Button_ResetDefaults.Name = "Button_ResetDefaults";
            this.Button_ResetDefaults.Size = new System.Drawing.Size(202, 22);
            this.Button_ResetDefaults.Text = "RESET DEFAULTS";
            this.Button_ResetDefaults.Click += new System.EventHandler(this.Button_ResetDefaults_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(199, 6);
            // 
            // Menu_DropWeight
            // 
            this.Menu_DropWeight.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem20,
            this.toolStripMenuItem21,
            this.toolStripMenuItem22,
            this.toolStripMenuItem23,
            this.toolStripMenuItem24,
            this.toolStripMenuItem25});
            this.Menu_DropWeight.Name = "Menu_DropWeight";
            this.Menu_DropWeight.Size = new System.Drawing.Size(202, 22);
            this.Menu_DropWeight.Text = "Drop Particle Weight";
            // 
            // toolStripMenuItem20
            // 
            this.toolStripMenuItem20.Name = "toolStripMenuItem20";
            this.toolStripMenuItem20.Size = new System.Drawing.Size(122, 22);
            this.toolStripMenuItem20.Text = "1";
            this.toolStripMenuItem20.Click += new System.EventHandler(this.toolStripMenuItem20_Click);
            // 
            // toolStripMenuItem21
            // 
            this.toolStripMenuItem21.Name = "toolStripMenuItem21";
            this.toolStripMenuItem21.Size = new System.Drawing.Size(122, 22);
            this.toolStripMenuItem21.Text = "10";
            this.toolStripMenuItem21.Click += new System.EventHandler(this.toolStripMenuItem21_Click);
            // 
            // toolStripMenuItem22
            // 
            this.toolStripMenuItem22.Name = "toolStripMenuItem22";
            this.toolStripMenuItem22.Size = new System.Drawing.Size(122, 22);
            this.toolStripMenuItem22.Text = "100";
            this.toolStripMenuItem22.Click += new System.EventHandler(this.toolStripMenuItem22_Click);
            // 
            // toolStripMenuItem23
            // 
            this.toolStripMenuItem23.Name = "toolStripMenuItem23";
            this.toolStripMenuItem23.Size = new System.Drawing.Size(122, 22);
            this.toolStripMenuItem23.Text = "1000";
            this.toolStripMenuItem23.Click += new System.EventHandler(this.toolStripMenuItem23_Click);
            // 
            // toolStripMenuItem24
            // 
            this.toolStripMenuItem24.Name = "toolStripMenuItem24";
            this.toolStripMenuItem24.Size = new System.Drawing.Size(122, 22);
            this.toolStripMenuItem24.Text = "10000";
            this.toolStripMenuItem24.Click += new System.EventHandler(this.toolStripMenuItem24_Click);
            // 
            // toolStripMenuItem25
            // 
            this.toolStripMenuItem25.Name = "toolStripMenuItem25";
            this.toolStripMenuItem25.Size = new System.Drawing.Size(122, 22);
            this.toolStripMenuItem25.Text = "10000000";
            this.toolStripMenuItem25.Click += new System.EventHandler(this.toolStripMenuItem25_Click);
            // 
            // Menu_UpdateInterval
            // 
            this.Menu_UpdateInterval.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.UI_1,
            this.UI_50,
            this.UI_100,
            this.UI_200,
            this.UI_500,
            this.UI_1000,
            this.UI_2000});
            this.Menu_UpdateInterval.Name = "Menu_UpdateInterval";
            this.Menu_UpdateInterval.Size = new System.Drawing.Size(99, 20);
            this.Menu_UpdateInterval.Text = "Update Interval";
            // 
            // UI_1
            // 
            this.UI_1.Name = "UI_1";
            this.UI_1.Size = new System.Drawing.Size(160, 22);
            this.UI_1.Text = "1 (Very Fast)";
            this.UI_1.Click += new System.EventHandler(this.UI_1_Click);
            // 
            // UI_50
            // 
            this.UI_50.Name = "UI_50";
            this.UI_50.Size = new System.Drawing.Size(160, 22);
            this.UI_50.Text = "50";
            this.UI_50.Click += new System.EventHandler(this.UI_50_Click);
            // 
            // UI_100
            // 
            this.UI_100.Name = "UI_100";
            this.UI_100.Size = new System.Drawing.Size(160, 22);
            this.UI_100.Text = "100 (Fast)";
            this.UI_100.Click += new System.EventHandler(this.UI_100_Click);
            // 
            // UI_200
            // 
            this.UI_200.Name = "UI_200";
            this.UI_200.Size = new System.Drawing.Size(160, 22);
            this.UI_200.Text = "200";
            this.UI_200.Click += new System.EventHandler(this.UI_200_Click);
            // 
            // UI_500
            // 
            this.UI_500.Name = "UI_500";
            this.UI_500.Size = new System.Drawing.Size(160, 22);
            this.UI_500.Text = "500 (Slow)";
            this.UI_500.Click += new System.EventHandler(this.UI_500_Click);
            // 
            // UI_1000
            // 
            this.UI_1000.Name = "UI_1000";
            this.UI_1000.Size = new System.Drawing.Size(160, 22);
            this.UI_1000.Text = "1000";
            this.UI_1000.Click += new System.EventHandler(this.UI_1000_Click);
            // 
            // UI_2000
            // 
            this.UI_2000.Name = "UI_2000";
            this.UI_2000.Size = new System.Drawing.Size(160, 22);
            this.UI_2000.Text = "2000 (Very Slow)";
            this.UI_2000.Click += new System.EventHandler(this.UI_2000_Click);
            // 
            // Menu_Seeds
            // 
            this.Menu_Seeds.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ParticleSeeds_Genaric,
            this.toolStripSeparator1,
            this.crazyMassToolStripMenuItem,
            this.cM300ToolStripMenuItem,
            this.blackHoleToolStripMenuItem,
            this.bH300ToolStripMenuItem,
            this.uniformToolStripMenuItem,
            this.singularityToolStripMenuItem,
            this.sG300ToolStripMenuItem,
            this.antiGravToolStripMenuItem,
            this.orbitToolStripMenuItem,
            this.bangToolStripMenuItem,
            this.randomVelocityToolStripMenuItem});
            this.Menu_Seeds.Name = "Menu_Seeds";
            this.Menu_Seeds.Size = new System.Drawing.Size(91, 20);
            this.Menu_Seeds.Text = "Particle Seeds";
            this.Menu_Seeds.Click += new System.EventHandler(this.Menu_Fun_Click);
            // 
            // ParticleSeeds_Genaric
            // 
            this.ParticleSeeds_Genaric.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Seed_50,
            this.Seed_200,
            this.Seed_300,
            this.Seed_500,
            this.Seed_1000,
            this.Seed_5000,
            this.Seed_7500,
            this.Seed_10000,
            this.Seed_20000});
            this.ParticleSeeds_Genaric.Name = "ParticleSeeds_Genaric";
            this.ParticleSeeds_Genaric.Size = new System.Drawing.Size(161, 22);
            this.ParticleSeeds_Genaric.Text = "Genaric Seeds";
            // 
            // Seed_50
            // 
            this.Seed_50.Name = "Seed_50";
            this.Seed_50.Size = new System.Drawing.Size(151, 22);
            this.Seed_50.Text = "50 Particles";
            this.Seed_50.Click += new System.EventHandler(this.Seed_50_Click);
            // 
            // Seed_200
            // 
            this.Seed_200.Name = "Seed_200";
            this.Seed_200.Size = new System.Drawing.Size(151, 22);
            this.Seed_200.Text = "200 Particles";
            this.Seed_200.Click += new System.EventHandler(this.Seed_200_Click);
            // 
            // Seed_300
            // 
            this.Seed_300.Name = "Seed_300";
            this.Seed_300.Size = new System.Drawing.Size(151, 22);
            this.Seed_300.Text = "300 Particles";
            this.Seed_300.Click += new System.EventHandler(this.Seed_300_Click);
            // 
            // Seed_500
            // 
            this.Seed_500.Name = "Seed_500";
            this.Seed_500.Size = new System.Drawing.Size(151, 22);
            this.Seed_500.Text = "500 Particles";
            this.Seed_500.Click += new System.EventHandler(this.Seed_500_Click);
            // 
            // Seed_1000
            // 
            this.Seed_1000.Name = "Seed_1000";
            this.Seed_1000.Size = new System.Drawing.Size(151, 22);
            this.Seed_1000.Text = "1000 Particles";
            this.Seed_1000.Click += new System.EventHandler(this.Seed_1000_Click);
            // 
            // Seed_5000
            // 
            this.Seed_5000.Name = "Seed_5000";
            this.Seed_5000.Size = new System.Drawing.Size(151, 22);
            this.Seed_5000.Text = "5000 Particles";
            this.Seed_5000.Click += new System.EventHandler(this.Seed_5000_Click);
            // 
            // Seed_7500
            // 
            this.Seed_7500.Name = "Seed_7500";
            this.Seed_7500.Size = new System.Drawing.Size(151, 22);
            this.Seed_7500.Text = "7500 Particles";
            this.Seed_7500.Click += new System.EventHandler(this.Seed_7500_Click);
            // 
            // Seed_10000
            // 
            this.Seed_10000.Name = "Seed_10000";
            this.Seed_10000.Size = new System.Drawing.Size(151, 22);
            this.Seed_10000.Text = "10000 Particles";
            this.Seed_10000.Click += new System.EventHandler(this.Seed_10000_Click);
            // 
            // Seed_20000
            // 
            this.Seed_20000.Name = "Seed_20000";
            this.Seed_20000.Size = new System.Drawing.Size(151, 22);
            this.Seed_20000.Text = "20000 Particles";
            this.Seed_20000.Click += new System.EventHandler(this.Seed_20000_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(158, 6);
            // 
            // crazyMassToolStripMenuItem
            // 
            this.crazyMassToolStripMenuItem.Name = "crazyMassToolStripMenuItem";
            this.crazyMassToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.crazyMassToolStripMenuItem.Text = "Crazy Mass";
            this.crazyMassToolStripMenuItem.Click += new System.EventHandler(this.crazyMassToolStripMenuItem_Click);
            // 
            // cM300ToolStripMenuItem
            // 
            this.cM300ToolStripMenuItem.Name = "cM300ToolStripMenuItem";
            this.cM300ToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.cM300ToolStripMenuItem.Text = "CM 300";
            this.cM300ToolStripMenuItem.Click += new System.EventHandler(this.cM300ToolStripMenuItem_Click);
            // 
            // blackHoleToolStripMenuItem
            // 
            this.blackHoleToolStripMenuItem.Name = "blackHoleToolStripMenuItem";
            this.blackHoleToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.blackHoleToolStripMenuItem.Text = "Black Hole";
            this.blackHoleToolStripMenuItem.Click += new System.EventHandler(this.blackHoleToolStripMenuItem_Click);
            // 
            // bH300ToolStripMenuItem
            // 
            this.bH300ToolStripMenuItem.Name = "bH300ToolStripMenuItem";
            this.bH300ToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.bH300ToolStripMenuItem.Text = "BH 300";
            this.bH300ToolStripMenuItem.Click += new System.EventHandler(this.bH300ToolStripMenuItem_Click);
            // 
            // uniformToolStripMenuItem
            // 
            this.uniformToolStripMenuItem.Name = "uniformToolStripMenuItem";
            this.uniformToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.uniformToolStripMenuItem.Text = "Uniform";
            this.uniformToolStripMenuItem.Click += new System.EventHandler(this.uniformToolStripMenuItem_Click);
            // 
            // singularityToolStripMenuItem
            // 
            this.singularityToolStripMenuItem.Name = "singularityToolStripMenuItem";
            this.singularityToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.singularityToolStripMenuItem.Text = "Singularity";
            this.singularityToolStripMenuItem.Click += new System.EventHandler(this.singularityToolStripMenuItem_Click);
            // 
            // sG300ToolStripMenuItem
            // 
            this.sG300ToolStripMenuItem.Name = "sG300ToolStripMenuItem";
            this.sG300ToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.sG300ToolStripMenuItem.Text = "SG 300";
            this.sG300ToolStripMenuItem.Click += new System.EventHandler(this.sG300ToolStripMenuItem_Click);
            // 
            // antiGravToolStripMenuItem
            // 
            this.antiGravToolStripMenuItem.Name = "antiGravToolStripMenuItem";
            this.antiGravToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.antiGravToolStripMenuItem.Text = "AntiGrav";
            this.antiGravToolStripMenuItem.Click += new System.EventHandler(this.antiGravToolStripMenuItem_Click);
            // 
            // orbitToolStripMenuItem
            // 
            this.orbitToolStripMenuItem.Name = "orbitToolStripMenuItem";
            this.orbitToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.orbitToolStripMenuItem.Text = "Orbit";
            this.orbitToolStripMenuItem.Click += new System.EventHandler(this.orbitToolStripMenuItem_Click);
            // 
            // bangToolStripMenuItem
            // 
            this.bangToolStripMenuItem.Name = "bangToolStripMenuItem";
            this.bangToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.bangToolStripMenuItem.Text = "Bang";
            this.bangToolStripMenuItem.Click += new System.EventHandler(this.bangToolStripMenuItem_Click);
            // 
            // randomVelocityToolStripMenuItem
            // 
            this.randomVelocityToolStripMenuItem.Name = "randomVelocityToolStripMenuItem";
            this.randomVelocityToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.randomVelocityToolStripMenuItem.Text = "RandomVelocity";
            this.randomVelocityToolStripMenuItem.Click += new System.EventHandler(this.randomVelocityToolStripMenuItem_Click);
            // 
            // Menu_3DTests
            // 
            this.Menu_3DTests.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Start3DTest,
            this.Stop3DTest});
            this.Menu_3DTests.Name = "Menu_3DTests";
            this.Menu_3DTests.Size = new System.Drawing.Size(63, 20);
            this.Menu_3DTests.Text = "3D Tests";
            // 
            // Start3DTest
            // 
            this.Start3DTest.Name = "Start3DTest";
            this.Start3DTest.Size = new System.Drawing.Size(109, 22);
            this.Start3DTest.Text = "START";
            this.Start3DTest.Click += new System.EventHandler(this.Start3DTest_Click);
            // 
            // Stop3DTest
            // 
            this.Stop3DTest.Name = "Stop3DTest";
            this.Stop3DTest.Size = new System.Drawing.Size(109, 22);
            this.Stop3DTest.Text = "STOP";
            this.Stop3DTest.Click += new System.EventHandler(this.Stop3DTest_Click);
            // 
            // SimTimer
            // 
            this.SimTimer.Interval = 1;
            this.SimTimer.Tick += new System.EventHandler(this.SimTimer_Tick);
            // 
            // Tabs
            // 
            this.Tabs.Controls.Add(this.Tab_Grid);
            this.Tabs.Controls.Add(this.Tab_3DGrid);
            this.Tabs.Controls.Add(this.Tab_Components);
            this.Tabs.Controls.Add(this.Tab_TimeGraphs);
            this.Tabs.Controls.Add(this.Tab_ParticleData);
            this.Tabs.Controls.Add(this.Tab_AddInfo);
            this.Tabs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Tabs.Location = new System.Drawing.Point(0, 54);
            this.Tabs.Name = "Tabs";
            this.Tabs.SelectedIndex = 0;
            this.Tabs.Size = new System.Drawing.Size(804, 438);
            this.Tabs.TabIndex = 1;
            // 
            // Tab_Grid
            // 
            this.Tab_Grid.Controls.Add(this.PrimaryGrid);
            this.Tab_Grid.Controls.Add(this.GridMenu);
            this.Tab_Grid.Location = new System.Drawing.Point(4, 22);
            this.Tab_Grid.Name = "Tab_Grid";
            this.Tab_Grid.Padding = new System.Windows.Forms.Padding(3);
            this.Tab_Grid.Size = new System.Drawing.Size(796, 412);
            this.Tab_Grid.TabIndex = 0;
            this.Tab_Grid.Text = "Grid";
            this.Tab_Grid.UseVisualStyleBackColor = true;
            // 
            // PrimaryGrid
            // 
            this.PrimaryGrid.AntiAliasing = System.Windows.Forms.DataVisualization.Charting.AntiAliasingStyles.None;
            chartArea1.AxisX.MajorGrid.Enabled = false;
            chartArea1.AxisX.Maximum = 500D;
            chartArea1.AxisX.Minimum = -500D;
            chartArea1.AxisX.Title = "X Position";
            chartArea1.AxisY.MajorGrid.Enabled = false;
            chartArea1.AxisY.Maximum = 500D;
            chartArea1.AxisY.Minimum = -500D;
            chartArea1.AxisY.Title = "Y Position";
            chartArea1.Name = "PrimaryChartArea";
            this.PrimaryGrid.ChartAreas.Add(chartArea1);
            this.PrimaryGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.PrimaryGrid.Location = new System.Drawing.Point(3, 27);
            this.PrimaryGrid.Name = "PrimaryGrid";
            series1.ChartArea = "PrimaryChartArea";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
            series1.IsVisibleInLegend = false;
            series1.Name = "PrimarySeries";
            dataPoint1.MarkerBorderWidth = 0;
            dataPoint1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series1.Points.Add(dataPoint1);
            series1.SmartLabelStyle.Enabled = false;
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            this.PrimaryGrid.Series.Add(series1);
            this.PrimaryGrid.Size = new System.Drawing.Size(790, 382);
            this.PrimaryGrid.TabIndex = 0;
            title1.Name = "GenerationCount";
            title1.Text = "Generation 0";
            this.PrimaryGrid.Titles.Add(title1);
            this.PrimaryGrid.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PrimaryGrid_MouseClick);
            // 
            // GridMenu
            // 
            this.GridMenu.BackColor = System.Drawing.Color.White;
            this.GridMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.GM_RenderSettings,
            this.GM_Scale});
            this.GridMenu.Location = new System.Drawing.Point(3, 3);
            this.GridMenu.Name = "GridMenu";
            this.GridMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.GridMenu.Size = new System.Drawing.Size(790, 24);
            this.GridMenu.TabIndex = 1;
            this.GridMenu.Text = "menuStrip1";
            // 
            // GM_RenderSettings
            // 
            this.GM_RenderSettings.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.GM_RenderSettings_SelectiveRendering,
            this.renderQualityToolStripMenuItem});
            this.GM_RenderSettings.Name = "GM_RenderSettings";
            this.GM_RenderSettings.Size = new System.Drawing.Size(101, 20);
            this.GM_RenderSettings.Text = "Render Settings";
            // 
            // GM_RenderSettings_SelectiveRendering
            // 
            this.GM_RenderSettings_SelectiveRendering.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.RendAll,
            this.SelectiveRendering,
            this.RendOnlyVisible});
            this.GM_RenderSettings_SelectiveRendering.Name = "GM_RenderSettings_SelectiveRendering";
            this.GM_RenderSettings_SelectiveRendering.Size = new System.Drawing.Size(177, 22);
            this.GM_RenderSettings_SelectiveRendering.Text = "Selective Rendering";
            // 
            // RendAll
            // 
            this.RendAll.Name = "RendAll";
            this.RendAll.Size = new System.Drawing.Size(177, 22);
            this.RendAll.Text = "All Particles";
            this.RendAll.Click += new System.EventHandler(this.RendAll_Click);
            // 
            // SelectiveRendering
            // 
            this.SelectiveRendering.Name = "SelectiveRendering";
            this.SelectiveRendering.Size = new System.Drawing.Size(177, 22);
            this.SelectiveRendering.Text = "Selective Rendering";
            this.SelectiveRendering.Click += new System.EventHandler(this.SelectiveRendering_Click);
            // 
            // RendOnlyVisible
            // 
            this.RendOnlyVisible.Enabled = false;
            this.RendOnlyVisible.Name = "RendOnlyVisible";
            this.RendOnlyVisible.Size = new System.Drawing.Size(177, 22);
            this.RendOnlyVisible.Text = "Only Visible";
            this.RendOnlyVisible.Click += new System.EventHandler(this.RendOnlyVisible_Click);
            // 
            // renderQualityToolStripMenuItem
            // 
            this.renderQualityToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.RenderHQ,
            this.RenderLQ});
            this.renderQualityToolStripMenuItem.Name = "renderQualityToolStripMenuItem";
            this.renderQualityToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
            this.renderQualityToolStripMenuItem.Text = "Render Quality";
            // 
            // RenderHQ
            // 
            this.RenderHQ.Name = "RenderHQ";
            this.RenderHQ.Size = new System.Drawing.Size(100, 22);
            this.RenderHQ.Text = "High";
            this.RenderHQ.Click += new System.EventHandler(this.RenderHQ_Click);
            // 
            // RenderLQ
            // 
            this.RenderLQ.Enabled = false;
            this.RenderLQ.Name = "RenderLQ";
            this.RenderLQ.Size = new System.Drawing.Size(100, 22);
            this.RenderLQ.Text = "Low";
            this.RenderLQ.Click += new System.EventHandler(this.RenderLQ_Click);
            // 
            // GM_Scale
            // 
            this.GM_Scale.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Scale_Fit,
            this.toolStripSeparator13,
            this.Scale_50,
            this.Scale_100,
            this.Scale_500,
            this.Scale_1000,
            this.Scale_5000,
            this.Scale_10000,
            this.Scale_50000});
            this.GM_Scale.Name = "GM_Scale";
            this.GM_Scale.Size = new System.Drawing.Size(46, 20);
            this.GM_Scale.Text = "Scale";
            // 
            // Scale_Fit
            // 
            this.Scale_Fit.Name = "Scale_Fit";
            this.Scale_Fit.Size = new System.Drawing.Size(141, 22);
            this.Scale_Fit.Text = "Fit";
            this.Scale_Fit.Click += new System.EventHandler(this.Scale_Fit_Click);
            // 
            // toolStripSeparator13
            // 
            this.toolStripSeparator13.Name = "toolStripSeparator13";
            this.toolStripSeparator13.Size = new System.Drawing.Size(138, 6);
            // 
            // Scale_50
            // 
            this.Scale_50.Name = "Scale_50";
            this.Scale_50.Size = new System.Drawing.Size(141, 22);
            this.Scale_50.Text = "50";
            this.Scale_50.Click += new System.EventHandler(this.Scale_50_Click);
            // 
            // Scale_100
            // 
            this.Scale_100.Name = "Scale_100";
            this.Scale_100.Size = new System.Drawing.Size(141, 22);
            this.Scale_100.Text = "100";
            this.Scale_100.Click += new System.EventHandler(this.Scale_100_Click);
            // 
            // Scale_500
            // 
            this.Scale_500.Name = "Scale_500";
            this.Scale_500.Size = new System.Drawing.Size(141, 22);
            this.Scale_500.Text = "500 (Default)";
            this.Scale_500.Click += new System.EventHandler(this.Scale_500_Click);
            // 
            // Scale_1000
            // 
            this.Scale_1000.Name = "Scale_1000";
            this.Scale_1000.Size = new System.Drawing.Size(141, 22);
            this.Scale_1000.Text = "1000";
            this.Scale_1000.Click += new System.EventHandler(this.Scale_1000_Click);
            // 
            // Scale_5000
            // 
            this.Scale_5000.Name = "Scale_5000";
            this.Scale_5000.Size = new System.Drawing.Size(141, 22);
            this.Scale_5000.Text = "5000";
            this.Scale_5000.Click += new System.EventHandler(this.Scale_5000_Click);
            // 
            // Scale_10000
            // 
            this.Scale_10000.Name = "Scale_10000";
            this.Scale_10000.Size = new System.Drawing.Size(141, 22);
            this.Scale_10000.Text = "10000";
            this.Scale_10000.Click += new System.EventHandler(this.Scale_10000_Click);
            // 
            // Scale_50000
            // 
            this.Scale_50000.Name = "Scale_50000";
            this.Scale_50000.Size = new System.Drawing.Size(141, 22);
            this.Scale_50000.Text = "50000";
            this.Scale_50000.Click += new System.EventHandler(this.Scale_50000_Click);
            // 
            // Tab_3DGrid
            // 
            this.Tab_3DGrid.Location = new System.Drawing.Point(4, 22);
            this.Tab_3DGrid.Name = "Tab_3DGrid";
            this.Tab_3DGrid.Padding = new System.Windows.Forms.Padding(3);
            this.Tab_3DGrid.Size = new System.Drawing.Size(796, 412);
            this.Tab_3DGrid.TabIndex = 6;
            this.Tab_3DGrid.Text = "3D Grid";
            this.Tab_3DGrid.UseVisualStyleBackColor = true;
            // 
            // Tab_Components
            // 
            this.Tab_Components.Controls.Add(this.ComponentsChart);
            this.Tab_Components.Location = new System.Drawing.Point(4, 22);
            this.Tab_Components.Name = "Tab_Components";
            this.Tab_Components.Padding = new System.Windows.Forms.Padding(3);
            this.Tab_Components.Size = new System.Drawing.Size(796, 412);
            this.Tab_Components.TabIndex = 1;
            this.Tab_Components.Text = "Components";
            this.Tab_Components.UseVisualStyleBackColor = true;
            // 
            // ComponentsChart
            // 
            chartArea2.AxisX.MajorGrid.Enabled = false;
            chartArea2.AxisX.Title = "Acceleration X";
            chartArea2.AxisX2.Maximum = 5D;
            chartArea2.AxisX2.Minimum = -5D;
            chartArea2.AxisY.MajorGrid.Enabled = false;
            chartArea2.AxisY.Title = "Acceleration Y";
            chartArea2.Name = "AccelChartArea";
            chartArea3.AxisX.MajorGrid.Enabled = false;
            chartArea3.AxisX.Title = "Velocity X";
            chartArea3.AxisY.MajorGrid.Enabled = false;
            chartArea3.AxisY.Title = "Velocity Y";
            chartArea3.Name = "VelocityChartArea";
            this.ComponentsChart.ChartAreas.Add(chartArea2);
            this.ComponentsChart.ChartAreas.Add(chartArea3);
            this.ComponentsChart.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ComponentsChart.Location = new System.Drawing.Point(3, 3);
            this.ComponentsChart.Name = "ComponentsChart";
            series2.ChartArea = "AccelChartArea";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
            series2.IsVisibleInLegend = false;
            series2.Name = "AccelSeries";
            series2.SmartLabelStyle.Enabled = false;
            series3.ChartArea = "VelocityChartArea";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
            series3.Name = "VelocitySeries";
            this.ComponentsChart.Series.Add(series2);
            this.ComponentsChart.Series.Add(series3);
            this.ComponentsChart.Size = new System.Drawing.Size(790, 406);
            this.ComponentsChart.TabIndex = 1;
            title2.Name = "GenerationCount";
            title2.Text = "Generation 0";
            this.ComponentsChart.Titles.Add(title2);
            // 
            // Tab_TimeGraphs
            // 
            this.Tab_TimeGraphs.Controls.Add(this.TimeGraphChart);
            this.Tab_TimeGraphs.Controls.Add(this.TimeGraphsMenu);
            this.Tab_TimeGraphs.Location = new System.Drawing.Point(4, 22);
            this.Tab_TimeGraphs.Name = "Tab_TimeGraphs";
            this.Tab_TimeGraphs.Padding = new System.Windows.Forms.Padding(3);
            this.Tab_TimeGraphs.Size = new System.Drawing.Size(796, 412);
            this.Tab_TimeGraphs.TabIndex = 5;
            this.Tab_TimeGraphs.Text = "Time Graphs";
            this.Tab_TimeGraphs.UseVisualStyleBackColor = true;
            // 
            // TimeGraphChart
            // 
            chartArea4.AxisX.MajorGrid.Enabled = false;
            chartArea4.AxisX.Title = "Generation";
            chartArea4.AxisX2.Maximum = 5D;
            chartArea4.AxisX2.Minimum = -5D;
            chartArea4.AxisY.MajorGrid.Enabled = false;
            chartArea4.AxisY.Minimum = 0D;
            chartArea4.AxisY.Title = "Acceleration";
            chartArea4.Name = "AccelChartArea";
            chartArea5.AxisX.MajorGrid.Enabled = false;
            chartArea5.AxisX.Title = "Generation";
            chartArea5.AxisY.MajorGrid.Enabled = false;
            chartArea5.AxisY.Minimum = 0D;
            chartArea5.AxisY.Title = "Velocity";
            chartArea5.Name = "VelocityChartArea";
            this.TimeGraphChart.ChartAreas.Add(chartArea4);
            this.TimeGraphChart.ChartAreas.Add(chartArea5);
            this.TimeGraphChart.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TimeGraphChart.Location = new System.Drawing.Point(3, 27);
            this.TimeGraphChart.Name = "TimeGraphChart";
            series4.ChartArea = "AccelChartArea";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series4.IsVisibleInLegend = false;
            series4.Name = "AccelSeries";
            series4.SmartLabelStyle.Enabled = false;
            series4.YValuesPerPoint = 2;
            series5.ChartArea = "VelocityChartArea";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series5.Name = "VelocitySeries";
            this.TimeGraphChart.Series.Add(series4);
            this.TimeGraphChart.Series.Add(series5);
            this.TimeGraphChart.Size = new System.Drawing.Size(790, 382);
            this.TimeGraphChart.TabIndex = 3;
            this.TimeGraphChart.Click += new System.EventHandler(this.TimeGraphChart_Click);
            // 
            // TimeGraphsMenu
            // 
            this.TimeGraphsMenu.BackColor = System.Drawing.Color.White;
            this.TimeGraphsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.TimeGraphs_ON,
            this.TimeGraphs_OFF,
            this.TGMenu_Charts,
            this.TGMenu_DataRange,
            this.TGMenu_DisplayType,
            this.TGMenu_Resolution,
            this.FakeSeperator,
            this.WatchIndexLabel,
            this.WatchIndexBox});
            this.TimeGraphsMenu.Location = new System.Drawing.Point(3, 3);
            this.TimeGraphsMenu.Name = "TimeGraphsMenu";
            this.TimeGraphsMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.TimeGraphsMenu.Size = new System.Drawing.Size(790, 24);
            this.TimeGraphsMenu.TabIndex = 0;
            this.TimeGraphsMenu.Text = "menuStrip1";
            // 
            // TimeGraphs_ON
            // 
            this.TimeGraphs_ON.Name = "TimeGraphs_ON";
            this.TimeGraphs_ON.Size = new System.Drawing.Size(37, 20);
            this.TimeGraphs_ON.Text = "ON";
            this.TimeGraphs_ON.Click += new System.EventHandler(this.TimeGraphs_ON_Click);
            // 
            // TimeGraphs_OFF
            // 
            this.TimeGraphs_OFF.Enabled = false;
            this.TimeGraphs_OFF.Name = "TimeGraphs_OFF";
            this.TimeGraphs_OFF.Size = new System.Drawing.Size(40, 20);
            this.TimeGraphs_OFF.Text = "OFF";
            this.TimeGraphs_OFF.Click += new System.EventHandler(this.TimeGraphs_OFF_Click);
            // 
            // TGMenu_Charts
            // 
            this.TGMenu_Charts.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.TGM_Charts_Chart1,
            this.TGM_Charts_Chart2});
            this.TGMenu_Charts.Name = "TGMenu_Charts";
            this.TGMenu_Charts.Size = new System.Drawing.Size(53, 23);
            this.TGMenu_Charts.Text = "Charts";
            this.TGMenu_Charts.Visible = false;
            // 
            // TGM_Charts_Chart1
            // 
            this.TGM_Charts_Chart1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Chart1_AverageAccel,
            this.Chart1_SpecificAccel,
            this.Chart1_AverageVel,
            this.Chart1_SpecificVel});
            this.TGM_Charts_Chart1.Name = "TGM_Charts_Chart1";
            this.TGM_Charts_Chart1.Size = new System.Drawing.Size(112, 22);
            this.TGM_Charts_Chart1.Text = "Chart 1";
            // 
            // Chart1_AverageAccel
            // 
            this.Chart1_AverageAccel.Name = "Chart1_AverageAccel";
            this.Chart1_AverageAccel.Size = new System.Drawing.Size(186, 22);
            this.Chart1_AverageAccel.Text = "Average Acceleration";
            this.Chart1_AverageAccel.Click += new System.EventHandler(this.averageAccelerationToolStripMenuItem_Click);
            // 
            // Chart1_SpecificAccel
            // 
            this.Chart1_SpecificAccel.Name = "Chart1_SpecificAccel";
            this.Chart1_SpecificAccel.Size = new System.Drawing.Size(186, 22);
            this.Chart1_SpecificAccel.Text = "Specific Acceleration";
            this.Chart1_SpecificAccel.Click += new System.EventHandler(this.Chart1_SpecificAccel_Click);
            // 
            // Chart1_AverageVel
            // 
            this.Chart1_AverageVel.Name = "Chart1_AverageVel";
            this.Chart1_AverageVel.Size = new System.Drawing.Size(186, 22);
            this.Chart1_AverageVel.Text = "Average Velocity";
            this.Chart1_AverageVel.Click += new System.EventHandler(this.Chart1_AverageVel_Click);
            // 
            // Chart1_SpecificVel
            // 
            this.Chart1_SpecificVel.Name = "Chart1_SpecificVel";
            this.Chart1_SpecificVel.Size = new System.Drawing.Size(186, 22);
            this.Chart1_SpecificVel.Text = "Specific Velocity";
            this.Chart1_SpecificVel.Click += new System.EventHandler(this.Chart1_SpecificVel_Click);
            // 
            // TGM_Charts_Chart2
            // 
            this.TGM_Charts_Chart2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Chart2_AverageAccel,
            this.Chart2_SpecificAccel,
            this.Chart2_AverageVel,
            this.Chart2_SpecificVel});
            this.TGM_Charts_Chart2.Name = "TGM_Charts_Chart2";
            this.TGM_Charts_Chart2.Size = new System.Drawing.Size(112, 22);
            this.TGM_Charts_Chart2.Text = "Chart 2";
            // 
            // Chart2_AverageAccel
            // 
            this.Chart2_AverageAccel.Name = "Chart2_AverageAccel";
            this.Chart2_AverageAccel.Size = new System.Drawing.Size(186, 22);
            this.Chart2_AverageAccel.Text = "Average Acceleration";
            this.Chart2_AverageAccel.Click += new System.EventHandler(this.Chart2_AverageAccel_Click);
            // 
            // Chart2_SpecificAccel
            // 
            this.Chart2_SpecificAccel.Name = "Chart2_SpecificAccel";
            this.Chart2_SpecificAccel.Size = new System.Drawing.Size(186, 22);
            this.Chart2_SpecificAccel.Text = "Specific Acceleration";
            this.Chart2_SpecificAccel.Click += new System.EventHandler(this.Chart2_SpecificAccel_Click);
            // 
            // Chart2_AverageVel
            // 
            this.Chart2_AverageVel.Name = "Chart2_AverageVel";
            this.Chart2_AverageVel.Size = new System.Drawing.Size(186, 22);
            this.Chart2_AverageVel.Text = "Average Velocity";
            this.Chart2_AverageVel.Click += new System.EventHandler(this.Chart2_AverageVel_Click);
            // 
            // Chart2_SpecificVel
            // 
            this.Chart2_SpecificVel.Name = "Chart2_SpecificVel";
            this.Chart2_SpecificVel.Size = new System.Drawing.Size(186, 22);
            this.Chart2_SpecificVel.Text = "Specific Velocity";
            this.Chart2_SpecificVel.Click += new System.EventHandler(this.Chart2_SpecificVel_Click);
            // 
            // TGMenu_DataRange
            // 
            this.TGMenu_DataRange.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.CDR_AllGenerations,
            this.CDR_Last100,
            this.CDR_Last500,
            this.CDR_Last1000});
            this.TGMenu_DataRange.Name = "TGMenu_DataRange";
            this.TGMenu_DataRange.Size = new System.Drawing.Size(79, 23);
            this.TGMenu_DataRange.Text = "Data Range";
            this.TGMenu_DataRange.Visible = false;
            // 
            // CDR_AllGenerations
            // 
            this.CDR_AllGenerations.Name = "CDR_AllGenerations";
            this.CDR_AllGenerations.Size = new System.Drawing.Size(188, 22);
            this.CDR_AllGenerations.Text = "All Generations";
            this.CDR_AllGenerations.Click += new System.EventHandler(this.CDR_AllGenerations_Click);
            // 
            // CDR_Last100
            // 
            this.CDR_Last100.Name = "CDR_Last100";
            this.CDR_Last100.Size = new System.Drawing.Size(188, 22);
            this.CDR_Last100.Text = "Last 100 Generations";
            this.CDR_Last100.Click += new System.EventHandler(this.CDR_Last100_Click);
            // 
            // CDR_Last500
            // 
            this.CDR_Last500.Name = "CDR_Last500";
            this.CDR_Last500.Size = new System.Drawing.Size(188, 22);
            this.CDR_Last500.Text = "Last 500 Generations";
            this.CDR_Last500.Click += new System.EventHandler(this.CDR_Last500_Click);
            // 
            // CDR_Last1000
            // 
            this.CDR_Last1000.Name = "CDR_Last1000";
            this.CDR_Last1000.Size = new System.Drawing.Size(188, 22);
            this.CDR_Last1000.Text = "Last 1000 Generations";
            this.CDR_Last1000.Click += new System.EventHandler(this.CDR_Last1000_Click);
            // 
            // TGMenu_DisplayType
            // 
            this.TGMenu_DisplayType.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.CDT_Line,
            this.CDT_SLine,
            this.CDT_Column});
            this.TGMenu_DisplayType.Name = "TGMenu_DisplayType";
            this.TGMenu_DisplayType.Size = new System.Drawing.Size(86, 23);
            this.TGMenu_DisplayType.Text = "Display Type";
            this.TGMenu_DisplayType.Visible = false;
            // 
            // CDT_Line
            // 
            this.CDT_Line.Name = "CDT_Line";
            this.CDT_Line.Size = new System.Drawing.Size(141, 22);
            this.CDT_Line.Text = "Line";
            this.CDT_Line.Click += new System.EventHandler(this.CDT_Line_Click);
            // 
            // CDT_SLine
            // 
            this.CDT_SLine.Name = "CDT_SLine";
            this.CDT_SLine.Size = new System.Drawing.Size(141, 22);
            this.CDT_SLine.Text = "Smooth Line";
            this.CDT_SLine.Click += new System.EventHandler(this.CDT_SLine_Click);
            // 
            // CDT_Column
            // 
            this.CDT_Column.Name = "CDT_Column";
            this.CDT_Column.Size = new System.Drawing.Size(141, 22);
            this.CDT_Column.Text = "Column";
            this.CDT_Column.Click += new System.EventHandler(this.CDT_Column_Click);
            // 
            // TGMenu_Resolution
            // 
            this.TGMenu_Resolution.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.absoluteToolStripMenuItem1,
            this.toolStripSeparator12,
            this.toolStripMenuItem26,
            this.toolStripMenuItem27,
            this.toolStripMenuItem29,
            this.toolStripMenuItem30});
            this.TGMenu_Resolution.Name = "TGMenu_Resolution";
            this.TGMenu_Resolution.Size = new System.Drawing.Size(75, 23);
            this.TGMenu_Resolution.Text = "Resolution";
            this.TGMenu_Resolution.Visible = false;
            // 
            // absoluteToolStripMenuItem1
            // 
            this.absoluteToolStripMenuItem1.Name = "absoluteToolStripMenuItem1";
            this.absoluteToolStripMenuItem1.Size = new System.Drawing.Size(121, 22);
            this.absoluteToolStripMenuItem1.Text = "Absolute";
            this.absoluteToolStripMenuItem1.Click += new System.EventHandler(this.absoluteToolStripMenuItem1_Click);
            // 
            // toolStripSeparator12
            // 
            this.toolStripSeparator12.Name = "toolStripSeparator12";
            this.toolStripSeparator12.Size = new System.Drawing.Size(118, 6);
            // 
            // toolStripMenuItem26
            // 
            this.toolStripMenuItem26.Name = "toolStripMenuItem26";
            this.toolStripMenuItem26.Size = new System.Drawing.Size(121, 22);
            this.toolStripMenuItem26.Text = "50";
            this.toolStripMenuItem26.Click += new System.EventHandler(this.toolStripMenuItem26_Click);
            // 
            // toolStripMenuItem27
            // 
            this.toolStripMenuItem27.Name = "toolStripMenuItem27";
            this.toolStripMenuItem27.Size = new System.Drawing.Size(121, 22);
            this.toolStripMenuItem27.Text = "100";
            this.toolStripMenuItem27.Click += new System.EventHandler(this.toolStripMenuItem27_Click);
            // 
            // toolStripMenuItem29
            // 
            this.toolStripMenuItem29.Name = "toolStripMenuItem29";
            this.toolStripMenuItem29.Size = new System.Drawing.Size(121, 22);
            this.toolStripMenuItem29.Text = "500";
            this.toolStripMenuItem29.Click += new System.EventHandler(this.toolStripMenuItem29_Click_1);
            // 
            // toolStripMenuItem30
            // 
            this.toolStripMenuItem30.Name = "toolStripMenuItem30";
            this.toolStripMenuItem30.Size = new System.Drawing.Size(121, 22);
            this.toolStripMenuItem30.Text = "1000";
            this.toolStripMenuItem30.Click += new System.EventHandler(this.toolStripMenuItem30_Click);
            // 
            // FakeSeperator
            // 
            this.FakeSeperator.Enabled = false;
            this.FakeSeperator.Name = "FakeSeperator";
            this.FakeSeperator.Size = new System.Drawing.Size(28, 23);
            this.FakeSeperator.Text = " | ";
            this.FakeSeperator.Visible = false;
            // 
            // WatchIndexLabel
            // 
            this.WatchIndexLabel.Enabled = false;
            this.WatchIndexLabel.Name = "WatchIndexLabel";
            this.WatchIndexLabel.Size = new System.Drawing.Size(87, 23);
            this.WatchIndexLabel.Text = "Watch Index:";
            this.WatchIndexLabel.Visible = false;
            // 
            // WatchIndexBox
            // 
            this.WatchIndexBox.Name = "WatchIndexBox";
            this.WatchIndexBox.Size = new System.Drawing.Size(100, 23);
            this.WatchIndexBox.Text = "0";
            this.WatchIndexBox.Visible = false;
            this.WatchIndexBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchIndexBox_KeyDown);
            // 
            // Tab_ParticleData
            // 
            this.Tab_ParticleData.Controls.Add(this.RawData);
            this.Tab_ParticleData.Location = new System.Drawing.Point(4, 22);
            this.Tab_ParticleData.Name = "Tab_ParticleData";
            this.Tab_ParticleData.Padding = new System.Windows.Forms.Padding(3);
            this.Tab_ParticleData.Size = new System.Drawing.Size(796, 412);
            this.Tab_ParticleData.TabIndex = 3;
            this.Tab_ParticleData.Text = "Raw Data";
            this.Tab_ParticleData.UseVisualStyleBackColor = true;
            // 
            // RawData
            // 
            this.RawData.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.ParticleIndex,
            this.ParticleMass,
            this.ParticleAcceleration,
            this.ParticleVelocity,
            this.ParticlePosition});
            this.RawData.Dock = System.Windows.Forms.DockStyle.Fill;
            this.RawData.FullRowSelect = true;
            this.RawData.GridLines = true;
            this.RawData.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.RawData.Location = new System.Drawing.Point(3, 3);
            this.RawData.MultiSelect = false;
            this.RawData.Name = "RawData";
            this.RawData.ShowGroups = false;
            this.RawData.Size = new System.Drawing.Size(790, 406);
            this.RawData.TabIndex = 0;
            this.RawData.UseCompatibleStateImageBehavior = false;
            this.RawData.View = System.Windows.Forms.View.Details;
            // 
            // ParticleIndex
            // 
            this.ParticleIndex.Text = "Index";
            this.ParticleIndex.Width = 50;
            // 
            // ParticleMass
            // 
            this.ParticleMass.Text = "Mass";
            this.ParticleMass.Width = 75;
            // 
            // ParticleAcceleration
            // 
            this.ParticleAcceleration.Text = "Acceleration";
            this.ParticleAcceleration.Width = 200;
            // 
            // ParticleVelocity
            // 
            this.ParticleVelocity.Text = "Velocity";
            this.ParticleVelocity.Width = 200;
            // 
            // ParticlePosition
            // 
            this.ParticlePosition.Text = "Position";
            this.ParticlePosition.Width = 200;
            // 
            // Tab_AddInfo
            // 
            this.Tab_AddInfo.Controls.Add(this.InfoBox);
            this.Tab_AddInfo.Location = new System.Drawing.Point(4, 22);
            this.Tab_AddInfo.Name = "Tab_AddInfo";
            this.Tab_AddInfo.Padding = new System.Windows.Forms.Padding(3);
            this.Tab_AddInfo.Size = new System.Drawing.Size(796, 412);
            this.Tab_AddInfo.TabIndex = 4;
            this.Tab_AddInfo.Text = "Additional Info";
            this.Tab_AddInfo.UseVisualStyleBackColor = true;
            // 
            // InfoBox
            // 
            this.InfoBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.InfoBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.InfoBox.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.InfoBox.Location = new System.Drawing.Point(3, 3);
            this.InfoBox.Multiline = true;
            this.InfoBox.Name = "InfoBox";
            this.InfoBox.ReadOnly = true;
            this.InfoBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.InfoBox.Size = new System.Drawing.Size(790, 406);
            this.InfoBox.TabIndex = 1;
            this.InfoBox.Text = "Getting Data...";
            this.InfoBox.WordWrap = false;
            // 
            // OFD
            // 
            this.OFD.Filter = "Simulation Files|*.sim|All Files|*.*";
            this.OFD.Title = "Open Simulation...";
            this.OFD.FileOk += new System.ComponentModel.CancelEventHandler(this.OFD_FileOk);
            // 
            // SFD
            // 
            this.SFD.Filter = "Simulation Files|*.sim|All Files|*.*";
            this.SFD.Title = "Save Simulation...";
            this.SFD.FileOk += new System.ComponentModel.CancelEventHandler(this.SFD_FileOk);
            // 
            // OBFD
            // 
            this.OBFD.Filter = "Buffered Simulation Files|*.bsim|All Files|*.*";
            this.OBFD.Title = "Open Buffered Simulation...";
            this.OBFD.FileOk += new System.ComponentModel.CancelEventHandler(this.OBFD_FileOk);
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 4;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 15F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 15F));
            this.tableLayoutPanel1.Controls.Add(this.ManipulateExponent, 3, 0);
            this.tableLayoutPanel1.Controls.Add(this.ManipulateBox, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.ManipulateTrackBar, 1, 0);
            this.tableLayoutPanel1.Controls.Add(this.ManipulateTB, 2, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
            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(804, 30);
            this.tableLayoutPanel1.TabIndex = 2;
            // 
            // ManipulateExponent
            // 
            this.ManipulateExponent.Dock = System.Windows.Forms.DockStyle.Top;
            this.ManipulateExponent.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ManipulateExponent.FormattingEnabled = true;
            this.ManipulateExponent.Items.AddRange(new object[] {
            "X 1",
            "X 10",
            "X 100",
            "X 1000",
            "X 10000"});
            this.ManipulateExponent.Location = new System.Drawing.Point(693, 3);
            this.ManipulateExponent.Name = "ManipulateExponent";
            this.ManipulateExponent.Size = new System.Drawing.Size(108, 21);
            this.ManipulateExponent.TabIndex = 3;
            this.ManipulateExponent.SelectedIndexChanged += new System.EventHandler(this.ManipulateExponent_SelectedIndexChanged);
            // 
            // ManipulateBox
            // 
            this.ManipulateBox.Dock = System.Windows.Forms.DockStyle.Top;
            this.ManipulateBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ManipulateBox.FormattingEnabled = true;
            this.ManipulateBox.Items.AddRange(new object[] {
            "Calculation Precision",
            "Collision Precision",
            "Gravitational Constant",
            "Maximum Velocity",
            "Softening Value"});
            this.ManipulateBox.Location = new System.Drawing.Point(3, 3);
            this.ManipulateBox.Name = "ManipulateBox";
            this.ManipulateBox.Size = new System.Drawing.Size(107, 21);
            this.ManipulateBox.Sorted = true;
            this.ManipulateBox.TabIndex = 0;
            this.ManipulateBox.SelectedIndexChanged += new System.EventHandler(this.ManipulateBox_SelectedIndexChanged);
            // 
            // ManipulateTrackBar
            // 
            this.ManipulateTrackBar.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ManipulateTrackBar.Location = new System.Drawing.Point(116, 3);
            this.ManipulateTrackBar.Maximum = 1000;
            this.ManipulateTrackBar.Minimum = 1;
            this.ManipulateTrackBar.Name = "ManipulateTrackBar";
            this.ManipulateTrackBar.Size = new System.Drawing.Size(521, 24);
            this.ManipulateTrackBar.TabIndex = 1;
            this.ManipulateTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
            this.ManipulateTrackBar.Value = 667;
            this.ManipulateTrackBar.Scroll += new System.EventHandler(this.ManipulateTrackBar_Scroll);
            // 
            // ManipulateTB
            // 
            this.ManipulateTB.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.ManipulateTB.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ManipulateTB.Location = new System.Drawing.Point(643, 7);
            this.ManipulateTB.Margin = new System.Windows.Forms.Padding(3, 7, 3, 3);
            this.ManipulateTB.Name = "ManipulateTB";
            this.ManipulateTB.ReadOnly = true;
            this.ManipulateTB.Size = new System.Drawing.Size(44, 13);
            this.ManipulateTB.TabIndex = 2;
            this.ManipulateTB.Text = "6.67  X";
            this.ManipulateTB.WordWrap = false;
            // 
            // Timer3D
            // 
            this.Timer3D.Interval = 1;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(804, 492);
            this.Controls.Add(this.Tabs);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(this.MainMenu);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.MainMenu;
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "N-Body Simulation";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Form1_Load);
            this.MainMenu.ResumeLayout(false);
            this.MainMenu.PerformLayout();
            this.Tabs.ResumeLayout(false);
            this.Tab_Grid.ResumeLayout(false);
            this.Tab_Grid.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PrimaryGrid)).EndInit();
            this.GridMenu.ResumeLayout(false);
            this.GridMenu.PerformLayout();
            this.Tab_Components.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ComponentsChart)).EndInit();
            this.Tab_TimeGraphs.ResumeLayout(false);
            this.Tab_TimeGraphs.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TimeGraphChart)).EndInit();
            this.TimeGraphsMenu.ResumeLayout(false);
            this.TimeGraphsMenu.PerformLayout();
            this.Tab_ParticleData.ResumeLayout(false);
            this.Tab_AddInfo.ResumeLayout(false);
            this.Tab_AddInfo.PerformLayout();
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ManipulateTrackBar)).EndInit();
            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()
        {
            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.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(1D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(8D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(10D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(11D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint13 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(12D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint14 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(13D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint15 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(14D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint16 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(15D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint17 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(16D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint18 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(17D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint19 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(18D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint20 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(19D, 0D);
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint21 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint22 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(19D, 0D);
            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)));
            chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            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.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.IsVisibleInLegend = false;
            series1.Legend = "Legend1";
            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);
            series1.Points.Add(dataPoint7);
            series1.Points.Add(dataPoint8);
            series1.Points.Add(dataPoint9);
            series1.Points.Add(dataPoint10);
            series1.Points.Add(dataPoint11);
            series1.Points.Add(dataPoint12);
            series1.Points.Add(dataPoint13);
            series1.Points.Add(dataPoint14);
            series1.Points.Add(dataPoint15);
            series1.Points.Add(dataPoint16);
            series1.Points.Add(dataPoint17);
            series1.Points.Add(dataPoint18);
            series1.Points.Add(dataPoint19);
            series1.Points.Add(dataPoint20);
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.IsVisibleInLegend = false;
            series2.Legend = "Legend1";
            series2.Name = "Series2";
            series2.Points.Add(dataPoint21);
            series2.Points.Add(dataPoint22);
            this.chart1.Series.Add(series1);
            this.chart1.Series.Add(series2);
            this.chart1.Size = new System.Drawing.Size(842, 371);
            this.chart1.TabIndex = 0;
            this.chart1.Text = "chart1";
            // 
            // Graph
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(866, 395);
            this.Controls.Add(this.chart1);
            this.Name = "Graph";
            this.Text = "Graph";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Graph_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);

        }
예제 #43
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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 3D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 7D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 8D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 6D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 7D);
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 3D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 6D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 5D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 8D);
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.chart1 = new LQT.GUI.LQTChart();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // chart1
            // 
            this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
            this.chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chart1.BackSecondaryColor = System.Drawing.Color.White;
            this.chart1.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((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.Inclination = 15;
            chartArea1.Area3DStyle.IsClustered = true;
            chartArea1.Area3DStyle.IsRightAngleAxes = false;
            chartArea1.Area3DStyle.Perspective = 10;
            chartArea1.Area3DStyle.Rotation = 10;
            chartArea1.Area3DStyle.WallWidth = 0;
            chartArea1.AxisX.IsLabelAutoFit = false;
            chartArea1.AxisX.LabelStyle.Angle = 90;
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F);
            chartArea1.AxisX.LabelStyle.Interval = 1D;
            chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((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(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
            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 = "Default";
            chartArea1.ShadowColor = System.Drawing.Color.Transparent;
            this.chart1.ChartAreas.Add(chartArea1);
            this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
            legend1.BackColor = System.Drawing.Color.Transparent;
            legend1.DockedToChartArea = "Default";
            legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            legend1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            legend1.IsDockedInsideChartArea = false;
            legend1.IsTextAutoFit = false;
            legend1.Name = "Default";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(0, 0);
            this.chart1.Name = "chart1";
            series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            series1.ChartArea = "Default";
            series1.IsValueShownAsLabel = true;
            series1.Legend = "Default";
            series1.LegendText = "Patients In Treatment";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            series2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            series2.ChartArea = "Default";
            series2.IsValueShownAsLabel = true;
            series2.Legend = "Default";
            series2.LegendText = "Patients In Pre-ART";
            series2.Name = "Series4";
            series2.Points.Add(dataPoint6);
            series2.Points.Add(dataPoint7);
            series2.Points.Add(dataPoint8);
            series2.Points.Add(dataPoint9);
            series2.Points.Add(dataPoint10);
            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(360, 292);
            this.chart1.TabIndex = 2;
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
            title1.Name = "Title1";
            title1.Text = "Patient Distribution";
            this.chart1.Titles.Add(title1);
            // 
            // chartMPatientNo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.Controls.Add(this.chart1);
            this.Name = "chartMPatientNo";
            this.Size = new System.Drawing.Size(360, 292);
            this.Load += new System.EventHandler(this.chartMPatientNo_Load);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);

        }
예제 #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.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, 5D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 4D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 3D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 3D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 6D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 6D);
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.materialLabel1 = new MaterialSkin.Controls.MaterialLabel();
            this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
            this.materialCheckBox1 = new MaterialSkin.Controls.MaterialCheckBox();
            this.materialRaisedButton1 = new MaterialSkin.Controls.MaterialRaisedButton();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.materialLabel2 = new MaterialSkin.Controls.MaterialLabel();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // materialLabel1
            // 
            this.materialLabel1.AutoSize = true;
            this.materialLabel1.Depth = 0;
            this.materialLabel1.Font = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel1.Location = new System.Drawing.Point(22, 17);
            this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel1.Name = "materialLabel1";
            this.materialLabel1.Size = new System.Drawing.Size(75, 19);
            this.materialLabel1.TabIndex = 0;
            this.materialLabel1.Text = "Thời gian:";
            // 
            // dateTimePicker1
            // 
            this.dateTimePicker1.CustomFormat = "MM/yyyy";
            this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dateTimePicker1.Location = new System.Drawing.Point(113, 16);
            this.dateTimePicker1.Name = "dateTimePicker1";
            this.dateTimePicker1.Size = new System.Drawing.Size(133, 20);
            this.dateTimePicker1.TabIndex = 1;
            // 
            // materialCheckBox1
            // 
            this.materialCheckBox1.AutoSize = true;
            this.materialCheckBox1.Depth = 0;
            this.materialCheckBox1.Font = new System.Drawing.Font("Roboto", 10F);
            this.materialCheckBox1.Location = new System.Drawing.Point(273, 13);
            this.materialCheckBox1.Margin = new System.Windows.Forms.Padding(0);
            this.materialCheckBox1.MouseLocation = new System.Drawing.Point(-1, -1);
            this.materialCheckBox1.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialCheckBox1.Name = "materialCheckBox1";
            this.materialCheckBox1.Ripple = true;
            this.materialCheckBox1.Size = new System.Drawing.Size(107, 30);
            this.materialCheckBox1.TabIndex = 2;
            this.materialCheckBox1.Text = "Hiện biểu đồ";
            this.materialCheckBox1.UseVisualStyleBackColor = true;
            // 
            // materialRaisedButton1
            // 
            this.materialRaisedButton1.Depth = 0;
            this.materialRaisedButton1.Location = new System.Drawing.Point(415, 14);
            this.materialRaisedButton1.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialRaisedButton1.Name = "materialRaisedButton1";
            this.materialRaisedButton1.Primary = true;
            this.materialRaisedButton1.Size = new System.Drawing.Size(145, 26);
            this.materialRaisedButton1.TabIndex = 3;
            this.materialRaisedButton1.Text = "Hiện báo cáo";
            this.materialRaisedButton1.UseVisualStyleBackColor = true;
            // 
            // dataGridView1
            // 
            this.dataGridView1.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.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column1,
            this.Column2,
            this.Column3});
            this.dataGridView1.Location = new System.Drawing.Point(3, 51);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.Size = new System.Drawing.Size(928, 241);
            this.dataGridView1.TabIndex = 4;
            // 
            // materialLabel2
            // 
            this.materialLabel2.AutoSize = true;
            this.materialLabel2.Depth = 0;
            this.materialLabel2.Font = new System.Drawing.Font("Roboto", 11F);
            this.materialLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.materialLabel2.Location = new System.Drawing.Point(615, 18);
            this.materialLabel2.MouseState = MaterialSkin.MouseState.HOVER;
            this.materialLabel2.Name = "materialLabel2";
            this.materialLabel2.Size = new System.Drawing.Size(261, 19);
            this.materialLabel2.TabIndex = 5;
            this.materialLabel2.Text = "Tổng doanh thu tháng: 27000000 VND";
            // 
            // 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)));
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(3, 293);
            this.chart1.Name = "chart1";
            series1.ChartArea = "ChartArea1";
            series1.Legend = "Legend1";
            series1.Name = "Doanh thu (tr VND)";
            dataPoint1.AxisLabel = " 1/11";
            dataPoint1.LegendText = "wdw";
            dataPoint2.AxisLabel = "2/11";
            dataPoint3.AxisLabel = "3/11";
            dataPoint4.AxisLabel = "4/11";
            dataPoint5.AxisLabel = "6/11";
            dataPoint6.AxisLabel = "6/11";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            series1.Points.Add(dataPoint6);
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(928, 238);
            this.chart1.TabIndex = 6;
            this.chart1.Text = "chart1";
            title1.Name = "Title1";
            this.chart1.Titles.Add(title1);
            // 
            // Column1
            // 
            this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.Column1.HeaderText = "Ngày";
            this.Column1.Name = "Column1";
            // 
            // Column2
            // 
            this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.Column2.HeaderText = "Tổng số hóa đơn";
            this.Column2.Name = "Column2";
            // 
            // Column3
            // 
            this.Column3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.Column3.HeaderText = "Tổng";
            this.Column3.Name = "Column3";
            // 
            // BaoCao
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.materialLabel2);
            this.Controls.Add(this.dataGridView1);
            this.Controls.Add(this.materialRaisedButton1);
            this.Controls.Add(this.materialCheckBox1);
            this.Controls.Add(this.dateTimePicker1);
            this.Controls.Add(this.materialLabel1);
            this.Name = "BaoCao";
            this.Size = new System.Drawing.Size(934, 534);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #45
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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0.8D, 10D);
            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(1D, 20D);
            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(1.2D, 5D);
            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(1.4D, 15D);
            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(1.6D, 10D);
            this.chartDictStat = new System.Windows.Forms.DataVisualization.Charting.Chart();
            ((System.ComponentModel.ISupportInitialize)(this.chartDictStat)).BeginInit();
            this.SuspendLayout();
            // 
            // chartDictStat
            // 
            this.chartDictStat.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.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea1.AxisX.MajorGrid.Enabled = false;
            chartArea1.AxisX.MaximumAutoSize = 100F;
            chartArea1.AxisX.ScaleBreakStyle.CollapsibleSpaceThreshold = 10;
            chartArea1.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
            chartArea1.AxisY.LabelStyle.Enabled = false;
            chartArea1.AxisY.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea1.AxisY.MaximumAutoSize = 100F;
            chartArea1.AxisY.Minimum = 0D;
            chartArea1.AxisY.ScaleView.Position = 0D;
            chartArea1.Name = "ChartArea1";
            chartArea1.Position.Auto = false;
            chartArea1.Position.Height = 94F;
            chartArea1.Position.Width = 66.81081F;
            chartArea1.Position.X = 3F;
            chartArea1.Position.Y = 3F;
            this.chartDictStat.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chartDictStat.Legends.Add(legend1);
            this.chartDictStat.Location = new System.Drawing.Point(-1, 1);
            this.chartDictStat.Name = "chartDictStat";
            series1.BorderColor = System.Drawing.Color.Black;
            series1.ChartArea = "ChartArea1";
            series1.Color = System.Drawing.Color.RoyalBlue;
            series1.EmptyPointStyle.IsValueShownAsLabel = true;
            series1.IsValueShownAsLabel = true;
            series1.Legend = "Legend1";
            series1.Name = "Всего в словаре";
            dataPoint1.MarkerSize = 5;
            series1.Points.Add(dataPoint1);
            series2.BorderColor = System.Drawing.Color.Black;
            series2.ChartArea = "ChartArea1";
            series2.Color = System.Drawing.Color.LightGray;
            series2.EmptyPointStyle.IsValueShownAsLabel = true;
            series2.IsValueShownAsLabel = true;
            series2.Legend = "Legend1";
            series2.Name = "Пройдено";
            series2.Points.Add(dataPoint2);
            series3.BorderColor = System.Drawing.Color.Black;
            series3.ChartArea = "ChartArea1";
            series3.Color = System.Drawing.Color.YellowGreen;
            series3.IsValueShownAsLabel = true;
            series3.Legend = "Legend1";
            series3.Name = "Изучено";
            series3.Points.Add(dataPoint3);
            series4.BorderColor = System.Drawing.Color.Black;
            series4.ChartArea = "ChartArea1";
            series4.Color = System.Drawing.Color.Gold;
            series4.IsValueShownAsLabel = true;
            series4.Legend = "Legend1";
            series4.Name = "Количество тестов < 2";
            series4.Points.Add(dataPoint4);
            series5.BorderColor = System.Drawing.Color.Black;
            series5.ChartArea = "ChartArea1";
            series5.Color = System.Drawing.Color.Tomato;
            series5.IsValueShownAsLabel = true;
            series5.Legend = "Legend1";
            series5.Name = "Коэффициент ответов <= 0,5";
            series5.Points.Add(dataPoint5);
            this.chartDictStat.Series.Add(series1);
            this.chartDictStat.Series.Add(series2);
            this.chartDictStat.Series.Add(series3);
            this.chartDictStat.Series.Add(series4);
            this.chartDictStat.Series.Add(series5);
            this.chartDictStat.Size = new System.Drawing.Size(738, 224);
            this.chartDictStat.TabIndex = 0;
            this.chartDictStat.Text = "chart1";
            // 
            // View_ChartDict
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.ClientSize = new System.Drawing.Size(738, 224);
            this.Controls.Add(this.chartDictStat);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "View_ChartDict";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "View_ChartDict";
            ((System.ComponentModel.ISupportInitialize)(this.chartDictStat)).EndInit();
            this.ResumeLayout(false);

        }
예제 #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.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.SkinStyle = 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.Location = new System.Drawing.Point(168, 80);
     this.ChartBackColor.Name = "ChartBackColor";
     this.ChartBackColor.Size = new System.Drawing.Size(121, 22);
     this.ChartBackColor.TabIndex = 2;
     this.ChartBackColor.SelectedIndexChanged += new System.EventHandler(this.SkinItems_Changed);
     //
     // SkinStyle
     //
     this.SkinStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.SkinStyle.Location = new System.Drawing.Point(168, 8);
     this.SkinStyle.Name = "SkinStyle";
     this.SkinStyle.Size = new System.Drawing.Size(121, 22);
     this.SkinStyle.TabIndex = 0;
     this.SkinStyle.SelectedIndexChanged += new System.EventHandler(this.SkinStyle_SelectedIndexChanged);
     //
     // ChartForeColor
     //
     this.ChartForeColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ChartForeColor.Location = new System.Drawing.Point(168, 48);
     this.ChartForeColor.Name = "ChartForeColor";
     this.ChartForeColor.Size = new System.Drawing.Size(121, 22);
     this.ChartForeColor.TabIndex = 1;
     this.ChartForeColor.SelectedIndexChanged += new System.EventHandler(this.SkinItems_Changed);
     //
     // HatchStyle
     //
     this.HatchStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.HatchStyle.Location = new System.Drawing.Point(168, 144);
     this.HatchStyle.Name = "HatchStyle";
     this.HatchStyle.Size = new System.Drawing.Size(121, 22);
     this.HatchStyle.TabIndex = 4;
     this.HatchStyle.SelectedIndexChanged += new System.EventHandler(this.SkinItems_Changed);
     //
     // Gradient
     //
     this.Gradient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Gradient.Location = new System.Drawing.Point(168, 112);
     this.Gradient.Name = "Gradient";
     this.Gradient.Size = new System.Drawing.Size(121, 22);
     this.Gradient.TabIndex = 3;
     this.Gradient.SelectedIndexChanged += new System.EventHandler(this.SkinItems_Changed);
     //
     // BorderColor
     //
     this.BorderColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderColor.Location = new System.Drawing.Point(168, 216);
     this.BorderColor.Name = "BorderColor";
     this.BorderColor.Size = new System.Drawing.Size(121, 22);
     this.BorderColor.TabIndex = 6;
     this.BorderColor.SelectedIndexChanged += new System.EventHandler(this.Border_Changed);
     //
     // BorderDashStyle
     //
     this.BorderDashStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BorderDashStyle.Location = new System.Drawing.Point(168, 184);
     this.BorderDashStyle.Name = "BorderDashStyle";
     this.BorderDashStyle.Size = new System.Drawing.Size(121, 22);
     this.BorderDashStyle.TabIndex = 5;
     this.BorderDashStyle.SelectedIndexChanged += new System.EventHandler(this.Border_Changed);
     //
     // 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, 248);
     this.BorderSize.Name = "BorderSize";
     this.BorderSize.Size = new System.Drawing.Size(121, 22);
     this.BorderSize.TabIndex = 7;
     this.BorderSize.SelectedIndexChanged += new System.EventHandler(this.Border_Changed);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(26, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(136, 16);
     this.label1.TabIndex = 9;
     this.label1.Text = "&Skin Style:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(26, 51);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(136, 16);
     this.label2.TabIndex = 10;
     this.label2.Text = "&Fore Color:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(26, 83);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(136, 16);
     this.label3.TabIndex = 11;
     this.label3.Text = "&Back Color:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(26, 115);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(136, 16);
     this.label4.TabIndex = 12;
     this.label4.Text = "&Gradient:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(26, 147);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(136, 16);
     this.label5.TabIndex = 13;
     this.label5.Text = "&Hatch Style:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(26, 187);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(136, 16);
     this.label6.TabIndex = 14;
     this.label6.Text = "B&order Style:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(26, 219);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(136, 16);
     this.label7.TabIndex = 15;
     this.label7.Text = "Bo&rder Color:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(26, 251);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(136, 16);
     this.label8.TabIndex = 16;
     this.label8.Text = "Bor&der Size:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Verdana", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(16, 14);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(702, 34);
     this.label9.TabIndex = 18;
     this.label9.Text = "This sample demonstrates how to�set the appearance properties of a chart\'s�border" +
         " skin.";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.BorderDashStyle);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.Gradient);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.HatchStyle);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.SkinStyle);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.BorderSize);
     this.panel1.Controls.Add(this.ChartBackColor);
     this.panel1.Controls.Add(this.ChartForeColor);
     this.panel1.Controls.Add(this.BorderColor);
     this.panel1.Location = new System.Drawing.Point(432, 68);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(292, 288);
     this.panel1.TabIndex = 0;
     //
     // Chart1
     //
     this.Chart1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.Chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.Chart1.BackSecondaryColor = System.Drawing.Color.White;
     this.Chart1.BorderlineColor = System.Drawing.Color.Maroon;
     this.Chart1.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.Chart1.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.Enable3D = true;
     chartArea1.Area3DStyle.Inclination = 14;
     chartArea1.Area3DStyle.IsClustered = true;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.Perspective = 6;
     chartArea1.Area3DStyle.PointGapDepth = 0;
     chartArea1.Area3DStyle.Rotation = 17;
     chartArea1.Area3DStyle.WallWidth = 0;
     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(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((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(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
     chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     chartArea1.BackSecondaryColor = System.Drawing.Color.Transparent;
     chartArea1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.Name = "Default";
     chartArea1.ShadowColor = System.Drawing.Color.Transparent;
     this.Chart1.ChartAreas.Add(chartArea1);
     legend1.BackColor = System.Drawing.Color.Transparent;
     legend1.Enabled = false;
     legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend1.Name = "Default";
     legend1.Position.Auto = false;
     legend1.Position.Height = 5F;
     legend1.Position.Width = 40F;
     legend1.Position.X = 5F;
     legend1.Position.Y = 85F;
     this.Chart1.Legends.Add(legend1);
     this.Chart1.Location = new System.Drawing.Point(16, 60);
     this.Chart1.Name = "Chart1";
     this.Chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     series1.ChartArea = "Default";
     series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))));
     series1.CustomProperties = "DrawingStyle=Cylinder";
     series1.Legend = "Legend2";
     series1.Name = "Series2";
     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(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series2.ChartArea = "Default";
     series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65)))));
     series2.CustomProperties = "DrawingStyle=Cylinder";
     series2.Legend = "Default";
     series2.Name = "Series3";
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.Points.Add(dataPoint8);
     series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series3.ChartArea = "Default";
     series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar;
     series3.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(224)))), ((int)(((byte)(64)))), ((int)(((byte)(10)))));
     series3.CustomProperties = "DrawingStyle=Cylinder";
     series3.Legend = "Default";
     series3.Name = "Series4";
     series3.Points.Add(dataPoint9);
     series3.Points.Add(dataPoint10);
     series3.Points.Add(dataPoint11);
     series3.Points.Add(dataPoint12);
     series3.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series3.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     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.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 = "Title1";
     title1.ShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     title1.ShadowOffset = 3;
     title1.Text = "Chart Control for .NET Framework";
     this.Chart1.Titles.Add(title1);
     //
     // Borders
     //
     this.Controls.Add(this.Chart1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label9);
     this.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "Borders";
     this.Size = new System.Drawing.Size(728, 480);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).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()
        {
            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.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            this.grpKlokken = new System.Windows.Forms.GroupBox();
            this.lblOnline = new System.Windows.Forms.Label();
            this.btnClockOut = new System.Windows.Forms.Button();
            this.btnClockIn = new System.Windows.Forms.Button();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.grpTotalen = new System.Windows.Forms.GroupBox();
            this.lblUrenDiff = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.lblUrenTotaal = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.lblUrenWeek = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.grpOverzicht = new System.Windows.Forms.GroupBox();
            this.btnGenerate = new System.Windows.Forms.Button();
            this.dtOverzicht = new System.Windows.Forms.DateTimePicker();
            this.sfdOverview = new System.Windows.Forms.SaveFileDialog();
            this.chrtUren = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tabControl = new System.Windows.Forms.TabControl();
            this.tpChart = new System.Windows.Forms.TabPage();
            this.ucWeek = new UrenRegistratie.Controls.UcWeek();
            this.tpUren = new System.Windows.Forms.TabPage();
            this.grpKlokken.SuspendLayout();
            this.grpTotalen.SuspendLayout();
            this.grpOverzicht.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chrtUren)).BeginInit();
            this.tabControl.SuspendLayout();
            this.tpChart.SuspendLayout();
            this.SuspendLayout();
            // 
            // grpKlokken
            // 
            this.grpKlokken.Controls.Add(this.lblOnline);
            this.grpKlokken.Controls.Add(this.btnClockOut);
            this.grpKlokken.Controls.Add(this.btnClockIn);
            this.grpKlokken.Location = new System.Drawing.Point(13, 13);
            this.grpKlokken.Name = "grpKlokken";
            this.grpKlokken.Size = new System.Drawing.Size(243, 115);
            this.grpKlokken.TabIndex = 0;
            this.grpKlokken.TabStop = false;
            this.grpKlokken.Text = "In/uitklokken";
            // 
            // lblOnline
            // 
            this.lblOnline.AutoSize = true;
            this.lblOnline.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblOnline.Location = new System.Drawing.Point(20, 77);
            this.lblOnline.Name = "lblOnline";
            this.lblOnline.Size = new System.Drawing.Size(110, 13);
            this.lblOnline.TabIndex = 2;
            this.lblOnline.Text = "Aanwezig sinds 00:00";
            // 
            // btnClockOut
            // 
            this.btnClockOut.Location = new System.Drawing.Point(104, 45);
            this.btnClockOut.Name = "btnClockOut";
            this.btnClockOut.Size = new System.Drawing.Size(75, 23);
            this.btnClockOut.TabIndex = 1;
            this.btnClockOut.Text = "Uitklokken";
            this.btnClockOut.UseVisualStyleBackColor = true;
            // 
            // btnClockIn
            // 
            this.btnClockIn.Location = new System.Drawing.Point(23, 45);
            this.btnClockIn.Name = "btnClockIn";
            this.btnClockIn.Size = new System.Drawing.Size(75, 23);
            this.btnClockIn.TabIndex = 0;
            this.btnClockIn.Text = "Inklokken";
            this.btnClockIn.UseVisualStyleBackColor = true;
            // 
            // timer1
            // 
            this.timer1.Enabled = true;
            this.timer1.Interval = 60000;
            // 
            // grpTotalen
            // 
            this.grpTotalen.Controls.Add(this.lblUrenDiff);
            this.grpTotalen.Controls.Add(this.label3);
            this.grpTotalen.Controls.Add(this.lblUrenTotaal);
            this.grpTotalen.Controls.Add(this.label2);
            this.grpTotalen.Controls.Add(this.lblUrenWeek);
            this.grpTotalen.Controls.Add(this.label1);
            this.grpTotalen.Location = new System.Drawing.Point(262, 13);
            this.grpTotalen.Name = "grpTotalen";
            this.grpTotalen.Size = new System.Drawing.Size(221, 115);
            this.grpTotalen.TabIndex = 1;
            this.grpTotalen.TabStop = false;
            this.grpTotalen.Text = "Totalen";
            // 
            // lblUrenDiff
            // 
            this.lblUrenDiff.AutoSize = true;
            this.lblUrenDiff.Location = new System.Drawing.Point(166, 77);
            this.lblUrenDiff.Name = "lblUrenDiff";
            this.lblUrenDiff.Size = new System.Drawing.Size(13, 13);
            this.lblUrenDiff.TabIndex = 5;
            this.lblUrenDiff.Text = "0";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 77);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(47, 13);
            this.label3.TabIndex = 4;
            this.label3.Text = "Verschil:";
            // 
            // lblUrenTotaal
            // 
            this.lblUrenTotaal.AutoSize = true;
            this.lblUrenTotaal.Location = new System.Drawing.Point(166, 55);
            this.lblUrenTotaal.Name = "lblUrenTotaal";
            this.lblUrenTotaal.Size = new System.Drawing.Size(13, 13);
            this.lblUrenTotaal.TabIndex = 3;
            this.lblUrenTotaal.Text = "0";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 55);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(81, 13);
            this.label2.TabIndex = 2;
            this.label2.Text = "Totaal gewerkt:";
            // 
            // lblUrenWeek
            // 
            this.lblUrenWeek.AutoSize = true;
            this.lblUrenWeek.Location = new System.Drawing.Point(166, 33);
            this.lblUrenWeek.Name = "lblUrenWeek";
            this.lblUrenWeek.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblUrenWeek.Size = new System.Drawing.Size(13, 13);
            this.lblUrenWeek.TabIndex = 1;
            this.lblUrenWeek.Text = "0";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 33);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(113, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Aantal uur deze week:";
            // 
            // grpOverzicht
            // 
            this.grpOverzicht.Controls.Add(this.btnGenerate);
            this.grpOverzicht.Controls.Add(this.dtOverzicht);
            this.grpOverzicht.Location = new System.Drawing.Point(489, 13);
            this.grpOverzicht.Name = "grpOverzicht";
            this.grpOverzicht.Size = new System.Drawing.Size(221, 115);
            this.grpOverzicht.TabIndex = 2;
            this.grpOverzicht.TabStop = false;
            this.grpOverzicht.Text = "Overzicht uitdraaien";
            // 
            // btnGenerate
            // 
            this.btnGenerate.Location = new System.Drawing.Point(23, 79);
            this.btnGenerate.Name = "btnGenerate";
            this.btnGenerate.Size = new System.Drawing.Size(156, 23);
            this.btnGenerate.TabIndex = 1;
            this.btnGenerate.Text = "Genereren";
            this.btnGenerate.UseVisualStyleBackColor = true;
            this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
            // 
            // dtOverzicht
            // 
            this.dtOverzicht.CustomFormat = "MMMM yyyy";
            this.dtOverzicht.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtOverzicht.Location = new System.Drawing.Point(7, 45);
            this.dtOverzicht.Name = "dtOverzicht";
            this.dtOverzicht.ShowUpDown = true;
            this.dtOverzicht.Size = new System.Drawing.Size(200, 20);
            this.dtOverzicht.TabIndex = 0;
            // 
            // sfdOverview
            // 
            this.sfdOverview.DefaultExt = "csv";
            this.sfdOverview.Filter = "CSV (*.csv)|*.csv|All files (*.*)|*.*";
            // 
            // chrtUren
            // 
            chartArea1.Name = "ChartArea1";
            this.chrtUren.ChartAreas.Add(chartArea1);
            legend1.Enabled = false;
            legend1.Name = "Legend1";
            this.chrtUren.Legends.Add(legend1);
            this.chrtUren.Location = new System.Drawing.Point(23, 163);
            this.chrtUren.Name = "chrtUren";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
            series2.Legend = "Legend1";
            series2.Name = "Series2";
            series2.Points.Add(dataPoint1);
            this.chrtUren.Series.Add(series1);
            this.chrtUren.Series.Add(series2);
            this.chrtUren.Size = new System.Drawing.Size(756, 286);
            this.chrtUren.TabIndex = 3;
            this.chrtUren.Text = "chart1";
            this.chrtUren.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseMove);
            // 
            // tabControl
            // 
            this.tabControl.Controls.Add(this.tpChart);
            this.tabControl.Controls.Add(this.tpUren);
            this.tabControl.Location = new System.Drawing.Point(13, 135);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedIndex = 0;
            this.tabControl.Size = new System.Drawing.Size(776, 324);
            this.tabControl.TabIndex = 4;
            // 
            // tpChart
            // 
            this.tpChart.Controls.Add(this.ucWeek);
            this.tpChart.Location = new System.Drawing.Point(4, 22);
            this.tpChart.Name = "tpChart";
            this.tpChart.Padding = new System.Windows.Forms.Padding(3);
            this.tpChart.Size = new System.Drawing.Size(768, 298);
            this.tpChart.TabIndex = 0;
            this.tpChart.Text = "Grafiek";
            this.tpChart.UseVisualStyleBackColor = true;
            // 
            // ucWeek
            // 
            this.ucWeek.Location = new System.Drawing.Point(7, 6);
            this.ucWeek.Name = "ucWeek";
            this.ucWeek.Size = new System.Drawing.Size(756, 286);
            this.ucWeek.TabIndex = 0;
            // 
            // tpUren
            // 
            this.tpUren.Location = new System.Drawing.Point(4, 22);
            this.tpUren.Name = "tpUren";
            this.tpUren.Padding = new System.Windows.Forms.Padding(3);
            this.tpUren.Size = new System.Drawing.Size(768, 298);
            this.tpUren.TabIndex = 1;
            this.tpUren.Text = "Uren";
            this.tpUren.UseVisualStyleBackColor = true;
            // 
            // FormMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(801, 471);
            this.Controls.Add(this.chrtUren);
            this.Controls.Add(this.tabControl);
            this.Controls.Add(this.grpOverzicht);
            this.Controls.Add(this.grpTotalen);
            this.Controls.Add(this.grpKlokken);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "FormMain";
            this.Text = "UrenRegistratie";
            this.grpKlokken.ResumeLayout(false);
            this.grpKlokken.PerformLayout();
            this.grpTotalen.ResumeLayout(false);
            this.grpTotalen.PerformLayout();
            this.grpOverzicht.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chrtUren)).EndInit();
            this.tabControl.ResumeLayout(false);
            this.tpChart.ResumeLayout(false);
            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.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 series19 = new System.Windows.Forms.DataVisualization.Charting.Series();
            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 chartArea8 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend8 = 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();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea9 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend9 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series25 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint65 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4512D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint66 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 5678D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint67 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 8332D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint68 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 2345D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint69 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 6789D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint70 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 6677D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint71 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 2333D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint72 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2334D);
            System.Windows.Forms.DataVisualization.Charting.Series series26 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint73 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 2233D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint74 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 3344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint75 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 5555D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint76 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 6666D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint77 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 7777D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint78 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 2344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint79 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 3456D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint80 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2222D);
            System.Windows.Forms.DataVisualization.Charting.Series series27 = 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.Legend legend10 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series28 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint81 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4512D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint82 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 5678D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint83 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 8332D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint84 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 2345D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint85 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 6789D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint86 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 6677D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint87 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 2333D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint88 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2334D);
            System.Windows.Forms.DataVisualization.Charting.Series series29 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint89 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 2233D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint90 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 3344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint91 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 5555D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint92 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 6666D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint93 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 7777D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint94 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 2344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint95 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 3456D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint96 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2222D);
            System.Windows.Forms.DataVisualization.Charting.Series series30 = 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 legend11 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series31 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint97 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4512D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint98 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 5678D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint99 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 8332D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint100 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 2345D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint101 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 6789D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint102 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 6677D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint103 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 2333D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint104 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2334D);
            System.Windows.Forms.DataVisualization.Charting.Series series32 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint105 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 2233D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint106 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 3344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint107 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 5555D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint108 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 6666D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint109 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 7777D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint110 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 2344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint111 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 3456D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint112 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2222D);
            System.Windows.Forms.DataVisualization.Charting.Series series33 = 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.Legend legend12 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series34 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint113 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 4512D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint114 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 5678D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint115 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 8332D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint116 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 2345D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint117 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 6789D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint118 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 6677D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint119 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 2333D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint120 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2334D);
            System.Windows.Forms.DataVisualization.Charting.Series series35 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint121 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 2233D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint122 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 3344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint123 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 5555D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint124 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 6666D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint125 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 7777D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint126 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 2344D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint127 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 3456D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint128 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7D, 2222D);
            System.Windows.Forms.DataVisualization.Charting.Series series36 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.pnlChart = new System.Windows.Forms.Panel();
            this.chart4 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label110 = new System.Windows.Forms.Label();
            this.label109 = new System.Windows.Forms.Label();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label96 = new System.Windows.Forms.Label();
            this.label93 = new System.Windows.Forms.Label();
            this.label92 = new System.Windows.Forms.Label();
            this.label91 = new System.Windows.Forms.Label();
            this.label89 = new System.Windows.Forms.Label();
            this.label88 = new System.Windows.Forms.Label();
            this.panel107 = new System.Windows.Forms.Panel();
            this.panel108 = new System.Windows.Forms.Panel();
            this.panel135 = new System.Windows.Forms.Panel();
            this.panel138 = new System.Windows.Forms.Panel();
            this.pictureBox6 = new System.Windows.Forms.PictureBox();
            this.panel139 = new System.Windows.Forms.Panel();
            this.panel140 = new System.Windows.Forms.Panel();
            this.panel141 = new System.Windows.Forms.Panel();
            this.panel142 = new System.Windows.Forms.Panel();
            this.panel78 = new System.Windows.Forms.Panel();
            this.panel79 = new System.Windows.Forms.Panel();
            this.panel143 = new System.Windows.Forms.Panel();
            this.panel144 = new System.Windows.Forms.Panel();
            this.panel145 = new System.Windows.Forms.Panel();
            this.panel146 = new System.Windows.Forms.Panel();
            this.pictureBox3 = new System.Windows.Forms.PictureBox();
            this.panel147 = new System.Windows.Forms.Panel();
            this.panel148 = new System.Windows.Forms.Panel();
            this.txtOut96 = new System.Windows.Forms.TextBox();
            this.panel76 = new System.Windows.Forms.Panel();
            this.panel77 = new System.Windows.Forms.Panel();
            this.txtOut64 = new System.Windows.Forms.TextBox();
            this.label82 = new System.Windows.Forms.Label();
            this.txtOut32 = new System.Windows.Forms.TextBox();
            this.label81 = new System.Windows.Forms.Label();
            this.txtOut80 = new System.Windows.Forms.TextBox();
            this.label30 = new System.Windows.Forms.Label();
            this.txtOut48 = new System.Windows.Forms.TextBox();
            this.label80 = new System.Windows.Forms.Label();
            this.txtOut16 = new System.Windows.Forms.TextBox();
            this.label23 = new System.Windows.Forms.Label();
            this.panel149 = new System.Windows.Forms.Panel();
            this.panel150 = new System.Windows.Forms.Panel();
            this.label79 = new System.Windows.Forms.Label();
            this.label117 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.panel74 = new System.Windows.Forms.Panel();
            this.panel39 = new System.Windows.Forms.Panel();
            this.txtOut88 = new System.Windows.Forms.TextBox();
            this.txtOut56 = new System.Windows.Forms.TextBox();
            this.txtOut24 = new System.Windows.Forms.TextBox();
            this.txtOut72 = new System.Windows.Forms.TextBox();
            this.txtOut40 = new System.Windows.Forms.TextBox();
            this.txtOut8 = new System.Windows.Forms.TextBox();
            this.panel51 = new System.Windows.Forms.Panel();
            this.panel52 = new System.Windows.Forms.Panel();
            this.panel80 = new System.Windows.Forms.Panel();
            this.panel81 = new System.Windows.Forms.Panel();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel43 = new System.Windows.Forms.Panel();
            this.panel59 = new System.Windows.Forms.Panel();
            this.panel60 = new System.Windows.Forms.Panel();
            this.panel82 = new System.Windows.Forms.Panel();
            this.panel83 = new System.Windows.Forms.Panel();
            this.panel57 = new System.Windows.Forms.Panel();
            this.panel58 = new System.Windows.Forms.Panel();
            this.txtOut95 = new System.Windows.Forms.TextBox();
            this.txtOut94 = new System.Windows.Forms.TextBox();
            this.txtOut93 = new System.Windows.Forms.TextBox();
            this.txtOut92 = new System.Windows.Forms.TextBox();
            this.txtOut91 = new System.Windows.Forms.TextBox();
            this.lblTitle3 = new System.Windows.Forms.Label();
            this.lblTitle2 = new System.Windows.Forms.Label();
            this.label78 = new System.Windows.Forms.Label();
            this.lblTitle1 = new System.Windows.Forms.Label();
            this.label31 = new System.Windows.Forms.Label();
            this.label48 = new System.Windows.Forms.Label();
            this.txtOut90 = new System.Windows.Forms.TextBox();
            this.label47 = new System.Windows.Forms.Label();
            this.txtOut89 = new System.Windows.Forms.TextBox();
            this.txtOut63 = new System.Windows.Forms.TextBox();
            this.txtOut62 = new System.Windows.Forms.TextBox();
            this.txtOut61 = new System.Windows.Forms.TextBox();
            this.txtOut60 = new System.Windows.Forms.TextBox();
            this.txtOut59 = new System.Windows.Forms.TextBox();
            this.txtOut58 = new System.Windows.Forms.TextBox();
            this.txtOut57 = new System.Windows.Forms.TextBox();
            this.txtOut31 = new System.Windows.Forms.TextBox();
            this.txtOut30 = new System.Windows.Forms.TextBox();
            this.txtOut79 = new System.Windows.Forms.TextBox();
            this.txtOut78 = new System.Windows.Forms.TextBox();
            this.txtOut29 = new System.Windows.Forms.TextBox();
            this.txtOut77 = new System.Windows.Forms.TextBox();
            this.txtOut28 = new System.Windows.Forms.TextBox();
            this.txtOut76 = new System.Windows.Forms.TextBox();
            this.txtOut27 = new System.Windows.Forms.TextBox();
            this.txtOut75 = new System.Windows.Forms.TextBox();
            this.txtOut47 = new System.Windows.Forms.TextBox();
            this.txtOut46 = new System.Windows.Forms.TextBox();
            this.txtOut26 = new System.Windows.Forms.TextBox();
            this.txtOut45 = new System.Windows.Forms.TextBox();
            this.txtOut74 = new System.Windows.Forms.TextBox();
            this.txtOut44 = new System.Windows.Forms.TextBox();
            this.txtOut25 = new System.Windows.Forms.TextBox();
            this.txtOut43 = new System.Windows.Forms.TextBox();
            this.txtOut73 = new System.Windows.Forms.TextBox();
            this.txtOut42 = new System.Windows.Forms.TextBox();
            this.txtOut41 = new System.Windows.Forms.TextBox();
            this.txtOut87 = new System.Windows.Forms.TextBox();
            this.txtOut86 = new System.Windows.Forms.TextBox();
            this.txtOut85 = new System.Windows.Forms.TextBox();
            this.txtOut84 = new System.Windows.Forms.TextBox();
            this.txtOut83 = new System.Windows.Forms.TextBox();
            this.txtOut82 = new System.Windows.Forms.TextBox();
            this.txtOut81 = new System.Windows.Forms.TextBox();
            this.txtOut55 = new System.Windows.Forms.TextBox();
            this.txtOut54 = new System.Windows.Forms.TextBox();
            this.txtOut53 = new System.Windows.Forms.TextBox();
            this.txtOut52 = new System.Windows.Forms.TextBox();
            this.txtOut51 = new System.Windows.Forms.TextBox();
            this.txtOut50 = new System.Windows.Forms.TextBox();
            this.txtOut49 = new System.Windows.Forms.TextBox();
            this.txtOut23 = new System.Windows.Forms.TextBox();
            this.txtOut22 = new System.Windows.Forms.TextBox();
            this.txtOut21 = new System.Windows.Forms.TextBox();
            this.txtOut20 = new System.Windows.Forms.TextBox();
            this.txtOut19 = new System.Windows.Forms.TextBox();
            this.txtOut18 = new System.Windows.Forms.TextBox();
            this.txtOut17 = new System.Windows.Forms.TextBox();
            this.txtOut71 = new System.Windows.Forms.TextBox();
            this.txtOut70 = new System.Windows.Forms.TextBox();
            this.txtOut69 = new System.Windows.Forms.TextBox();
            this.txtOut68 = new System.Windows.Forms.TextBox();
            this.txtOut67 = new System.Windows.Forms.TextBox();
            this.txtOut66 = new System.Windows.Forms.TextBox();
            this.txtOut65 = new System.Windows.Forms.TextBox();
            this.txtOut39 = new System.Windows.Forms.TextBox();
            this.txtOut38 = new System.Windows.Forms.TextBox();
            this.txtOut37 = new System.Windows.Forms.TextBox();
            this.txtOut36 = new System.Windows.Forms.TextBox();
            this.txtOut35 = new System.Windows.Forms.TextBox();
            this.txtOut34 = new System.Windows.Forms.TextBox();
            this.txtOut33 = new System.Windows.Forms.TextBox();
            this.panel70 = new System.Windows.Forms.Panel();
            this.panel7 = new System.Windows.Forms.Panel();
            this.panel6 = new System.Windows.Forms.Panel();
            this.panel5 = new System.Windows.Forms.Panel();
            this.panel4 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.txtOut7 = new System.Windows.Forms.TextBox();
            this.txtOut6 = new System.Windows.Forms.TextBox();
            this.txtOut15 = new System.Windows.Forms.TextBox();
            this.txtOut14 = new System.Windows.Forms.TextBox();
            this.txtOut13 = new System.Windows.Forms.TextBox();
            this.txtOut12 = new System.Windows.Forms.TextBox();
            this.txtOut11 = new System.Windows.Forms.TextBox();
            this.txtOut10 = new System.Windows.Forms.TextBox();
            this.txtOut5 = new System.Windows.Forms.TextBox();
            this.txtOut4 = new System.Windows.Forms.TextBox();
            this.txtOut3 = new System.Windows.Forms.TextBox();
            this.txtOut2 = new System.Windows.Forms.TextBox();
            this.txtOut1 = new System.Windows.Forms.TextBox();
            this.txtOut9 = new System.Windows.Forms.TextBox();
            this.panel26 = new System.Windows.Forms.Panel();
            this.panel25 = new System.Windows.Forms.Panel();
            this.panel8 = new System.Windows.Forms.Panel();
            this.panel75 = new System.Windows.Forms.Panel();
            this.panel34 = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.label53 = new System.Windows.Forms.Label();
            this.label95 = new System.Windows.Forms.Label();
            this.label94 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.panel13 = new System.Windows.Forms.Panel();
            this.panel12 = new System.Windows.Forms.Panel();
            this.panel11 = new System.Windows.Forms.Panel();
            this.panel10 = new System.Windows.Forms.Panel();
            this.panel38 = new System.Windows.Forms.Panel();
            this.panel9 = new System.Windows.Forms.Panel();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panel155 = new System.Windows.Forms.Panel();
            this.panel152 = new System.Windows.Forms.Panel();
            this.panel151 = new System.Windows.Forms.Panel();
            this.panel161 = new System.Windows.Forms.Panel();
            this.panel162 = new System.Windows.Forms.Panel();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.pnlChart2 = new System.Windows.Forms.Panel();
            this.label86 = new System.Windows.Forms.Label();
            this.label87 = new System.Windows.Forms.Label();
            this.chart5 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label97 = new System.Windows.Forms.Label();
            this.label98 = new System.Windows.Forms.Label();
            this.label99 = new System.Windows.Forms.Label();
            this.label100 = new System.Windows.Forms.Label();
            this.label101 = new System.Windows.Forms.Label();
            this.label106 = new System.Windows.Forms.Label();
            this.lblTitle6 = new System.Windows.Forms.Label();
            this.lblTitle5 = new System.Windows.Forms.Label();
            this.lblTitle4 = new System.Windows.Forms.Label();
            this.panel121 = new System.Windows.Forms.Panel();
            this.panel122 = new System.Windows.Forms.Panel();
            this.panel123 = new System.Windows.Forms.Panel();
            this.panel124 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.panel125 = new System.Windows.Forms.Panel();
            this.panel126 = new System.Windows.Forms.Panel();
            this.panel127 = new System.Windows.Forms.Panel();
            this.panel128 = new System.Windows.Forms.Panel();
            this.panel129 = new System.Windows.Forms.Panel();
            this.panel130 = new System.Windows.Forms.Panel();
            this.panel131 = new System.Windows.Forms.Panel();
            this.panel132 = new System.Windows.Forms.Panel();
            this.panel133 = new System.Windows.Forms.Panel();
            this.panel134 = new System.Windows.Forms.Panel();
            this.txtWOut84 = new System.Windows.Forms.TextBox();
            this.label103 = new System.Windows.Forms.Label();
            this.txtWOut56 = new System.Windows.Forms.TextBox();
            this.label102 = new System.Windows.Forms.Label();
            this.txtWOut28 = new System.Windows.Forms.TextBox();
            this.label76 = new System.Windows.Forms.Label();
            this.txtWOut70 = new System.Windows.Forms.TextBox();
            this.label19 = new System.Windows.Forms.Label();
            this.txtWOut42 = new System.Windows.Forms.TextBox();
            this.label75 = new System.Windows.Forms.Label();
            this.txtWOut14 = new System.Windows.Forms.TextBox();
            this.label20 = new System.Windows.Forms.Label();
            this.panel136 = new System.Windows.Forms.Panel();
            this.panel137 = new System.Windows.Forms.Panel();
            this.label74 = new System.Windows.Forms.Label();
            this.label120 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.label73 = new System.Windows.Forms.Label();
            this.label67 = new System.Windows.Forms.Label();
            this.label72 = new System.Windows.Forms.Label();
            this.label68 = new System.Windows.Forms.Label();
            this.label71 = new System.Windows.Forms.Label();
            this.label69 = new System.Windows.Forms.Label();
            this.label70 = new System.Windows.Forms.Label();
            this.label90 = new System.Windows.Forms.Label();
            this.txtWOut83 = new System.Windows.Forms.TextBox();
            this.txtWOut82 = new System.Windows.Forms.TextBox();
            this.txtWOut81 = new System.Windows.Forms.TextBox();
            this.txtWOut80 = new System.Windows.Forms.TextBox();
            this.txtWOut79 = new System.Windows.Forms.TextBox();
            this.txtWOut78 = new System.Windows.Forms.TextBox();
            this.txtWOut77 = new System.Windows.Forms.TextBox();
            this.txtWOut55 = new System.Windows.Forms.TextBox();
            this.txtWOut54 = new System.Windows.Forms.TextBox();
            this.txtWOut53 = new System.Windows.Forms.TextBox();
            this.txtWOut52 = new System.Windows.Forms.TextBox();
            this.txtWOut51 = new System.Windows.Forms.TextBox();
            this.txtWOut50 = new System.Windows.Forms.TextBox();
            this.txtWOut49 = new System.Windows.Forms.TextBox();
            this.txtWOut27 = new System.Windows.Forms.TextBox();
            this.txtWOut26 = new System.Windows.Forms.TextBox();
            this.txtWOut69 = new System.Windows.Forms.TextBox();
            this.txtWOut68 = new System.Windows.Forms.TextBox();
            this.txtWOut25 = new System.Windows.Forms.TextBox();
            this.txtWOut67 = new System.Windows.Forms.TextBox();
            this.txtWOut24 = new System.Windows.Forms.TextBox();
            this.txtWOut66 = new System.Windows.Forms.TextBox();
            this.txtWOut23 = new System.Windows.Forms.TextBox();
            this.txtWOut65 = new System.Windows.Forms.TextBox();
            this.txtWOut41 = new System.Windows.Forms.TextBox();
            this.txtWOut40 = new System.Windows.Forms.TextBox();
            this.txtWOut22 = new System.Windows.Forms.TextBox();
            this.txtWOut39 = new System.Windows.Forms.TextBox();
            this.txtWOut64 = new System.Windows.Forms.TextBox();
            this.txtWOut38 = new System.Windows.Forms.TextBox();
            this.txtWOut37 = new System.Windows.Forms.TextBox();
            this.txtWOut36 = new System.Windows.Forms.TextBox();
            this.txtWOut21 = new System.Windows.Forms.TextBox();
            this.txtWOut63 = new System.Windows.Forms.TextBox();
            this.txtWOut35 = new System.Windows.Forms.TextBox();
            this.txtWOut75 = new System.Windows.Forms.TextBox();
            this.txtWOut74 = new System.Windows.Forms.TextBox();
            this.txtWOut73 = new System.Windows.Forms.TextBox();
            this.txtWOut72 = new System.Windows.Forms.TextBox();
            this.txtWOut76 = new System.Windows.Forms.TextBox();
            this.txtWOut71 = new System.Windows.Forms.TextBox();
            this.txtWOut47 = new System.Windows.Forms.TextBox();
            this.txtWOut46 = new System.Windows.Forms.TextBox();
            this.txtWOut45 = new System.Windows.Forms.TextBox();
            this.txtWOut44 = new System.Windows.Forms.TextBox();
            this.txtWOut48 = new System.Windows.Forms.TextBox();
            this.txtWOut43 = new System.Windows.Forms.TextBox();
            this.txtWOut61 = new System.Windows.Forms.TextBox();
            this.txtWOut60 = new System.Windows.Forms.TextBox();
            this.txtWOut59 = new System.Windows.Forms.TextBox();
            this.txtWOut33 = new System.Windows.Forms.TextBox();
            this.txtWOut32 = new System.Windows.Forms.TextBox();
            this.txtWOut58 = new System.Windows.Forms.TextBox();
            this.txtWOut31 = new System.Windows.Forms.TextBox();
            this.txtWOut20 = new System.Windows.Forms.TextBox();
            this.txtWOut15 = new System.Windows.Forms.TextBox();
            this.txtWOut30 = new System.Windows.Forms.TextBox();
            this.txtWOut62 = new System.Windows.Forms.TextBox();
            this.txtWOut57 = new System.Windows.Forms.TextBox();
            this.txtWOut34 = new System.Windows.Forms.TextBox();
            this.txtWOut29 = new System.Windows.Forms.TextBox();
            this.txtWOut19 = new System.Windows.Forms.TextBox();
            this.txtWOut18 = new System.Windows.Forms.TextBox();
            this.txtWOut5 = new System.Windows.Forms.TextBox();
            this.txtWOut4 = new System.Windows.Forms.TextBox();
            this.txtWOut17 = new System.Windows.Forms.TextBox();
            this.txtWOut3 = new System.Windows.Forms.TextBox();
            this.txtWOut16 = new System.Windows.Forms.TextBox();
            this.txtWOut2 = new System.Windows.Forms.TextBox();
            this.txtWOut6 = new System.Windows.Forms.TextBox();
            this.txtWOut1 = new System.Windows.Forms.TextBox();
            this.txtWOut13 = new System.Windows.Forms.TextBox();
            this.txtWOut12 = new System.Windows.Forms.TextBox();
            this.txtWOut11 = new System.Windows.Forms.TextBox();
            this.txtWOut10 = new System.Windows.Forms.TextBox();
            this.txtWOut9 = new System.Windows.Forms.TextBox();
            this.txtWOut8 = new System.Windows.Forms.TextBox();
            this.txtWOut7 = new System.Windows.Forms.TextBox();
            this.label22 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label27 = new System.Windows.Forms.Label();
            this.label28 = new System.Windows.Forms.Label();
            this.label29 = new System.Windows.Forms.Label();
            this.label32 = new System.Windows.Forms.Label();
            this.label83 = new System.Windows.Forms.Label();
            this.label33 = new System.Windows.Forms.Label();
            this.label34 = new System.Windows.Forms.Label();
            this.label35 = new System.Windows.Forms.Label();
            this.label36 = new System.Windows.Forms.Label();
            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.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.panel15 = new System.Windows.Forms.Panel();
            this.panel45 = new System.Windows.Forms.Panel();
            this.panel46 = new System.Windows.Forms.Panel();
            this.panel84 = new System.Windows.Forms.Panel();
            this.panel85 = new System.Windows.Forms.Panel();
            this.panel86 = new System.Windows.Forms.Panel();
            this.panel87 = new System.Windows.Forms.Panel();
            this.panel23 = new System.Windows.Forms.Panel();
            this.panel56 = new System.Windows.Forms.Panel();
            this.panel61 = new System.Windows.Forms.Panel();
            this.panel62 = new System.Windows.Forms.Panel();
            this.panel28 = new System.Windows.Forms.Panel();
            this.panel53 = new System.Windows.Forms.Panel();
            this.panel90 = new System.Windows.Forms.Panel();
            this.panel91 = new System.Windows.Forms.Panel();
            this.panel88 = new System.Windows.Forms.Panel();
            this.panel89 = new System.Windows.Forms.Panel();
            this.panel54 = new System.Windows.Forms.Panel();
            this.panel55 = new System.Windows.Forms.Panel();
            this.panel42 = new System.Windows.Forms.Panel();
            this.panel40 = new System.Windows.Forms.Panel();
            this.panel14 = new System.Windows.Forms.Panel();
            this.panel16 = new System.Windows.Forms.Panel();
            this.panel17 = new System.Windows.Forms.Panel();
            this.panel18 = new System.Windows.Forms.Panel();
            this.panel19 = new System.Windows.Forms.Panel();
            this.panel20 = new System.Windows.Forms.Panel();
            this.panel72 = new System.Windows.Forms.Panel();
            this.panel71 = new System.Windows.Forms.Panel();
            this.panel21 = new System.Windows.Forms.Panel();
            this.panel22 = new System.Windows.Forms.Panel();
            this.panel24 = new System.Windows.Forms.Panel();
            this.panel27 = new System.Windows.Forms.Panel();
            this.panel153 = new System.Windows.Forms.Panel();
            this.panel154 = new System.Windows.Forms.Panel();
            this.panel156 = new System.Windows.Forms.Panel();
            this.panel163 = new System.Windows.Forms.Panel();
            this.panel164 = new System.Windows.Forms.Panel();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.pnlChart3 = new System.Windows.Forms.Panel();
            this.label41 = new System.Windows.Forms.Label();
            this.label85 = new System.Windows.Forms.Label();
            this.chart6 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chart3 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label107 = new System.Windows.Forms.Label();
            this.label108 = new System.Windows.Forms.Label();
            this.label111 = new System.Windows.Forms.Label();
            this.label112 = new System.Windows.Forms.Label();
            this.label113 = new System.Windows.Forms.Label();
            this.label114 = new System.Windows.Forms.Label();
            this.lblTitle9 = new System.Windows.Forms.Label();
            this.lblTitle8 = new System.Windows.Forms.Label();
            this.lblTitle7 = new System.Windows.Forms.Label();
            this.panel117 = new System.Windows.Forms.Panel();
            this.panel118 = new System.Windows.Forms.Panel();
            this.panel119 = new System.Windows.Forms.Panel();
            this.panel120 = new System.Windows.Forms.Panel();
            this.panel113 = new System.Windows.Forms.Panel();
            this.panel114 = new System.Windows.Forms.Panel();
            this.panel115 = new System.Windows.Forms.Panel();
            this.panel116 = new System.Windows.Forms.Panel();
            this.pictureBox4 = new System.Windows.Forms.PictureBox();
            this.panel109 = new System.Windows.Forms.Panel();
            this.panel110 = new System.Windows.Forms.Panel();
            this.panel111 = new System.Windows.Forms.Panel();
            this.panel112 = new System.Windows.Forms.Panel();
            this.panel105 = new System.Windows.Forms.Panel();
            this.panel106 = new System.Windows.Forms.Panel();
            this.txtROut72 = new System.Windows.Forms.TextBox();
            this.txtROut48 = new System.Windows.Forms.TextBox();
            this.txtROut24 = new System.Windows.Forms.TextBox();
            this.txtROut60 = new System.Windows.Forms.TextBox();
            this.txtROut36 = new System.Windows.Forms.TextBox();
            this.txtROut12 = new System.Windows.Forms.TextBox();
            this.label66 = new System.Windows.Forms.Label();
            this.txtROut71 = new System.Windows.Forms.TextBox();
            this.txtROut47 = new System.Windows.Forms.TextBox();
            this.label42 = new System.Windows.Forms.Label();
            this.txtROut23 = new System.Windows.Forms.TextBox();
            this.txtROut59 = new System.Windows.Forms.TextBox();
            this.label104 = new System.Windows.Forms.Label();
            this.txtROut35 = new System.Windows.Forms.TextBox();
            this.txtROut11 = new System.Windows.Forms.TextBox();
            this.label65 = new System.Windows.Forms.Label();
            this.panel104 = new System.Windows.Forms.Panel();
            this.panel102 = new System.Windows.Forms.Panel();
            this.panel103 = new System.Windows.Forms.Panel();
            this.label43 = new System.Windows.Forms.Label();
            this.label119 = new System.Windows.Forms.Label();
            this.label118 = new System.Windows.Forms.Label();
            this.label64 = new System.Windows.Forms.Label();
            this.label49 = new System.Windows.Forms.Label();
            this.label61 = new System.Windows.Forms.Label();
            this.label50 = new System.Windows.Forms.Label();
            this.label60 = new System.Windows.Forms.Label();
            this.label51 = new System.Windows.Forms.Label();
            this.label59 = new System.Windows.Forms.Label();
            this.label77 = new System.Windows.Forms.Label();
            this.txtROut70 = new System.Windows.Forms.TextBox();
            this.txtROut69 = new System.Windows.Forms.TextBox();
            this.txtROut68 = new System.Windows.Forms.TextBox();
            this.txtROut67 = new System.Windows.Forms.TextBox();
            this.txtROut66 = new System.Windows.Forms.TextBox();
            this.txtROut65 = new System.Windows.Forms.TextBox();
            this.txtROut64 = new System.Windows.Forms.TextBox();
            this.txtROut58 = new System.Windows.Forms.TextBox();
            this.txtROut57 = new System.Windows.Forms.TextBox();
            this.txtROut56 = new System.Windows.Forms.TextBox();
            this.txtROut55 = new System.Windows.Forms.TextBox();
            this.txtROut54 = new System.Windows.Forms.TextBox();
            this.txtROut53 = new System.Windows.Forms.TextBox();
            this.txtROut52 = new System.Windows.Forms.TextBox();
            this.txtROut46 = new System.Windows.Forms.TextBox();
            this.txtROut45 = new System.Windows.Forms.TextBox();
            this.txtROut44 = new System.Windows.Forms.TextBox();
            this.txtROut43 = new System.Windows.Forms.TextBox();
            this.txtROut42 = new System.Windows.Forms.TextBox();
            this.txtROut41 = new System.Windows.Forms.TextBox();
            this.txtROut40 = new System.Windows.Forms.TextBox();
            this.txtROut34 = new System.Windows.Forms.TextBox();
            this.txtROut33 = new System.Windows.Forms.TextBox();
            this.txtROut32 = new System.Windows.Forms.TextBox();
            this.txtROut31 = new System.Windows.Forms.TextBox();
            this.txtROut30 = new System.Windows.Forms.TextBox();
            this.txtROut29 = new System.Windows.Forms.TextBox();
            this.txtROut28 = new System.Windows.Forms.TextBox();
            this.txtROut22 = new System.Windows.Forms.TextBox();
            this.txtROut21 = new System.Windows.Forms.TextBox();
            this.txtROut20 = new System.Windows.Forms.TextBox();
            this.txtROut19 = new System.Windows.Forms.TextBox();
            this.txtROut18 = new System.Windows.Forms.TextBox();
            this.txtROut17 = new System.Windows.Forms.TextBox();
            this.txtROut16 = new System.Windows.Forms.TextBox();
            this.txtROut63 = new System.Windows.Forms.TextBox();
            this.txtROut39 = new System.Windows.Forms.TextBox();
            this.txtROut15 = new System.Windows.Forms.TextBox();
            this.txtROut51 = new System.Windows.Forms.TextBox();
            this.txtROut27 = new System.Windows.Forms.TextBox();
            this.txtROut3 = new System.Windows.Forms.TextBox();
            this.txtROut10 = new System.Windows.Forms.TextBox();
            this.txtROut9 = new System.Windows.Forms.TextBox();
            this.txtROut8 = new System.Windows.Forms.TextBox();
            this.txtROut7 = new System.Windows.Forms.TextBox();
            this.txtROut6 = new System.Windows.Forms.TextBox();
            this.txtROut5 = new System.Windows.Forms.TextBox();
            this.txtROut62 = new System.Windows.Forms.TextBox();
            this.txtROut38 = new System.Windows.Forms.TextBox();
            this.txtROut61 = new System.Windows.Forms.TextBox();
            this.txtROut14 = new System.Windows.Forms.TextBox();
            this.txtROut37 = new System.Windows.Forms.TextBox();
            this.txtROut50 = new System.Windows.Forms.TextBox();
            this.txtROut13 = new System.Windows.Forms.TextBox();
            this.txtROut26 = new System.Windows.Forms.TextBox();
            this.txtROut49 = new System.Windows.Forms.TextBox();
            this.txtROut2 = new System.Windows.Forms.TextBox();
            this.txtROut25 = new System.Windows.Forms.TextBox();
            this.txtROut1 = new System.Windows.Forms.TextBox();
            this.txtROut4 = new System.Windows.Forms.TextBox();
            this.label44 = new System.Windows.Forms.Label();
            this.label45 = new System.Windows.Forms.Label();
            this.label46 = new System.Windows.Forms.Label();
            this.label52 = new System.Windows.Forms.Label();
            this.label105 = new System.Windows.Forms.Label();
            this.label54 = new System.Windows.Forms.Label();
            this.label84 = new System.Windows.Forms.Label();
            this.label55 = new System.Windows.Forms.Label();
            this.label56 = new System.Windows.Forms.Label();
            this.label57 = new System.Windows.Forms.Label();
            this.label58 = new System.Windows.Forms.Label();
            this.label62 = new System.Windows.Forms.Label();
            this.label63 = new System.Windows.Forms.Label();
            this.pictureBox5 = new System.Windows.Forms.PictureBox();
            this.panel100 = new System.Windows.Forms.Panel();
            this.panel101 = new System.Windows.Forms.Panel();
            this.panel98 = new System.Windows.Forms.Panel();
            this.panel99 = new System.Windows.Forms.Panel();
            this.panel96 = new System.Windows.Forms.Panel();
            this.panel97 = new System.Windows.Forms.Panel();
            this.panel94 = new System.Windows.Forms.Panel();
            this.panel95 = new System.Windows.Forms.Panel();
            this.panel92 = new System.Windows.Forms.Panel();
            this.panel93 = new System.Windows.Forms.Panel();
            this.panel68 = new System.Windows.Forms.Panel();
            this.panel69 = new System.Windows.Forms.Panel();
            this.panel44 = new System.Windows.Forms.Panel();
            this.panel63 = new System.Windows.Forms.Panel();
            this.panel66 = new System.Windows.Forms.Panel();
            this.panel67 = new System.Windows.Forms.Panel();
            this.panel64 = new System.Windows.Forms.Panel();
            this.panel65 = new System.Windows.Forms.Panel();
            this.panel48 = new System.Windows.Forms.Panel();
            this.panel47 = new System.Windows.Forms.Panel();
            this.panel29 = new System.Windows.Forms.Panel();
            this.panel50 = new System.Windows.Forms.Panel();
            this.panel49 = new System.Windows.Forms.Panel();
            this.panel30 = new System.Windows.Forms.Panel();
            this.panel31 = new System.Windows.Forms.Panel();
            this.panel32 = new System.Windows.Forms.Panel();
            this.panel33 = new System.Windows.Forms.Panel();
            this.panel35 = new System.Windows.Forms.Panel();
            this.panel73 = new System.Windows.Forms.Panel();
            this.panel36 = new System.Windows.Forms.Panel();
            this.panel37 = new System.Windows.Forms.Panel();
            this.panel41 = new System.Windows.Forms.Panel();
            this.panel160 = new System.Windows.Forms.Panel();
            this.panel157 = new System.Windows.Forms.Panel();
            this.panel158 = new System.Windows.Forms.Panel();
            this.panel159 = new System.Windows.Forms.Panel();
            this.panel165 = new System.Windows.Forms.Panel();
            this.panel166 = new System.Windows.Forms.Panel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.checkBox4 = new System.Windows.Forms.CheckBox();
            this.checkBox6 = new System.Windows.Forms.CheckBox();
            this.checkBox5 = new System.Windows.Forms.CheckBox();
            this.checkBox3 = new System.Windows.Forms.CheckBox();
            this.checkBox2 = new System.Windows.Forms.CheckBox();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.button1 = new System.Windows.Forms.Button();
            this.radio최근업계평균 = new System.Windows.Forms.RadioButton();
            this.radio기존업계평균 = new System.Windows.Forms.RadioButton();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.pnlChart.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.panel107.SuspendLayout();
            this.panel108.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
            this.panel139.SuspendLayout();
            this.panel140.SuspendLayout();
            this.panel78.SuspendLayout();
            this.panel143.SuspendLayout();
            this.panel144.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
            this.panel147.SuspendLayout();
            this.panel76.SuspendLayout();
            this.panel149.SuspendLayout();
            this.panel51.SuspendLayout();
            this.panel80.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panel59.SuspendLayout();
            this.panel82.SuspendLayout();
            this.panel57.SuspendLayout();
            this.panel75.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.pnlChart2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
            this.panel121.SuspendLayout();
            this.panel122.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.panel125.SuspendLayout();
            this.panel126.SuspendLayout();
            this.panel129.SuspendLayout();
            this.panel130.SuspendLayout();
            this.panel133.SuspendLayout();
            this.panel136.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.panel84.SuspendLayout();
            this.panel86.SuspendLayout();
            this.panel23.SuspendLayout();
            this.panel61.SuspendLayout();
            this.panel28.SuspendLayout();
            this.panel90.SuspendLayout();
            this.panel88.SuspendLayout();
            this.panel54.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.pnlChart3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart3)).BeginInit();
            this.panel117.SuspendLayout();
            this.panel118.SuspendLayout();
            this.panel113.SuspendLayout();
            this.panel114.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
            this.panel109.SuspendLayout();
            this.panel110.SuspendLayout();
            this.panel105.SuspendLayout();
            this.panel102.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
            this.panel100.SuspendLayout();
            this.panel98.SuspendLayout();
            this.panel96.SuspendLayout();
            this.panel94.SuspendLayout();
            this.panel92.SuspendLayout();
            this.panel68.SuspendLayout();
            this.panel44.SuspendLayout();
            this.panel66.SuspendLayout();
            this.panel64.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.tabControl1.Location = new System.Drawing.Point(0, 55);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1254, 674);
            this.tabControl1.TabIndex = 4;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.Color.White;
            this.tabPage1.Controls.Add(this.pnlChart);
            this.tabPage1.Controls.Add(this.label96);
            this.tabPage1.Controls.Add(this.label93);
            this.tabPage1.Controls.Add(this.label92);
            this.tabPage1.Controls.Add(this.label91);
            this.tabPage1.Controls.Add(this.label89);
            this.tabPage1.Controls.Add(this.label88);
            this.tabPage1.Controls.Add(this.panel107);
            this.tabPage1.Controls.Add(this.pictureBox6);
            this.tabPage1.Controls.Add(this.panel139);
            this.tabPage1.Controls.Add(this.panel78);
            this.tabPage1.Controls.Add(this.panel143);
            this.tabPage1.Controls.Add(this.pictureBox3);
            this.tabPage1.Controls.Add(this.panel147);
            this.tabPage1.Controls.Add(this.txtOut96);
            this.tabPage1.Controls.Add(this.panel76);
            this.tabPage1.Controls.Add(this.txtOut64);
            this.tabPage1.Controls.Add(this.label82);
            this.tabPage1.Controls.Add(this.txtOut32);
            this.tabPage1.Controls.Add(this.label81);
            this.tabPage1.Controls.Add(this.txtOut80);
            this.tabPage1.Controls.Add(this.label30);
            this.tabPage1.Controls.Add(this.txtOut48);
            this.tabPage1.Controls.Add(this.label80);
            this.tabPage1.Controls.Add(this.txtOut16);
            this.tabPage1.Controls.Add(this.label23);
            this.tabPage1.Controls.Add(this.panel149);
            this.tabPage1.Controls.Add(this.label79);
            this.tabPage1.Controls.Add(this.label117);
            this.tabPage1.Controls.Add(this.label2);
            this.tabPage1.Controls.Add(this.label3);
            this.tabPage1.Controls.Add(this.panel74);
            this.tabPage1.Controls.Add(this.panel39);
            this.tabPage1.Controls.Add(this.txtOut88);
            this.tabPage1.Controls.Add(this.txtOut56);
            this.tabPage1.Controls.Add(this.txtOut24);
            this.tabPage1.Controls.Add(this.txtOut72);
            this.tabPage1.Controls.Add(this.txtOut40);
            this.tabPage1.Controls.Add(this.txtOut8);
            this.tabPage1.Controls.Add(this.panel51);
            this.tabPage1.Controls.Add(this.panel80);
            this.tabPage1.Controls.Add(this.panel1);
            this.tabPage1.Controls.Add(this.panel59);
            this.tabPage1.Controls.Add(this.panel82);
            this.tabPage1.Controls.Add(this.panel57);
            this.tabPage1.Controls.Add(this.txtOut95);
            this.tabPage1.Controls.Add(this.txtOut94);
            this.tabPage1.Controls.Add(this.txtOut93);
            this.tabPage1.Controls.Add(this.txtOut92);
            this.tabPage1.Controls.Add(this.txtOut91);
            this.tabPage1.Controls.Add(this.lblTitle3);
            this.tabPage1.Controls.Add(this.lblTitle2);
            this.tabPage1.Controls.Add(this.label78);
            this.tabPage1.Controls.Add(this.lblTitle1);
            this.tabPage1.Controls.Add(this.label31);
            this.tabPage1.Controls.Add(this.label48);
            this.tabPage1.Controls.Add(this.txtOut90);
            this.tabPage1.Controls.Add(this.label47);
            this.tabPage1.Controls.Add(this.txtOut89);
            this.tabPage1.Controls.Add(this.txtOut63);
            this.tabPage1.Controls.Add(this.txtOut62);
            this.tabPage1.Controls.Add(this.txtOut61);
            this.tabPage1.Controls.Add(this.txtOut60);
            this.tabPage1.Controls.Add(this.txtOut59);
            this.tabPage1.Controls.Add(this.txtOut58);
            this.tabPage1.Controls.Add(this.txtOut57);
            this.tabPage1.Controls.Add(this.txtOut31);
            this.tabPage1.Controls.Add(this.txtOut30);
            this.tabPage1.Controls.Add(this.txtOut79);
            this.tabPage1.Controls.Add(this.txtOut78);
            this.tabPage1.Controls.Add(this.txtOut29);
            this.tabPage1.Controls.Add(this.txtOut77);
            this.tabPage1.Controls.Add(this.txtOut28);
            this.tabPage1.Controls.Add(this.txtOut76);
            this.tabPage1.Controls.Add(this.txtOut27);
            this.tabPage1.Controls.Add(this.txtOut75);
            this.tabPage1.Controls.Add(this.txtOut47);
            this.tabPage1.Controls.Add(this.txtOut46);
            this.tabPage1.Controls.Add(this.txtOut26);
            this.tabPage1.Controls.Add(this.txtOut45);
            this.tabPage1.Controls.Add(this.txtOut74);
            this.tabPage1.Controls.Add(this.txtOut44);
            this.tabPage1.Controls.Add(this.txtOut25);
            this.tabPage1.Controls.Add(this.txtOut43);
            this.tabPage1.Controls.Add(this.txtOut73);
            this.tabPage1.Controls.Add(this.txtOut42);
            this.tabPage1.Controls.Add(this.txtOut41);
            this.tabPage1.Controls.Add(this.txtOut87);
            this.tabPage1.Controls.Add(this.txtOut86);
            this.tabPage1.Controls.Add(this.txtOut85);
            this.tabPage1.Controls.Add(this.txtOut84);
            this.tabPage1.Controls.Add(this.txtOut83);
            this.tabPage1.Controls.Add(this.txtOut82);
            this.tabPage1.Controls.Add(this.txtOut81);
            this.tabPage1.Controls.Add(this.txtOut55);
            this.tabPage1.Controls.Add(this.txtOut54);
            this.tabPage1.Controls.Add(this.txtOut53);
            this.tabPage1.Controls.Add(this.txtOut52);
            this.tabPage1.Controls.Add(this.txtOut51);
            this.tabPage1.Controls.Add(this.txtOut50);
            this.tabPage1.Controls.Add(this.txtOut49);
            this.tabPage1.Controls.Add(this.txtOut23);
            this.tabPage1.Controls.Add(this.txtOut22);
            this.tabPage1.Controls.Add(this.txtOut21);
            this.tabPage1.Controls.Add(this.txtOut20);
            this.tabPage1.Controls.Add(this.txtOut19);
            this.tabPage1.Controls.Add(this.txtOut18);
            this.tabPage1.Controls.Add(this.txtOut17);
            this.tabPage1.Controls.Add(this.txtOut71);
            this.tabPage1.Controls.Add(this.txtOut70);
            this.tabPage1.Controls.Add(this.txtOut69);
            this.tabPage1.Controls.Add(this.txtOut68);
            this.tabPage1.Controls.Add(this.txtOut67);
            this.tabPage1.Controls.Add(this.txtOut66);
            this.tabPage1.Controls.Add(this.txtOut65);
            this.tabPage1.Controls.Add(this.txtOut39);
            this.tabPage1.Controls.Add(this.txtOut38);
            this.tabPage1.Controls.Add(this.txtOut37);
            this.tabPage1.Controls.Add(this.txtOut36);
            this.tabPage1.Controls.Add(this.txtOut35);
            this.tabPage1.Controls.Add(this.txtOut34);
            this.tabPage1.Controls.Add(this.txtOut33);
            this.tabPage1.Controls.Add(this.panel70);
            this.tabPage1.Controls.Add(this.panel7);
            this.tabPage1.Controls.Add(this.panel6);
            this.tabPage1.Controls.Add(this.panel5);
            this.tabPage1.Controls.Add(this.panel4);
            this.tabPage1.Controls.Add(this.panel2);
            this.tabPage1.Controls.Add(this.txtOut7);
            this.tabPage1.Controls.Add(this.txtOut6);
            this.tabPage1.Controls.Add(this.txtOut15);
            this.tabPage1.Controls.Add(this.txtOut14);
            this.tabPage1.Controls.Add(this.txtOut13);
            this.tabPage1.Controls.Add(this.txtOut12);
            this.tabPage1.Controls.Add(this.txtOut11);
            this.tabPage1.Controls.Add(this.txtOut10);
            this.tabPage1.Controls.Add(this.txtOut5);
            this.tabPage1.Controls.Add(this.txtOut4);
            this.tabPage1.Controls.Add(this.txtOut3);
            this.tabPage1.Controls.Add(this.txtOut2);
            this.tabPage1.Controls.Add(this.txtOut1);
            this.tabPage1.Controls.Add(this.txtOut9);
            this.tabPage1.Controls.Add(this.panel26);
            this.tabPage1.Controls.Add(this.panel25);
            this.tabPage1.Controls.Add(this.panel8);
            this.tabPage1.Controls.Add(this.panel75);
            this.tabPage1.Controls.Add(this.label1);
            this.tabPage1.Controls.Add(this.label53);
            this.tabPage1.Controls.Add(this.label95);
            this.tabPage1.Controls.Add(this.label94);
            this.tabPage1.Controls.Add(this.label8);
            this.tabPage1.Controls.Add(this.label18);
            this.tabPage1.Controls.Add(this.label7);
            this.tabPage1.Controls.Add(this.label17);
            this.tabPage1.Controls.Add(this.label6);
            this.tabPage1.Controls.Add(this.label5);
            this.tabPage1.Controls.Add(this.label16);
            this.tabPage1.Controls.Add(this.label14);
            this.tabPage1.Controls.Add(this.label13);
            this.tabPage1.Controls.Add(this.label12);
            this.tabPage1.Controls.Add(this.label11);
            this.tabPage1.Controls.Add(this.label10);
            this.tabPage1.Controls.Add(this.label9);
            this.tabPage1.Controls.Add(this.label15);
            this.tabPage1.Controls.Add(this.label26);
            this.tabPage1.Controls.Add(this.label4);
            this.tabPage1.Controls.Add(this.label25);
            this.tabPage1.Controls.Add(this.panel13);
            this.tabPage1.Controls.Add(this.panel12);
            this.tabPage1.Controls.Add(this.panel11);
            this.tabPage1.Controls.Add(this.panel10);
            this.tabPage1.Controls.Add(this.panel38);
            this.tabPage1.Controls.Add(this.panel9);
            this.tabPage1.Controls.Add(this.panel3);
            this.tabPage1.Controls.Add(this.panel155);
            this.tabPage1.Controls.Add(this.panel152);
            this.tabPage1.Controls.Add(this.panel151);
            this.tabPage1.Controls.Add(this.panel161);
            this.tabPage1.Controls.Add(this.panel162);
            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(1246, 648);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "          전체          ";
            // 
            // pnlChart
            // 
            this.pnlChart.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.pnlChart.Controls.Add(this.chart4);
            this.pnlChart.Controls.Add(this.label110);
            this.pnlChart.Controls.Add(this.label109);
            this.pnlChart.Controls.Add(this.chart1);
            this.pnlChart.Location = new System.Drawing.Point(0, 37);
            this.pnlChart.Name = "pnlChart";
            this.pnlChart.Size = new System.Drawing.Size(1242, 611);
            this.pnlChart.TabIndex = 290;
            // 
            // chart4
            // 
            this.chart4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartArea7.Name = "ChartArea1";
            this.chart4.ChartAreas.Add(chartArea7);
            this.chart4.Cursor = System.Windows.Forms.Cursors.IBeam;
            legend7.Name = "Legend1";
            this.chart4.Legends.Add(legend7);
            this.chart4.Location = new System.Drawing.Point(61, 307);
            this.chart4.Name = "chart4";
            this.chart4.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
            series19.ChartArea = "ChartArea1";
            series19.Legend = "Legend1";
            series19.Name = "Series1";
            series20.ChartArea = "ChartArea1";
            series20.Legend = "Legend1";
            series20.Name = "Series2";
            series21.ChartArea = "ChartArea1";
            series21.Legend = "Legend1";
            series21.Name = "Series3";
            this.chart4.Series.Add(series19);
            this.chart4.Series.Add(series20);
            this.chart4.Series.Add(series21);
            this.chart4.Size = new System.Drawing.Size(1168, 299);
            this.chart4.TabIndex = 346;
            this.chart4.Text = "0";
            // 
            // label110
            // 
            this.label110.AutoSize = true;
            this.label110.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.label110.ForeColor = System.Drawing.Color.Black;
            this.label110.Location = new System.Drawing.Point(37, 419);
            this.label110.Name = "label110";
            this.label110.Size = new System.Drawing.Size(23, 45);
            this.label110.TabIndex = 345;
            this.label110.Text = "비\r\n\r\n용";
            // 
            // label109
            // 
            this.label109.AutoSize = true;
            this.label109.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.label109.ForeColor = System.Drawing.Color.Black;
            this.label109.Location = new System.Drawing.Point(37, 129);
            this.label109.Name = "label109";
            this.label109.Size = new System.Drawing.Size(23, 45);
            this.label109.TabIndex = 344;
            this.label109.Text = "수\r\n\r\n익";
            // 
            // chart1
            // 
            this.chart1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            chartArea8.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea8);
            this.chart1.Cursor = System.Windows.Forms.Cursors.IBeam;
            legend8.Name = "Legend1";
            this.chart1.Legends.Add(legend8);
            this.chart1.Location = new System.Drawing.Point(61, 2);
            this.chart1.Name = "chart1";
            this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
            series22.ChartArea = "ChartArea1";
            series22.Legend = "Legend1";
            series22.Name = "Series1";
            series23.ChartArea = "ChartArea1";
            series23.Legend = "Legend1";
            series23.Name = "Series2";
            series24.ChartArea = "ChartArea1";
            series24.Legend = "Legend1";
            series24.Name = "Series3";
            this.chart1.Series.Add(series22);
            this.chart1.Series.Add(series23);
            this.chart1.Series.Add(series24);
            this.chart1.Size = new System.Drawing.Size(1168, 299);
            this.chart1.TabIndex = 340;
            this.chart1.Text = "0";
            // 
            // label96
            // 
            this.label96.AutoSize = true;
            this.label96.ForeColor = System.Drawing.Color.Black;
            this.label96.Location = new System.Drawing.Point(1179, 317);
            this.label96.Name = "label96";
            this.label96.Size = new System.Drawing.Size(63, 12);
            this.label96.TabIndex = 299;
            this.label96.Text = "(단위 : 원)";
            // 
            // label93
            // 
            this.label93.AutoSize = true;
            this.label93.ForeColor = System.Drawing.Color.Black;
            this.label93.Location = new System.Drawing.Point(818, 317);
            this.label93.Name = "label93";
            this.label93.Size = new System.Drawing.Size(63, 12);
            this.label93.TabIndex = 298;
            this.label93.Text = "(단위 : 원)";
            // 
            // label92
            // 
            this.label92.AutoSize = true;
            this.label92.ForeColor = System.Drawing.Color.Black;
            this.label92.Location = new System.Drawing.Point(468, 317);
            this.label92.Name = "label92";
            this.label92.Size = new System.Drawing.Size(63, 12);
            this.label92.TabIndex = 297;
            this.label92.Text = "(단위 : 원)";
            // 
            // label91
            // 
            this.label91.AutoSize = true;
            this.label91.ForeColor = System.Drawing.Color.Black;
            this.label91.Location = new System.Drawing.Point(1176, 20);
            this.label91.Name = "label91";
            this.label91.Size = new System.Drawing.Size(63, 12);
            this.label91.TabIndex = 296;
            this.label91.Text = "(단위 : 원)";
            // 
            // label89
            // 
            this.label89.AutoSize = true;
            this.label89.ForeColor = System.Drawing.Color.Black;
            this.label89.Location = new System.Drawing.Point(818, 20);
            this.label89.Name = "label89";
            this.label89.Size = new System.Drawing.Size(63, 12);
            this.label89.TabIndex = 295;
            this.label89.Text = "(단위 : 원)";
            // 
            // label88
            // 
            this.label88.AutoSize = true;
            this.label88.ForeColor = System.Drawing.Color.Black;
            this.label88.Location = new System.Drawing.Point(468, 20);
            this.label88.Name = "label88";
            this.label88.Size = new System.Drawing.Size(63, 12);
            this.label88.TabIndex = 294;
            this.label88.Text = "(단위 : 원)";
            // 
            // panel107
            // 
            this.panel107.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel107.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel107.Controls.Add(this.panel108);
            this.panel107.Controls.Add(this.panel138);
            this.panel107.ForeColor = System.Drawing.Color.Black;
            this.panel107.Location = new System.Drawing.Point(880, 615);
            this.panel107.Name = "panel107";
            this.panel107.Size = new System.Drawing.Size(1, 30);
            this.panel107.TabIndex = 288;
            // 
            // panel108
            // 
            this.panel108.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel108.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel108.Controls.Add(this.panel135);
            this.panel108.ForeColor = System.Drawing.Color.Black;
            this.panel108.Location = new System.Drawing.Point(0, 0);
            this.panel108.Name = "panel108";
            this.panel108.Size = new System.Drawing.Size(1, 270);
            this.panel108.TabIndex = 96;
            // 
            // panel135
            // 
            this.panel135.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel135.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel135.ForeColor = System.Drawing.Color.Black;
            this.panel135.Location = new System.Drawing.Point(0, 0);
            this.panel135.Name = "panel135";
            this.panel135.Size = new System.Drawing.Size(1, 270);
            this.panel135.TabIndex = 95;
            // 
            // panel138
            // 
            this.panel138.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel138.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel138.ForeColor = System.Drawing.Color.Black;
            this.panel138.Location = new System.Drawing.Point(0, 0);
            this.panel138.Name = "panel138";
            this.panel138.Size = new System.Drawing.Size(1, 270);
            this.panel138.TabIndex = 95;
            // 
            // pictureBox6
            // 
            this.pictureBox6.Image = global::KIWI.Properties.Resources.data1;
            this.pictureBox6.Location = new System.Drawing.Point(108, 8);
            this.pictureBox6.Name = "pictureBox6";
            this.pictureBox6.Size = new System.Drawing.Size(29, 23);
            this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox6.TabIndex = 220;
            this.pictureBox6.TabStop = false;
            this.pictureBox6.Click += new System.EventHandler(this.pictureBox6_Click);
            // 
            // panel139
            // 
            this.panel139.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel139.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel139.Controls.Add(this.panel140);
            this.panel139.Controls.Add(this.panel142);
            this.panel139.ForeColor = System.Drawing.Color.Black;
            this.panel139.Location = new System.Drawing.Point(530, 615);
            this.panel139.Name = "panel139";
            this.panel139.Size = new System.Drawing.Size(1, 30);
            this.panel139.TabIndex = 279;
            // 
            // panel140
            // 
            this.panel140.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel140.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel140.Controls.Add(this.panel141);
            this.panel140.ForeColor = System.Drawing.Color.Black;
            this.panel140.Location = new System.Drawing.Point(0, 0);
            this.panel140.Name = "panel140";
            this.panel140.Size = new System.Drawing.Size(1, 270);
            this.panel140.TabIndex = 96;
            // 
            // panel141
            // 
            this.panel141.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel141.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel141.ForeColor = System.Drawing.Color.Black;
            this.panel141.Location = new System.Drawing.Point(0, 0);
            this.panel141.Name = "panel141";
            this.panel141.Size = new System.Drawing.Size(1, 270);
            this.panel141.TabIndex = 95;
            // 
            // panel142
            // 
            this.panel142.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel142.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel142.ForeColor = System.Drawing.Color.Black;
            this.panel142.Location = new System.Drawing.Point(0, 0);
            this.panel142.Name = "panel142";
            this.panel142.Size = new System.Drawing.Size(1, 270);
            this.panel142.TabIndex = 95;
            // 
            // panel78
            // 
            this.panel78.BackColor = System.Drawing.Color.LightSalmon;
            this.panel78.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel78.Controls.Add(this.panel79);
            this.panel78.ForeColor = System.Drawing.Color.Black;
            this.panel78.Location = new System.Drawing.Point(0, 302);
            this.panel78.Name = "panel78";
            this.panel78.Size = new System.Drawing.Size(1240, 3);
            this.panel78.TabIndex = 208;
            // 
            // panel79
            // 
            this.panel79.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel79.Location = new System.Drawing.Point(0, 20);
            this.panel79.Name = "panel79";
            this.panel79.Size = new System.Drawing.Size(698, 5);
            this.panel79.TabIndex = 18;
            // 
            // panel143
            // 
            this.panel143.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel143.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel143.Controls.Add(this.panel144);
            this.panel143.Controls.Add(this.panel146);
            this.panel143.ForeColor = System.Drawing.Color.Black;
            this.panel143.Location = new System.Drawing.Point(180, 617);
            this.panel143.Name = "panel143";
            this.panel143.Size = new System.Drawing.Size(1, 30);
            this.panel143.TabIndex = 278;
            // 
            // panel144
            // 
            this.panel144.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel144.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel144.Controls.Add(this.panel145);
            this.panel144.ForeColor = System.Drawing.Color.Black;
            this.panel144.Location = new System.Drawing.Point(0, 0);
            this.panel144.Name = "panel144";
            this.panel144.Size = new System.Drawing.Size(1, 270);
            this.panel144.TabIndex = 96;
            // 
            // panel145
            // 
            this.panel145.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel145.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel145.ForeColor = System.Drawing.Color.Black;
            this.panel145.Location = new System.Drawing.Point(0, 0);
            this.panel145.Name = "panel145";
            this.panel145.Size = new System.Drawing.Size(1, 270);
            this.panel145.TabIndex = 95;
            // 
            // panel146
            // 
            this.panel146.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel146.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel146.ForeColor = System.Drawing.Color.Black;
            this.panel146.Location = new System.Drawing.Point(0, 0);
            this.panel146.Name = "panel146";
            this.panel146.Size = new System.Drawing.Size(1, 270);
            this.panel146.TabIndex = 95;
            // 
            // pictureBox3
            // 
            this.pictureBox3.Image = global::KIWI.Properties.Resources.graph2;
            this.pictureBox3.Location = new System.Drawing.Point(72, 8);
            this.pictureBox3.Name = "pictureBox3";
            this.pictureBox3.Size = new System.Drawing.Size(29, 23);
            this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox3.TabIndex = 219;
            this.pictureBox3.TabStop = false;
            this.pictureBox3.Click += new System.EventHandler(this.pictureBox3_Click);
            // 
            // panel147
            // 
            this.panel147.BackColor = System.Drawing.Color.LightSalmon;
            this.panel147.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel147.Controls.Add(this.panel148);
            this.panel147.ForeColor = System.Drawing.Color.Black;
            this.panel147.Location = new System.Drawing.Point(0, 615);
            this.panel147.Name = "panel147";
            this.panel147.Size = new System.Drawing.Size(1240, 3);
            this.panel147.TabIndex = 281;
            // 
            // panel148
            // 
            this.panel148.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel148.Location = new System.Drawing.Point(0, 20);
            this.panel148.Name = "panel148";
            this.panel148.Size = new System.Drawing.Size(698, 5);
            this.panel148.TabIndex = 18;
            // 
            // txtOut96
            // 
            this.txtOut96.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut96.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut96.ForeColor = System.Drawing.Color.Black;
            this.txtOut96.Location = new System.Drawing.Point(1080, 625);
            this.txtOut96.Name = "txtOut96";
            this.txtOut96.ReadOnly = true;
            this.txtOut96.Size = new System.Drawing.Size(129, 14);
            this.txtOut96.TabIndex = 285;
            this.txtOut96.Text = "0";
            this.txtOut96.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // panel76
            // 
            this.panel76.BackColor = System.Drawing.Color.LightSalmon;
            this.panel76.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel76.Controls.Add(this.panel77);
            this.panel76.ForeColor = System.Drawing.Color.Black;
            this.panel76.Location = new System.Drawing.Point(0, 5);
            this.panel76.Name = "panel76";
            this.panel76.Size = new System.Drawing.Size(1240, 3);
            this.panel76.TabIndex = 207;
            // 
            // panel77
            // 
            this.panel77.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel77.Location = new System.Drawing.Point(0, 20);
            this.panel77.Name = "panel77";
            this.panel77.Size = new System.Drawing.Size(698, 5);
            this.panel77.TabIndex = 18;
            // 
            // txtOut64
            // 
            this.txtOut64.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut64.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut64.ForeColor = System.Drawing.Color.Black;
            this.txtOut64.Location = new System.Drawing.Point(720, 625);
            this.txtOut64.Name = "txtOut64";
            this.txtOut64.ReadOnly = true;
            this.txtOut64.Size = new System.Drawing.Size(129, 14);
            this.txtOut64.TabIndex = 286;
            this.txtOut64.Text = "0";
            this.txtOut64.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label82
            // 
            this.label82.AutoSize = true;
            this.label82.BackColor = System.Drawing.Color.LemonChiffon;
            this.label82.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label82.ForeColor = System.Drawing.Color.Black;
            this.label82.Location = new System.Drawing.Point(1110, 342);
            this.label82.Name = "label82";
            this.label82.Size = new System.Drawing.Size(70, 12);
            this.label82.TabIndex = 215;
            this.label82.Text = "단위당금액";
            // 
            // txtOut32
            // 
            this.txtOut32.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut32.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut32.ForeColor = System.Drawing.Color.Black;
            this.txtOut32.Location = new System.Drawing.Point(370, 625);
            this.txtOut32.Name = "txtOut32";
            this.txtOut32.ReadOnly = true;
            this.txtOut32.Size = new System.Drawing.Size(129, 14);
            this.txtOut32.TabIndex = 287;
            this.txtOut32.Text = "0";
            this.txtOut32.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label81
            // 
            this.label81.AutoSize = true;
            this.label81.BackColor = System.Drawing.Color.LemonChiffon;
            this.label81.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label81.ForeColor = System.Drawing.Color.Black;
            this.label81.Location = new System.Drawing.Point(970, 342);
            this.label81.Name = "label81";
            this.label81.Size = new System.Drawing.Size(31, 12);
            this.label81.TabIndex = 216;
            this.label81.Text = "총액";
            // 
            // txtOut80
            // 
            this.txtOut80.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut80.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut80.ForeColor = System.Drawing.Color.Black;
            this.txtOut80.Location = new System.Drawing.Point(920, 625);
            this.txtOut80.Name = "txtOut80";
            this.txtOut80.ReadOnly = true;
            this.txtOut80.Size = new System.Drawing.Size(129, 14);
            this.txtOut80.TabIndex = 283;
            this.txtOut80.Text = "0";
            this.txtOut80.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label30
            // 
            this.label30.AutoSize = true;
            this.label30.BackColor = System.Drawing.Color.LemonChiffon;
            this.label30.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label30.ForeColor = System.Drawing.Color.Black;
            this.label30.Location = new System.Drawing.Point(1110, 45);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(70, 12);
            this.label30.TabIndex = 215;
            this.label30.Text = "단위당금액";
            // 
            // txtOut48
            // 
            this.txtOut48.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut48.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut48.ForeColor = System.Drawing.Color.Black;
            this.txtOut48.Location = new System.Drawing.Point(560, 625);
            this.txtOut48.Name = "txtOut48";
            this.txtOut48.ReadOnly = true;
            this.txtOut48.Size = new System.Drawing.Size(129, 14);
            this.txtOut48.TabIndex = 284;
            this.txtOut48.Text = "0";
            this.txtOut48.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label80
            // 
            this.label80.AutoSize = true;
            this.label80.BackColor = System.Drawing.Color.LemonChiffon;
            this.label80.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label80.ForeColor = System.Drawing.Color.Black;
            this.label80.Location = new System.Drawing.Point(750, 342);
            this.label80.Name = "label80";
            this.label80.Size = new System.Drawing.Size(70, 12);
            this.label80.TabIndex = 215;
            this.label80.Text = "단위당금액";
            // 
            // txtOut16
            // 
            this.txtOut16.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut16.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut16.ForeColor = System.Drawing.Color.Black;
            this.txtOut16.Location = new System.Drawing.Point(210, 625);
            this.txtOut16.Name = "txtOut16";
            this.txtOut16.ReadOnly = true;
            this.txtOut16.Size = new System.Drawing.Size(129, 14);
            this.txtOut16.TabIndex = 282;
            this.txtOut16.Text = "0";
            this.txtOut16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label23
            // 
            this.label23.AutoSize = true;
            this.label23.BackColor = System.Drawing.Color.LemonChiffon;
            this.label23.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label23.ForeColor = System.Drawing.Color.Black;
            this.label23.Location = new System.Drawing.Point(970, 45);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(31, 12);
            this.label23.TabIndex = 216;
            this.label23.Text = "총액";
            // 
            // panel149
            // 
            this.panel149.BackColor = System.Drawing.Color.LightSalmon;
            this.panel149.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel149.Controls.Add(this.panel150);
            this.panel149.ForeColor = System.Drawing.Color.Black;
            this.panel149.Location = new System.Drawing.Point(0, 645);
            this.panel149.Name = "panel149";
            this.panel149.Size = new System.Drawing.Size(1240, 3);
            this.panel149.TabIndex = 280;
            // 
            // panel150
            // 
            this.panel150.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel150.Location = new System.Drawing.Point(0, 20);
            this.panel150.Name = "panel150";
            this.panel150.Size = new System.Drawing.Size(698, 5);
            this.panel150.TabIndex = 18;
            // 
            // label79
            // 
            this.label79.AutoSize = true;
            this.label79.BackColor = System.Drawing.Color.LemonChiffon;
            this.label79.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label79.ForeColor = System.Drawing.Color.Black;
            this.label79.Location = new System.Drawing.Point(610, 342);
            this.label79.Name = "label79";
            this.label79.Size = new System.Drawing.Size(31, 12);
            this.label79.TabIndex = 216;
            this.label79.Text = "총액";
            // 
            // label117
            // 
            this.label117.AutoSize = true;
            this.label117.BackColor = System.Drawing.Color.Gainsboro;
            this.label117.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Bold);
            this.label117.ForeColor = System.Drawing.Color.Black;
            this.label117.Location = new System.Drawing.Point(35, 626);
            this.label117.Name = "label117";
            this.label117.Size = new System.Drawing.Size(58, 14);
            this.label117.TabIndex = 277;
            this.label117.Text = "손익 계";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.LemonChiffon;
            this.label2.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label2.ForeColor = System.Drawing.Color.Black;
            this.label2.Location = new System.Drawing.Point(750, 45);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(70, 12);
            this.label2.TabIndex = 215;
            this.label2.Text = "단위당금액";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.LemonChiffon;
            this.label3.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label3.ForeColor = System.Drawing.Color.Black;
            this.label3.Location = new System.Drawing.Point(610, 45);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(31, 12);
            this.label3.TabIndex = 216;
            this.label3.Text = "총액";
            // 
            // panel74
            // 
            this.panel74.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel74.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel74.ForeColor = System.Drawing.Color.Black;
            this.panel74.Location = new System.Drawing.Point(880, 332);
            this.panel74.Name = "panel74";
            this.panel74.Size = new System.Drawing.Size(1, 270);
            this.panel74.TabIndex = 214;
            // 
            // panel39
            // 
            this.panel39.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel39.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel39.ForeColor = System.Drawing.Color.Black;
            this.panel39.Location = new System.Drawing.Point(530, 332);
            this.panel39.Name = "panel39";
            this.panel39.Size = new System.Drawing.Size(1, 270);
            this.panel39.TabIndex = 213;
            // 
            // txtOut88
            // 
            this.txtOut88.BackColor = System.Drawing.Color.White;
            this.txtOut88.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut88.ForeColor = System.Drawing.Color.Black;
            this.txtOut88.Location = new System.Drawing.Point(1080, 371);
            this.txtOut88.Name = "txtOut88";
            this.txtOut88.ReadOnly = true;
            this.txtOut88.Size = new System.Drawing.Size(129, 14);
            this.txtOut88.TabIndex = 210;
            this.txtOut88.Text = "0";
            this.txtOut88.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut56
            // 
            this.txtOut56.BackColor = System.Drawing.Color.White;
            this.txtOut56.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut56.ForeColor = System.Drawing.Color.Black;
            this.txtOut56.Location = new System.Drawing.Point(720, 371);
            this.txtOut56.Name = "txtOut56";
            this.txtOut56.ReadOnly = true;
            this.txtOut56.Size = new System.Drawing.Size(129, 14);
            this.txtOut56.TabIndex = 211;
            this.txtOut56.Text = "0";
            this.txtOut56.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut24
            // 
            this.txtOut24.BackColor = System.Drawing.Color.White;
            this.txtOut24.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut24.ForeColor = System.Drawing.Color.Black;
            this.txtOut24.Location = new System.Drawing.Point(370, 371);
            this.txtOut24.Name = "txtOut24";
            this.txtOut24.ReadOnly = true;
            this.txtOut24.Size = new System.Drawing.Size(129, 14);
            this.txtOut24.TabIndex = 212;
            this.txtOut24.Text = "0";
            this.txtOut24.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut72
            // 
            this.txtOut72.BackColor = System.Drawing.Color.White;
            this.txtOut72.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut72.ForeColor = System.Drawing.Color.Black;
            this.txtOut72.Location = new System.Drawing.Point(920, 371);
            this.txtOut72.Name = "txtOut72";
            this.txtOut72.ReadOnly = true;
            this.txtOut72.Size = new System.Drawing.Size(129, 14);
            this.txtOut72.TabIndex = 208;
            this.txtOut72.Text = "0";
            this.txtOut72.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut40
            // 
            this.txtOut40.BackColor = System.Drawing.Color.White;
            this.txtOut40.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut40.ForeColor = System.Drawing.Color.Black;
            this.txtOut40.Location = new System.Drawing.Point(560, 371);
            this.txtOut40.Name = "txtOut40";
            this.txtOut40.ReadOnly = true;
            this.txtOut40.Size = new System.Drawing.Size(129, 14);
            this.txtOut40.TabIndex = 209;
            this.txtOut40.Text = "0";
            this.txtOut40.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut8
            // 
            this.txtOut8.BackColor = System.Drawing.Color.White;
            this.txtOut8.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut8.ForeColor = System.Drawing.Color.Black;
            this.txtOut8.Location = new System.Drawing.Point(210, 371);
            this.txtOut8.Name = "txtOut8";
            this.txtOut8.ReadOnly = true;
            this.txtOut8.Size = new System.Drawing.Size(129, 14);
            this.txtOut8.TabIndex = 207;
            this.txtOut8.Text = "0";
            this.txtOut8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // panel51
            // 
            this.panel51.BackColor = System.Drawing.Color.LightSalmon;
            this.panel51.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel51.Controls.Add(this.panel52);
            this.panel51.ForeColor = System.Drawing.Color.Black;
            this.panel51.Location = new System.Drawing.Point(0, 35);
            this.panel51.Name = "panel51";
            this.panel51.Size = new System.Drawing.Size(1240, 3);
            this.panel51.TabIndex = 206;
            // 
            // panel52
            // 
            this.panel52.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel52.Location = new System.Drawing.Point(0, 20);
            this.panel52.Name = "panel52";
            this.panel52.Size = new System.Drawing.Size(698, 5);
            this.panel52.TabIndex = 18;
            // 
            // panel80
            // 
            this.panel80.BackColor = System.Drawing.Color.LightSalmon;
            this.panel80.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel80.Controls.Add(this.panel81);
            this.panel80.ForeColor = System.Drawing.Color.Black;
            this.panel80.Location = new System.Drawing.Point(0, 285);
            this.panel80.Name = "panel80";
            this.panel80.Size = new System.Drawing.Size(1240, 3);
            this.panel80.TabIndex = 206;
            // 
            // panel81
            // 
            this.panel81.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel81.Location = new System.Drawing.Point(0, 20);
            this.panel81.Name = "panel81";
            this.panel81.Size = new System.Drawing.Size(698, 5);
            this.panel81.TabIndex = 18;
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.LightSalmon;
            this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel1.Controls.Add(this.panel43);
            this.panel1.ForeColor = System.Drawing.Color.Black;
            this.panel1.Location = new System.Drawing.Point(0, 65);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1240, 3);
            this.panel1.TabIndex = 206;
            // 
            // panel43
            // 
            this.panel43.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel43.Location = new System.Drawing.Point(0, 20);
            this.panel43.Name = "panel43";
            this.panel43.Size = new System.Drawing.Size(698, 5);
            this.panel43.TabIndex = 18;
            // 
            // panel59
            // 
            this.panel59.BackColor = System.Drawing.Color.LightSalmon;
            this.panel59.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel59.Controls.Add(this.panel60);
            this.panel59.ForeColor = System.Drawing.Color.Black;
            this.panel59.Location = new System.Drawing.Point(0, 332);
            this.panel59.Name = "panel59";
            this.panel59.Size = new System.Drawing.Size(1240, 3);
            this.panel59.TabIndex = 206;
            // 
            // panel60
            // 
            this.panel60.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel60.Location = new System.Drawing.Point(0, 20);
            this.panel60.Name = "panel60";
            this.panel60.Size = new System.Drawing.Size(698, 5);
            this.panel60.TabIndex = 18;
            // 
            // panel82
            // 
            this.panel82.BackColor = System.Drawing.Color.LightSalmon;
            this.panel82.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel82.Controls.Add(this.panel83);
            this.panel82.ForeColor = System.Drawing.Color.Black;
            this.panel82.Location = new System.Drawing.Point(0, 602);
            this.panel82.Name = "panel82";
            this.panel82.Size = new System.Drawing.Size(1240, 3);
            this.panel82.TabIndex = 206;
            // 
            // panel83
            // 
            this.panel83.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel83.Location = new System.Drawing.Point(0, 20);
            this.panel83.Name = "panel83";
            this.panel83.Size = new System.Drawing.Size(698, 5);
            this.panel83.TabIndex = 18;
            // 
            // panel57
            // 
            this.panel57.BackColor = System.Drawing.Color.LightSalmon;
            this.panel57.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel57.Controls.Add(this.panel58);
            this.panel57.ForeColor = System.Drawing.Color.Black;
            this.panel57.Location = new System.Drawing.Point(0, 362);
            this.panel57.Name = "panel57";
            this.panel57.Size = new System.Drawing.Size(1240, 3);
            this.panel57.TabIndex = 206;
            // 
            // panel58
            // 
            this.panel58.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel58.Location = new System.Drawing.Point(0, 20);
            this.panel58.Name = "panel58";
            this.panel58.Size = new System.Drawing.Size(698, 5);
            this.panel58.TabIndex = 18;
            // 
            // txtOut95
            // 
            this.txtOut95.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut95.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut95.ForeColor = System.Drawing.Color.Black;
            this.txtOut95.Location = new System.Drawing.Point(1080, 581);
            this.txtOut95.Name = "txtOut95";
            this.txtOut95.ReadOnly = true;
            this.txtOut95.Size = new System.Drawing.Size(129, 14);
            this.txtOut95.TabIndex = 203;
            this.txtOut95.Text = "0";
            this.txtOut95.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut94
            // 
            this.txtOut94.BackColor = System.Drawing.Color.White;
            this.txtOut94.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut94.ForeColor = System.Drawing.Color.Black;
            this.txtOut94.Location = new System.Drawing.Point(1080, 551);
            this.txtOut94.Name = "txtOut94";
            this.txtOut94.ReadOnly = true;
            this.txtOut94.Size = new System.Drawing.Size(129, 14);
            this.txtOut94.TabIndex = 203;
            this.txtOut94.Text = "0";
            this.txtOut94.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut93
            // 
            this.txtOut93.BackColor = System.Drawing.Color.White;
            this.txtOut93.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut93.ForeColor = System.Drawing.Color.Black;
            this.txtOut93.Location = new System.Drawing.Point(1080, 521);
            this.txtOut93.Name = "txtOut93";
            this.txtOut93.ReadOnly = true;
            this.txtOut93.Size = new System.Drawing.Size(129, 14);
            this.txtOut93.TabIndex = 203;
            this.txtOut93.Text = "0";
            this.txtOut93.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut92
            // 
            this.txtOut92.BackColor = System.Drawing.Color.White;
            this.txtOut92.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut92.ForeColor = System.Drawing.Color.Black;
            this.txtOut92.Location = new System.Drawing.Point(1080, 491);
            this.txtOut92.Name = "txtOut92";
            this.txtOut92.ReadOnly = true;
            this.txtOut92.Size = new System.Drawing.Size(129, 14);
            this.txtOut92.TabIndex = 203;
            this.txtOut92.Text = "0";
            this.txtOut92.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut91
            // 
            this.txtOut91.BackColor = System.Drawing.Color.White;
            this.txtOut91.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut91.ForeColor = System.Drawing.Color.Black;
            this.txtOut91.Location = new System.Drawing.Point(1080, 461);
            this.txtOut91.Name = "txtOut91";
            this.txtOut91.ReadOnly = true;
            this.txtOut91.Size = new System.Drawing.Size(129, 14);
            this.txtOut91.TabIndex = 203;
            this.txtOut91.Text = "0";
            this.txtOut91.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // lblTitle3
            // 
            this.lblTitle3.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle3.ForeColor = System.Drawing.Color.Black;
            this.lblTitle3.Location = new System.Drawing.Point(880, 15);
            this.lblTitle3.Name = "lblTitle3";
            this.lblTitle3.Size = new System.Drawing.Size(355, 15);
            this.lblTitle3.TabIndex = 177;
            this.lblTitle3.Text = "시뮬레이션 당대리점";
            this.lblTitle3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblTitle2
            // 
            this.lblTitle2.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle2.ForeColor = System.Drawing.Color.Black;
            this.lblTitle2.Location = new System.Drawing.Point(530, 15);
            this.lblTitle2.Name = "lblTitle2";
            this.lblTitle2.Size = new System.Drawing.Size(351, 15);
            this.lblTitle2.TabIndex = 177;
            this.lblTitle2.Text = "당대리점";
            this.lblTitle2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label78
            // 
            this.label78.AutoSize = true;
            this.label78.BackColor = System.Drawing.Color.LemonChiffon;
            this.label78.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label78.ForeColor = System.Drawing.Color.Black;
            this.label78.Location = new System.Drawing.Point(400, 342);
            this.label78.Name = "label78";
            this.label78.Size = new System.Drawing.Size(70, 12);
            this.label78.TabIndex = 177;
            this.label78.Text = "단위당금액";
            // 
            // lblTitle1
            // 
            this.lblTitle1.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle1.ForeColor = System.Drawing.Color.Black;
            this.lblTitle1.Location = new System.Drawing.Point(180, 15);
            this.lblTitle1.Name = "lblTitle1";
            this.lblTitle1.Size = new System.Drawing.Size(351, 15);
            this.lblTitle1.TabIndex = 177;
            this.lblTitle1.Text = "업계평균";
            this.lblTitle1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label31
            // 
            this.label31.AutoSize = true;
            this.label31.BackColor = System.Drawing.Color.LemonChiffon;
            this.label31.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label31.ForeColor = System.Drawing.Color.Black;
            this.label31.Location = new System.Drawing.Point(400, 45);
            this.label31.Name = "label31";
            this.label31.Size = new System.Drawing.Size(70, 12);
            this.label31.TabIndex = 177;
            this.label31.Text = "단위당금액";
            // 
            // label48
            // 
            this.label48.AutoSize = true;
            this.label48.BackColor = System.Drawing.Color.LemonChiffon;
            this.label48.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label48.ForeColor = System.Drawing.Color.Black;
            this.label48.Location = new System.Drawing.Point(260, 342);
            this.label48.Name = "label48";
            this.label48.Size = new System.Drawing.Size(31, 12);
            this.label48.TabIndex = 178;
            this.label48.Text = "총액";
            // 
            // txtOut90
            // 
            this.txtOut90.BackColor = System.Drawing.Color.White;
            this.txtOut90.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut90.ForeColor = System.Drawing.Color.Black;
            this.txtOut90.Location = new System.Drawing.Point(1080, 431);
            this.txtOut90.Name = "txtOut90";
            this.txtOut90.ReadOnly = true;
            this.txtOut90.Size = new System.Drawing.Size(129, 14);
            this.txtOut90.TabIndex = 203;
            this.txtOut90.Text = "0";
            this.txtOut90.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label47
            // 
            this.label47.AutoSize = true;
            this.label47.BackColor = System.Drawing.Color.LemonChiffon;
            this.label47.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label47.ForeColor = System.Drawing.Color.Black;
            this.label47.Location = new System.Drawing.Point(260, 45);
            this.label47.Name = "label47";
            this.label47.Size = new System.Drawing.Size(31, 12);
            this.label47.TabIndex = 178;
            this.label47.Text = "총액";
            // 
            // txtOut89
            // 
            this.txtOut89.BackColor = System.Drawing.Color.White;
            this.txtOut89.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut89.ForeColor = System.Drawing.Color.Black;
            this.txtOut89.Location = new System.Drawing.Point(1080, 401);
            this.txtOut89.Name = "txtOut89";
            this.txtOut89.ReadOnly = true;
            this.txtOut89.Size = new System.Drawing.Size(129, 14);
            this.txtOut89.TabIndex = 203;
            this.txtOut89.Text = "0";
            this.txtOut89.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut63
            // 
            this.txtOut63.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut63.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut63.ForeColor = System.Drawing.Color.Black;
            this.txtOut63.Location = new System.Drawing.Point(720, 581);
            this.txtOut63.Name = "txtOut63";
            this.txtOut63.ReadOnly = true;
            this.txtOut63.Size = new System.Drawing.Size(129, 14);
            this.txtOut63.TabIndex = 204;
            this.txtOut63.Text = "0";
            this.txtOut63.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut62
            // 
            this.txtOut62.BackColor = System.Drawing.Color.White;
            this.txtOut62.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut62.ForeColor = System.Drawing.Color.Black;
            this.txtOut62.Location = new System.Drawing.Point(720, 551);
            this.txtOut62.Name = "txtOut62";
            this.txtOut62.ReadOnly = true;
            this.txtOut62.Size = new System.Drawing.Size(129, 14);
            this.txtOut62.TabIndex = 204;
            this.txtOut62.Text = "0";
            this.txtOut62.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut61
            // 
            this.txtOut61.BackColor = System.Drawing.Color.White;
            this.txtOut61.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut61.ForeColor = System.Drawing.Color.Black;
            this.txtOut61.Location = new System.Drawing.Point(720, 521);
            this.txtOut61.Name = "txtOut61";
            this.txtOut61.ReadOnly = true;
            this.txtOut61.Size = new System.Drawing.Size(129, 14);
            this.txtOut61.TabIndex = 204;
            this.txtOut61.Text = "0";
            this.txtOut61.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut60
            // 
            this.txtOut60.BackColor = System.Drawing.Color.White;
            this.txtOut60.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut60.ForeColor = System.Drawing.Color.Black;
            this.txtOut60.Location = new System.Drawing.Point(720, 491);
            this.txtOut60.Name = "txtOut60";
            this.txtOut60.ReadOnly = true;
            this.txtOut60.Size = new System.Drawing.Size(129, 14);
            this.txtOut60.TabIndex = 204;
            this.txtOut60.Text = "0";
            this.txtOut60.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut59
            // 
            this.txtOut59.BackColor = System.Drawing.Color.White;
            this.txtOut59.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut59.ForeColor = System.Drawing.Color.Black;
            this.txtOut59.Location = new System.Drawing.Point(720, 461);
            this.txtOut59.Name = "txtOut59";
            this.txtOut59.ReadOnly = true;
            this.txtOut59.Size = new System.Drawing.Size(129, 14);
            this.txtOut59.TabIndex = 204;
            this.txtOut59.Text = "0";
            this.txtOut59.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut58
            // 
            this.txtOut58.BackColor = System.Drawing.Color.White;
            this.txtOut58.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut58.ForeColor = System.Drawing.Color.Black;
            this.txtOut58.Location = new System.Drawing.Point(720, 431);
            this.txtOut58.Name = "txtOut58";
            this.txtOut58.ReadOnly = true;
            this.txtOut58.Size = new System.Drawing.Size(129, 14);
            this.txtOut58.TabIndex = 204;
            this.txtOut58.Text = "0";
            this.txtOut58.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut57
            // 
            this.txtOut57.BackColor = System.Drawing.Color.White;
            this.txtOut57.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut57.ForeColor = System.Drawing.Color.Black;
            this.txtOut57.Location = new System.Drawing.Point(720, 401);
            this.txtOut57.Name = "txtOut57";
            this.txtOut57.ReadOnly = true;
            this.txtOut57.Size = new System.Drawing.Size(129, 14);
            this.txtOut57.TabIndex = 204;
            this.txtOut57.Text = "0";
            this.txtOut57.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut31
            // 
            this.txtOut31.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut31.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut31.ForeColor = System.Drawing.Color.Black;
            this.txtOut31.Location = new System.Drawing.Point(370, 581);
            this.txtOut31.Name = "txtOut31";
            this.txtOut31.ReadOnly = true;
            this.txtOut31.Size = new System.Drawing.Size(129, 14);
            this.txtOut31.TabIndex = 205;
            this.txtOut31.Text = "0";
            this.txtOut31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut30
            // 
            this.txtOut30.BackColor = System.Drawing.Color.White;
            this.txtOut30.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut30.ForeColor = System.Drawing.Color.Black;
            this.txtOut30.Location = new System.Drawing.Point(370, 551);
            this.txtOut30.Name = "txtOut30";
            this.txtOut30.ReadOnly = true;
            this.txtOut30.Size = new System.Drawing.Size(129, 14);
            this.txtOut30.TabIndex = 205;
            this.txtOut30.Text = "0";
            this.txtOut30.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut79
            // 
            this.txtOut79.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut79.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut79.ForeColor = System.Drawing.Color.Black;
            this.txtOut79.Location = new System.Drawing.Point(920, 581);
            this.txtOut79.Name = "txtOut79";
            this.txtOut79.ReadOnly = true;
            this.txtOut79.Size = new System.Drawing.Size(129, 14);
            this.txtOut79.TabIndex = 200;
            this.txtOut79.Text = "0";
            this.txtOut79.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut78
            // 
            this.txtOut78.BackColor = System.Drawing.Color.White;
            this.txtOut78.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut78.ForeColor = System.Drawing.Color.Black;
            this.txtOut78.Location = new System.Drawing.Point(920, 551);
            this.txtOut78.Name = "txtOut78";
            this.txtOut78.ReadOnly = true;
            this.txtOut78.Size = new System.Drawing.Size(129, 14);
            this.txtOut78.TabIndex = 200;
            this.txtOut78.Text = "0";
            this.txtOut78.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut29
            // 
            this.txtOut29.BackColor = System.Drawing.Color.White;
            this.txtOut29.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut29.ForeColor = System.Drawing.Color.Black;
            this.txtOut29.Location = new System.Drawing.Point(370, 521);
            this.txtOut29.Name = "txtOut29";
            this.txtOut29.ReadOnly = true;
            this.txtOut29.Size = new System.Drawing.Size(129, 14);
            this.txtOut29.TabIndex = 205;
            this.txtOut29.Text = "0";
            this.txtOut29.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut77
            // 
            this.txtOut77.BackColor = System.Drawing.Color.White;
            this.txtOut77.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut77.ForeColor = System.Drawing.Color.Black;
            this.txtOut77.Location = new System.Drawing.Point(920, 521);
            this.txtOut77.Name = "txtOut77";
            this.txtOut77.ReadOnly = true;
            this.txtOut77.Size = new System.Drawing.Size(129, 14);
            this.txtOut77.TabIndex = 200;
            this.txtOut77.Text = "0";
            this.txtOut77.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut28
            // 
            this.txtOut28.BackColor = System.Drawing.Color.White;
            this.txtOut28.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut28.ForeColor = System.Drawing.Color.Black;
            this.txtOut28.Location = new System.Drawing.Point(370, 491);
            this.txtOut28.Name = "txtOut28";
            this.txtOut28.ReadOnly = true;
            this.txtOut28.Size = new System.Drawing.Size(129, 14);
            this.txtOut28.TabIndex = 205;
            this.txtOut28.Text = "0";
            this.txtOut28.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut76
            // 
            this.txtOut76.BackColor = System.Drawing.Color.White;
            this.txtOut76.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut76.ForeColor = System.Drawing.Color.Black;
            this.txtOut76.Location = new System.Drawing.Point(920, 491);
            this.txtOut76.Name = "txtOut76";
            this.txtOut76.ReadOnly = true;
            this.txtOut76.Size = new System.Drawing.Size(129, 14);
            this.txtOut76.TabIndex = 200;
            this.txtOut76.Text = "0";
            this.txtOut76.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut27
            // 
            this.txtOut27.BackColor = System.Drawing.Color.White;
            this.txtOut27.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut27.ForeColor = System.Drawing.Color.Black;
            this.txtOut27.Location = new System.Drawing.Point(370, 461);
            this.txtOut27.Name = "txtOut27";
            this.txtOut27.ReadOnly = true;
            this.txtOut27.Size = new System.Drawing.Size(129, 14);
            this.txtOut27.TabIndex = 205;
            this.txtOut27.Text = "0";
            this.txtOut27.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut75
            // 
            this.txtOut75.BackColor = System.Drawing.Color.White;
            this.txtOut75.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut75.ForeColor = System.Drawing.Color.Black;
            this.txtOut75.Location = new System.Drawing.Point(920, 461);
            this.txtOut75.Name = "txtOut75";
            this.txtOut75.ReadOnly = true;
            this.txtOut75.Size = new System.Drawing.Size(129, 14);
            this.txtOut75.TabIndex = 200;
            this.txtOut75.Text = "0";
            this.txtOut75.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut47
            // 
            this.txtOut47.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut47.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut47.ForeColor = System.Drawing.Color.Black;
            this.txtOut47.Location = new System.Drawing.Point(560, 581);
            this.txtOut47.Name = "txtOut47";
            this.txtOut47.ReadOnly = true;
            this.txtOut47.Size = new System.Drawing.Size(129, 14);
            this.txtOut47.TabIndex = 201;
            this.txtOut47.Text = "0";
            this.txtOut47.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut46
            // 
            this.txtOut46.BackColor = System.Drawing.Color.White;
            this.txtOut46.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut46.ForeColor = System.Drawing.Color.Black;
            this.txtOut46.Location = new System.Drawing.Point(560, 551);
            this.txtOut46.Name = "txtOut46";
            this.txtOut46.ReadOnly = true;
            this.txtOut46.Size = new System.Drawing.Size(129, 14);
            this.txtOut46.TabIndex = 201;
            this.txtOut46.Text = "0";
            this.txtOut46.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut26
            // 
            this.txtOut26.BackColor = System.Drawing.Color.White;
            this.txtOut26.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut26.ForeColor = System.Drawing.Color.Black;
            this.txtOut26.Location = new System.Drawing.Point(370, 431);
            this.txtOut26.Name = "txtOut26";
            this.txtOut26.ReadOnly = true;
            this.txtOut26.Size = new System.Drawing.Size(129, 14);
            this.txtOut26.TabIndex = 205;
            this.txtOut26.Text = "0";
            this.txtOut26.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut45
            // 
            this.txtOut45.BackColor = System.Drawing.Color.White;
            this.txtOut45.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut45.ForeColor = System.Drawing.Color.Black;
            this.txtOut45.Location = new System.Drawing.Point(560, 521);
            this.txtOut45.Name = "txtOut45";
            this.txtOut45.ReadOnly = true;
            this.txtOut45.Size = new System.Drawing.Size(129, 14);
            this.txtOut45.TabIndex = 201;
            this.txtOut45.Text = "0";
            this.txtOut45.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut74
            // 
            this.txtOut74.BackColor = System.Drawing.Color.White;
            this.txtOut74.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut74.ForeColor = System.Drawing.Color.Black;
            this.txtOut74.Location = new System.Drawing.Point(920, 431);
            this.txtOut74.Name = "txtOut74";
            this.txtOut74.ReadOnly = true;
            this.txtOut74.Size = new System.Drawing.Size(129, 14);
            this.txtOut74.TabIndex = 200;
            this.txtOut74.Text = "0";
            this.txtOut74.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut44
            // 
            this.txtOut44.BackColor = System.Drawing.Color.White;
            this.txtOut44.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut44.ForeColor = System.Drawing.Color.Black;
            this.txtOut44.Location = new System.Drawing.Point(560, 491);
            this.txtOut44.Name = "txtOut44";
            this.txtOut44.ReadOnly = true;
            this.txtOut44.Size = new System.Drawing.Size(129, 14);
            this.txtOut44.TabIndex = 201;
            this.txtOut44.Text = "0";
            this.txtOut44.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut25
            // 
            this.txtOut25.BackColor = System.Drawing.Color.White;
            this.txtOut25.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut25.ForeColor = System.Drawing.Color.Black;
            this.txtOut25.Location = new System.Drawing.Point(370, 401);
            this.txtOut25.Name = "txtOut25";
            this.txtOut25.ReadOnly = true;
            this.txtOut25.Size = new System.Drawing.Size(129, 14);
            this.txtOut25.TabIndex = 205;
            this.txtOut25.Text = "0";
            this.txtOut25.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut43
            // 
            this.txtOut43.BackColor = System.Drawing.Color.White;
            this.txtOut43.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut43.ForeColor = System.Drawing.Color.Black;
            this.txtOut43.Location = new System.Drawing.Point(560, 461);
            this.txtOut43.Name = "txtOut43";
            this.txtOut43.ReadOnly = true;
            this.txtOut43.Size = new System.Drawing.Size(129, 14);
            this.txtOut43.TabIndex = 201;
            this.txtOut43.Text = "0";
            this.txtOut43.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut73
            // 
            this.txtOut73.BackColor = System.Drawing.Color.White;
            this.txtOut73.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut73.ForeColor = System.Drawing.Color.Black;
            this.txtOut73.Location = new System.Drawing.Point(920, 401);
            this.txtOut73.Name = "txtOut73";
            this.txtOut73.ReadOnly = true;
            this.txtOut73.Size = new System.Drawing.Size(129, 14);
            this.txtOut73.TabIndex = 200;
            this.txtOut73.Text = "0";
            this.txtOut73.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut42
            // 
            this.txtOut42.BackColor = System.Drawing.Color.White;
            this.txtOut42.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut42.ForeColor = System.Drawing.Color.Black;
            this.txtOut42.Location = new System.Drawing.Point(560, 431);
            this.txtOut42.Name = "txtOut42";
            this.txtOut42.ReadOnly = true;
            this.txtOut42.Size = new System.Drawing.Size(129, 14);
            this.txtOut42.TabIndex = 201;
            this.txtOut42.Text = "0";
            this.txtOut42.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut41
            // 
            this.txtOut41.BackColor = System.Drawing.Color.White;
            this.txtOut41.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut41.ForeColor = System.Drawing.Color.Black;
            this.txtOut41.Location = new System.Drawing.Point(560, 401);
            this.txtOut41.Name = "txtOut41";
            this.txtOut41.ReadOnly = true;
            this.txtOut41.Size = new System.Drawing.Size(129, 14);
            this.txtOut41.TabIndex = 201;
            this.txtOut41.Text = "0";
            this.txtOut41.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut87
            // 
            this.txtOut87.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut87.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut87.ForeColor = System.Drawing.Color.Black;
            this.txtOut87.Location = new System.Drawing.Point(1080, 264);
            this.txtOut87.Name = "txtOut87";
            this.txtOut87.ReadOnly = true;
            this.txtOut87.Size = new System.Drawing.Size(129, 14);
            this.txtOut87.TabIndex = 197;
            this.txtOut87.Text = "0";
            this.txtOut87.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut86
            // 
            this.txtOut86.BackColor = System.Drawing.Color.White;
            this.txtOut86.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut86.ForeColor = System.Drawing.Color.Black;
            this.txtOut86.Location = new System.Drawing.Point(1080, 234);
            this.txtOut86.Name = "txtOut86";
            this.txtOut86.ReadOnly = true;
            this.txtOut86.Size = new System.Drawing.Size(129, 14);
            this.txtOut86.TabIndex = 197;
            this.txtOut86.Text = "0";
            this.txtOut86.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut85
            // 
            this.txtOut85.BackColor = System.Drawing.Color.White;
            this.txtOut85.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut85.ForeColor = System.Drawing.Color.Black;
            this.txtOut85.Location = new System.Drawing.Point(1080, 202);
            this.txtOut85.Name = "txtOut85";
            this.txtOut85.ReadOnly = true;
            this.txtOut85.Size = new System.Drawing.Size(129, 14);
            this.txtOut85.TabIndex = 197;
            this.txtOut85.Text = "0";
            this.txtOut85.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut84
            // 
            this.txtOut84.BackColor = System.Drawing.Color.White;
            this.txtOut84.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut84.ForeColor = System.Drawing.Color.Black;
            this.txtOut84.Location = new System.Drawing.Point(1080, 167);
            this.txtOut84.Name = "txtOut84";
            this.txtOut84.ReadOnly = true;
            this.txtOut84.Size = new System.Drawing.Size(129, 14);
            this.txtOut84.TabIndex = 197;
            this.txtOut84.Text = "0";
            this.txtOut84.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut83
            // 
            this.txtOut83.BackColor = System.Drawing.Color.White;
            this.txtOut83.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut83.ForeColor = System.Drawing.Color.Black;
            this.txtOut83.Location = new System.Drawing.Point(1080, 134);
            this.txtOut83.Name = "txtOut83";
            this.txtOut83.ReadOnly = true;
            this.txtOut83.Size = new System.Drawing.Size(129, 14);
            this.txtOut83.TabIndex = 197;
            this.txtOut83.Text = "0";
            this.txtOut83.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut82
            // 
            this.txtOut82.BackColor = System.Drawing.Color.White;
            this.txtOut82.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut82.ForeColor = System.Drawing.Color.Black;
            this.txtOut82.Location = new System.Drawing.Point(1080, 104);
            this.txtOut82.Name = "txtOut82";
            this.txtOut82.ReadOnly = true;
            this.txtOut82.Size = new System.Drawing.Size(129, 14);
            this.txtOut82.TabIndex = 197;
            this.txtOut82.Text = "0";
            this.txtOut82.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut81
            // 
            this.txtOut81.BackColor = System.Drawing.Color.White;
            this.txtOut81.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut81.ForeColor = System.Drawing.Color.Black;
            this.txtOut81.Location = new System.Drawing.Point(1080, 74);
            this.txtOut81.Name = "txtOut81";
            this.txtOut81.ReadOnly = true;
            this.txtOut81.Size = new System.Drawing.Size(129, 14);
            this.txtOut81.TabIndex = 197;
            this.txtOut81.Text = "0";
            this.txtOut81.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut55
            // 
            this.txtOut55.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut55.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut55.ForeColor = System.Drawing.Color.Black;
            this.txtOut55.Location = new System.Drawing.Point(720, 264);
            this.txtOut55.Name = "txtOut55";
            this.txtOut55.ReadOnly = true;
            this.txtOut55.Size = new System.Drawing.Size(129, 14);
            this.txtOut55.TabIndex = 198;
            this.txtOut55.Text = "0";
            this.txtOut55.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut54
            // 
            this.txtOut54.BackColor = System.Drawing.Color.White;
            this.txtOut54.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut54.ForeColor = System.Drawing.Color.Black;
            this.txtOut54.Location = new System.Drawing.Point(720, 234);
            this.txtOut54.Name = "txtOut54";
            this.txtOut54.ReadOnly = true;
            this.txtOut54.Size = new System.Drawing.Size(129, 14);
            this.txtOut54.TabIndex = 198;
            this.txtOut54.Text = "0";
            this.txtOut54.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut53
            // 
            this.txtOut53.BackColor = System.Drawing.Color.White;
            this.txtOut53.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut53.ForeColor = System.Drawing.Color.Black;
            this.txtOut53.Location = new System.Drawing.Point(720, 202);
            this.txtOut53.Name = "txtOut53";
            this.txtOut53.ReadOnly = true;
            this.txtOut53.Size = new System.Drawing.Size(129, 14);
            this.txtOut53.TabIndex = 198;
            this.txtOut53.Text = "0";
            this.txtOut53.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut52
            // 
            this.txtOut52.BackColor = System.Drawing.Color.White;
            this.txtOut52.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut52.ForeColor = System.Drawing.Color.Black;
            this.txtOut52.Location = new System.Drawing.Point(720, 167);
            this.txtOut52.Name = "txtOut52";
            this.txtOut52.ReadOnly = true;
            this.txtOut52.Size = new System.Drawing.Size(129, 14);
            this.txtOut52.TabIndex = 198;
            this.txtOut52.Text = "0";
            this.txtOut52.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut51
            // 
            this.txtOut51.BackColor = System.Drawing.Color.White;
            this.txtOut51.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut51.ForeColor = System.Drawing.Color.Black;
            this.txtOut51.Location = new System.Drawing.Point(720, 134);
            this.txtOut51.Name = "txtOut51";
            this.txtOut51.ReadOnly = true;
            this.txtOut51.Size = new System.Drawing.Size(129, 14);
            this.txtOut51.TabIndex = 198;
            this.txtOut51.Text = "0";
            this.txtOut51.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut50
            // 
            this.txtOut50.BackColor = System.Drawing.Color.White;
            this.txtOut50.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut50.ForeColor = System.Drawing.Color.Black;
            this.txtOut50.Location = new System.Drawing.Point(720, 104);
            this.txtOut50.Name = "txtOut50";
            this.txtOut50.ReadOnly = true;
            this.txtOut50.Size = new System.Drawing.Size(129, 14);
            this.txtOut50.TabIndex = 198;
            this.txtOut50.Text = "0";
            this.txtOut50.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut49
            // 
            this.txtOut49.BackColor = System.Drawing.Color.White;
            this.txtOut49.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut49.ForeColor = System.Drawing.Color.Black;
            this.txtOut49.Location = new System.Drawing.Point(720, 74);
            this.txtOut49.Name = "txtOut49";
            this.txtOut49.ReadOnly = true;
            this.txtOut49.Size = new System.Drawing.Size(129, 14);
            this.txtOut49.TabIndex = 198;
            this.txtOut49.Text = "0";
            this.txtOut49.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut23
            // 
            this.txtOut23.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut23.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut23.ForeColor = System.Drawing.Color.Black;
            this.txtOut23.Location = new System.Drawing.Point(370, 264);
            this.txtOut23.Name = "txtOut23";
            this.txtOut23.ReadOnly = true;
            this.txtOut23.Size = new System.Drawing.Size(129, 14);
            this.txtOut23.TabIndex = 199;
            this.txtOut23.Text = "0";
            this.txtOut23.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut22
            // 
            this.txtOut22.BackColor = System.Drawing.Color.White;
            this.txtOut22.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut22.ForeColor = System.Drawing.Color.Black;
            this.txtOut22.Location = new System.Drawing.Point(370, 234);
            this.txtOut22.Name = "txtOut22";
            this.txtOut22.ReadOnly = true;
            this.txtOut22.Size = new System.Drawing.Size(129, 14);
            this.txtOut22.TabIndex = 199;
            this.txtOut22.Text = "0";
            this.txtOut22.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut21
            // 
            this.txtOut21.BackColor = System.Drawing.Color.White;
            this.txtOut21.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut21.ForeColor = System.Drawing.Color.Black;
            this.txtOut21.Location = new System.Drawing.Point(370, 202);
            this.txtOut21.Name = "txtOut21";
            this.txtOut21.ReadOnly = true;
            this.txtOut21.Size = new System.Drawing.Size(129, 14);
            this.txtOut21.TabIndex = 199;
            this.txtOut21.Text = "0";
            this.txtOut21.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut20
            // 
            this.txtOut20.BackColor = System.Drawing.Color.White;
            this.txtOut20.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut20.ForeColor = System.Drawing.Color.Black;
            this.txtOut20.Location = new System.Drawing.Point(370, 167);
            this.txtOut20.Name = "txtOut20";
            this.txtOut20.ReadOnly = true;
            this.txtOut20.Size = new System.Drawing.Size(129, 14);
            this.txtOut20.TabIndex = 199;
            this.txtOut20.Text = "0";
            this.txtOut20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut19
            // 
            this.txtOut19.BackColor = System.Drawing.Color.White;
            this.txtOut19.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut19.ForeColor = System.Drawing.Color.Black;
            this.txtOut19.Location = new System.Drawing.Point(370, 134);
            this.txtOut19.Name = "txtOut19";
            this.txtOut19.ReadOnly = true;
            this.txtOut19.Size = new System.Drawing.Size(129, 14);
            this.txtOut19.TabIndex = 199;
            this.txtOut19.Text = "0";
            this.txtOut19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut18
            // 
            this.txtOut18.BackColor = System.Drawing.Color.White;
            this.txtOut18.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut18.ForeColor = System.Drawing.Color.Black;
            this.txtOut18.Location = new System.Drawing.Point(370, 104);
            this.txtOut18.Name = "txtOut18";
            this.txtOut18.ReadOnly = true;
            this.txtOut18.Size = new System.Drawing.Size(129, 14);
            this.txtOut18.TabIndex = 199;
            this.txtOut18.Text = "0";
            this.txtOut18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut17
            // 
            this.txtOut17.BackColor = System.Drawing.Color.White;
            this.txtOut17.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut17.ForeColor = System.Drawing.Color.Black;
            this.txtOut17.Location = new System.Drawing.Point(370, 74);
            this.txtOut17.Name = "txtOut17";
            this.txtOut17.ReadOnly = true;
            this.txtOut17.Size = new System.Drawing.Size(129, 14);
            this.txtOut17.TabIndex = 199;
            this.txtOut17.Text = "0";
            this.txtOut17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut71
            // 
            this.txtOut71.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut71.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut71.ForeColor = System.Drawing.Color.Black;
            this.txtOut71.Location = new System.Drawing.Point(920, 264);
            this.txtOut71.Name = "txtOut71";
            this.txtOut71.ReadOnly = true;
            this.txtOut71.Size = new System.Drawing.Size(129, 14);
            this.txtOut71.TabIndex = 194;
            this.txtOut71.Text = "0";
            this.txtOut71.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut70
            // 
            this.txtOut70.BackColor = System.Drawing.Color.White;
            this.txtOut70.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut70.ForeColor = System.Drawing.Color.Black;
            this.txtOut70.Location = new System.Drawing.Point(920, 234);
            this.txtOut70.Name = "txtOut70";
            this.txtOut70.ReadOnly = true;
            this.txtOut70.Size = new System.Drawing.Size(129, 14);
            this.txtOut70.TabIndex = 194;
            this.txtOut70.Text = "0";
            this.txtOut70.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut69
            // 
            this.txtOut69.BackColor = System.Drawing.Color.White;
            this.txtOut69.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut69.ForeColor = System.Drawing.Color.Black;
            this.txtOut69.Location = new System.Drawing.Point(920, 202);
            this.txtOut69.Name = "txtOut69";
            this.txtOut69.ReadOnly = true;
            this.txtOut69.Size = new System.Drawing.Size(129, 14);
            this.txtOut69.TabIndex = 194;
            this.txtOut69.Text = "0";
            this.txtOut69.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut68
            // 
            this.txtOut68.BackColor = System.Drawing.Color.White;
            this.txtOut68.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut68.ForeColor = System.Drawing.Color.Black;
            this.txtOut68.Location = new System.Drawing.Point(920, 167);
            this.txtOut68.Name = "txtOut68";
            this.txtOut68.ReadOnly = true;
            this.txtOut68.Size = new System.Drawing.Size(129, 14);
            this.txtOut68.TabIndex = 194;
            this.txtOut68.Text = "0";
            this.txtOut68.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut67
            // 
            this.txtOut67.BackColor = System.Drawing.Color.White;
            this.txtOut67.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut67.ForeColor = System.Drawing.Color.Black;
            this.txtOut67.Location = new System.Drawing.Point(920, 134);
            this.txtOut67.Name = "txtOut67";
            this.txtOut67.ReadOnly = true;
            this.txtOut67.Size = new System.Drawing.Size(129, 14);
            this.txtOut67.TabIndex = 194;
            this.txtOut67.Text = "0";
            this.txtOut67.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut66
            // 
            this.txtOut66.BackColor = System.Drawing.Color.White;
            this.txtOut66.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut66.ForeColor = System.Drawing.Color.Black;
            this.txtOut66.Location = new System.Drawing.Point(920, 104);
            this.txtOut66.Name = "txtOut66";
            this.txtOut66.ReadOnly = true;
            this.txtOut66.Size = new System.Drawing.Size(129, 14);
            this.txtOut66.TabIndex = 194;
            this.txtOut66.Text = "0";
            this.txtOut66.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut65
            // 
            this.txtOut65.BackColor = System.Drawing.Color.White;
            this.txtOut65.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut65.ForeColor = System.Drawing.Color.Black;
            this.txtOut65.Location = new System.Drawing.Point(920, 74);
            this.txtOut65.Name = "txtOut65";
            this.txtOut65.ReadOnly = true;
            this.txtOut65.Size = new System.Drawing.Size(129, 14);
            this.txtOut65.TabIndex = 194;
            this.txtOut65.Text = "0";
            this.txtOut65.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut39
            // 
            this.txtOut39.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut39.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut39.ForeColor = System.Drawing.Color.Black;
            this.txtOut39.Location = new System.Drawing.Point(560, 264);
            this.txtOut39.Name = "txtOut39";
            this.txtOut39.ReadOnly = true;
            this.txtOut39.Size = new System.Drawing.Size(129, 14);
            this.txtOut39.TabIndex = 195;
            this.txtOut39.Text = "0";
            this.txtOut39.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut38
            // 
            this.txtOut38.BackColor = System.Drawing.Color.White;
            this.txtOut38.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut38.ForeColor = System.Drawing.Color.Black;
            this.txtOut38.Location = new System.Drawing.Point(560, 234);
            this.txtOut38.Name = "txtOut38";
            this.txtOut38.ReadOnly = true;
            this.txtOut38.Size = new System.Drawing.Size(129, 14);
            this.txtOut38.TabIndex = 195;
            this.txtOut38.Text = "0";
            this.txtOut38.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut37
            // 
            this.txtOut37.BackColor = System.Drawing.Color.White;
            this.txtOut37.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut37.ForeColor = System.Drawing.Color.Black;
            this.txtOut37.Location = new System.Drawing.Point(560, 202);
            this.txtOut37.Name = "txtOut37";
            this.txtOut37.ReadOnly = true;
            this.txtOut37.Size = new System.Drawing.Size(129, 14);
            this.txtOut37.TabIndex = 195;
            this.txtOut37.Text = "0";
            this.txtOut37.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut36
            // 
            this.txtOut36.BackColor = System.Drawing.Color.White;
            this.txtOut36.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut36.ForeColor = System.Drawing.Color.Black;
            this.txtOut36.Location = new System.Drawing.Point(560, 167);
            this.txtOut36.Name = "txtOut36";
            this.txtOut36.ReadOnly = true;
            this.txtOut36.Size = new System.Drawing.Size(129, 14);
            this.txtOut36.TabIndex = 195;
            this.txtOut36.Text = "0";
            this.txtOut36.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut35
            // 
            this.txtOut35.BackColor = System.Drawing.Color.White;
            this.txtOut35.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut35.ForeColor = System.Drawing.Color.Black;
            this.txtOut35.Location = new System.Drawing.Point(560, 134);
            this.txtOut35.Name = "txtOut35";
            this.txtOut35.ReadOnly = true;
            this.txtOut35.Size = new System.Drawing.Size(129, 14);
            this.txtOut35.TabIndex = 195;
            this.txtOut35.Text = "0";
            this.txtOut35.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut34
            // 
            this.txtOut34.BackColor = System.Drawing.Color.White;
            this.txtOut34.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut34.ForeColor = System.Drawing.Color.Black;
            this.txtOut34.Location = new System.Drawing.Point(560, 104);
            this.txtOut34.Name = "txtOut34";
            this.txtOut34.ReadOnly = true;
            this.txtOut34.Size = new System.Drawing.Size(129, 14);
            this.txtOut34.TabIndex = 195;
            this.txtOut34.Text = "0";
            this.txtOut34.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut33
            // 
            this.txtOut33.BackColor = System.Drawing.Color.White;
            this.txtOut33.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut33.ForeColor = System.Drawing.Color.Black;
            this.txtOut33.Location = new System.Drawing.Point(560, 74);
            this.txtOut33.Name = "txtOut33";
            this.txtOut33.ReadOnly = true;
            this.txtOut33.Size = new System.Drawing.Size(129, 14);
            this.txtOut33.TabIndex = 195;
            this.txtOut33.Text = "0";
            this.txtOut33.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // panel70
            // 
            this.panel70.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel70.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel70.ForeColor = System.Drawing.Color.Black;
            this.panel70.Location = new System.Drawing.Point(0, 255);
            this.panel70.Name = "panel70";
            this.panel70.Size = new System.Drawing.Size(1240, 2);
            this.panel70.TabIndex = 91;
            // 
            // panel7
            // 
            this.panel7.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel7.ForeColor = System.Drawing.Color.Black;
            this.panel7.Location = new System.Drawing.Point(0, 225);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(1240, 2);
            this.panel7.TabIndex = 91;
            // 
            // panel6
            // 
            this.panel6.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel6.ForeColor = System.Drawing.Color.Black;
            this.panel6.Location = new System.Drawing.Point(0, 190);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(1240, 2);
            this.panel6.TabIndex = 91;
            // 
            // panel5
            // 
            this.panel5.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel5.ForeColor = System.Drawing.Color.Black;
            this.panel5.Location = new System.Drawing.Point(0, 155);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(1240, 2);
            this.panel5.TabIndex = 91;
            // 
            // panel4
            // 
            this.panel4.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel4.ForeColor = System.Drawing.Color.Black;
            this.panel4.Location = new System.Drawing.Point(0, 125);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(1240, 2);
            this.panel4.TabIndex = 91;
            // 
            // panel2
            // 
            this.panel2.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel2.ForeColor = System.Drawing.Color.Black;
            this.panel2.Location = new System.Drawing.Point(0, 95);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(1240, 2);
            this.panel2.TabIndex = 91;
            // 
            // txtOut7
            // 
            this.txtOut7.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut7.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut7.ForeColor = System.Drawing.Color.Black;
            this.txtOut7.Location = new System.Drawing.Point(210, 264);
            this.txtOut7.Name = "txtOut7";
            this.txtOut7.ReadOnly = true;
            this.txtOut7.Size = new System.Drawing.Size(129, 14);
            this.txtOut7.TabIndex = 95;
            this.txtOut7.Text = "0";
            this.txtOut7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut6
            // 
            this.txtOut6.BackColor = System.Drawing.Color.White;
            this.txtOut6.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut6.ForeColor = System.Drawing.Color.Black;
            this.txtOut6.Location = new System.Drawing.Point(210, 234);
            this.txtOut6.Name = "txtOut6";
            this.txtOut6.ReadOnly = true;
            this.txtOut6.Size = new System.Drawing.Size(129, 14);
            this.txtOut6.TabIndex = 95;
            this.txtOut6.Text = "0";
            this.txtOut6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut15
            // 
            this.txtOut15.BackColor = System.Drawing.Color.Gainsboro;
            this.txtOut15.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut15.ForeColor = System.Drawing.Color.Black;
            this.txtOut15.Location = new System.Drawing.Point(210, 581);
            this.txtOut15.Name = "txtOut15";
            this.txtOut15.ReadOnly = true;
            this.txtOut15.Size = new System.Drawing.Size(129, 14);
            this.txtOut15.TabIndex = 95;
            this.txtOut15.Text = "0";
            this.txtOut15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut14
            // 
            this.txtOut14.BackColor = System.Drawing.Color.White;
            this.txtOut14.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut14.ForeColor = System.Drawing.Color.Black;
            this.txtOut14.Location = new System.Drawing.Point(210, 551);
            this.txtOut14.Name = "txtOut14";
            this.txtOut14.ReadOnly = true;
            this.txtOut14.Size = new System.Drawing.Size(129, 14);
            this.txtOut14.TabIndex = 95;
            this.txtOut14.Text = "0";
            this.txtOut14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut13
            // 
            this.txtOut13.BackColor = System.Drawing.Color.White;
            this.txtOut13.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut13.ForeColor = System.Drawing.Color.Black;
            this.txtOut13.Location = new System.Drawing.Point(210, 521);
            this.txtOut13.Name = "txtOut13";
            this.txtOut13.ReadOnly = true;
            this.txtOut13.Size = new System.Drawing.Size(129, 14);
            this.txtOut13.TabIndex = 95;
            this.txtOut13.Text = "0";
            this.txtOut13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut12
            // 
            this.txtOut12.BackColor = System.Drawing.Color.White;
            this.txtOut12.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut12.ForeColor = System.Drawing.Color.Black;
            this.txtOut12.Location = new System.Drawing.Point(210, 491);
            this.txtOut12.Name = "txtOut12";
            this.txtOut12.ReadOnly = true;
            this.txtOut12.Size = new System.Drawing.Size(129, 14);
            this.txtOut12.TabIndex = 95;
            this.txtOut12.Text = "0";
            this.txtOut12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut11
            // 
            this.txtOut11.BackColor = System.Drawing.Color.White;
            this.txtOut11.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut11.ForeColor = System.Drawing.Color.Black;
            this.txtOut11.Location = new System.Drawing.Point(210, 461);
            this.txtOut11.Name = "txtOut11";
            this.txtOut11.ReadOnly = true;
            this.txtOut11.Size = new System.Drawing.Size(129, 14);
            this.txtOut11.TabIndex = 95;
            this.txtOut11.Text = "0";
            this.txtOut11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut10
            // 
            this.txtOut10.BackColor = System.Drawing.Color.White;
            this.txtOut10.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut10.ForeColor = System.Drawing.Color.Black;
            this.txtOut10.Location = new System.Drawing.Point(210, 431);
            this.txtOut10.Name = "txtOut10";
            this.txtOut10.ReadOnly = true;
            this.txtOut10.Size = new System.Drawing.Size(129, 14);
            this.txtOut10.TabIndex = 95;
            this.txtOut10.Text = "0";
            this.txtOut10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut5
            // 
            this.txtOut5.BackColor = System.Drawing.Color.White;
            this.txtOut5.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut5.ForeColor = System.Drawing.Color.Black;
            this.txtOut5.Location = new System.Drawing.Point(210, 202);
            this.txtOut5.Name = "txtOut5";
            this.txtOut5.ReadOnly = true;
            this.txtOut5.Size = new System.Drawing.Size(129, 14);
            this.txtOut5.TabIndex = 95;
            this.txtOut5.Text = "0";
            this.txtOut5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut4
            // 
            this.txtOut4.BackColor = System.Drawing.Color.White;
            this.txtOut4.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut4.ForeColor = System.Drawing.Color.Black;
            this.txtOut4.Location = new System.Drawing.Point(210, 167);
            this.txtOut4.Name = "txtOut4";
            this.txtOut4.ReadOnly = true;
            this.txtOut4.Size = new System.Drawing.Size(129, 14);
            this.txtOut4.TabIndex = 95;
            this.txtOut4.Text = "0";
            this.txtOut4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut3
            // 
            this.txtOut3.BackColor = System.Drawing.Color.White;
            this.txtOut3.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut3.ForeColor = System.Drawing.Color.Black;
            this.txtOut3.Location = new System.Drawing.Point(210, 134);
            this.txtOut3.Name = "txtOut3";
            this.txtOut3.ReadOnly = true;
            this.txtOut3.Size = new System.Drawing.Size(129, 14);
            this.txtOut3.TabIndex = 95;
            this.txtOut3.Text = "0";
            this.txtOut3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut2
            // 
            this.txtOut2.BackColor = System.Drawing.Color.White;
            this.txtOut2.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut2.ForeColor = System.Drawing.Color.Black;
            this.txtOut2.Location = new System.Drawing.Point(210, 104);
            this.txtOut2.Name = "txtOut2";
            this.txtOut2.ReadOnly = true;
            this.txtOut2.Size = new System.Drawing.Size(129, 14);
            this.txtOut2.TabIndex = 95;
            this.txtOut2.Text = "0";
            this.txtOut2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut1
            // 
            this.txtOut1.BackColor = System.Drawing.Color.White;
            this.txtOut1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut1.ForeColor = System.Drawing.Color.Black;
            this.txtOut1.Location = new System.Drawing.Point(210, 74);
            this.txtOut1.Name = "txtOut1";
            this.txtOut1.ReadOnly = true;
            this.txtOut1.Size = new System.Drawing.Size(129, 14);
            this.txtOut1.TabIndex = 95;
            this.txtOut1.Text = "0";
            this.txtOut1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtOut9
            // 
            this.txtOut9.BackColor = System.Drawing.Color.White;
            this.txtOut9.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtOut9.ForeColor = System.Drawing.Color.Black;
            this.txtOut9.Location = new System.Drawing.Point(210, 401);
            this.txtOut9.Name = "txtOut9";
            this.txtOut9.ReadOnly = true;
            this.txtOut9.Size = new System.Drawing.Size(129, 14);
            this.txtOut9.TabIndex = 95;
            this.txtOut9.Text = "0";
            this.txtOut9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // panel26
            // 
            this.panel26.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel26.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel26.ForeColor = System.Drawing.Color.Black;
            this.panel26.Location = new System.Drawing.Point(880, 35);
            this.panel26.Name = "panel26";
            this.panel26.Size = new System.Drawing.Size(1, 250);
            this.panel26.TabIndex = 94;
            // 
            // panel25
            // 
            this.panel25.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel25.ForeColor = System.Drawing.Color.Black;
            this.panel25.Location = new System.Drawing.Point(530, 35);
            this.panel25.Name = "panel25";
            this.panel25.Size = new System.Drawing.Size(1, 250);
            this.panel25.TabIndex = 94;
            // 
            // panel8
            // 
            this.panel8.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel8.ForeColor = System.Drawing.Color.Black;
            this.panel8.Location = new System.Drawing.Point(180, 35);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(1, 250);
            this.panel8.TabIndex = 94;
            // 
            // panel75
            // 
            this.panel75.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel75.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel75.Controls.Add(this.panel34);
            this.panel75.ForeColor = System.Drawing.Color.Black;
            this.panel75.Location = new System.Drawing.Point(180, 332);
            this.panel75.Name = "panel75";
            this.panel75.Size = new System.Drawing.Size(1, 270);
            this.panel75.TabIndex = 94;
            // 
            // panel34
            // 
            this.panel34.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel34.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel34.ForeColor = System.Drawing.Color.Black;
            this.panel34.Location = new System.Drawing.Point(0, 0);
            this.panel34.Name = "panel34";
            this.panel34.Size = new System.Drawing.Size(1, 270);
            this.panel34.TabIndex = 95;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.LemonChiffon;
            this.label1.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label1.ForeColor = System.Drawing.Color.Black;
            this.label1.Location = new System.Drawing.Point(80, 45);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(31, 12);
            this.label1.TabIndex = 93;
            this.label1.Text = "항목";
            // 
            // label53
            // 
            this.label53.AutoSize = true;
            this.label53.BackColor = System.Drawing.Color.LemonChiffon;
            this.label53.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label53.ForeColor = System.Drawing.Color.Black;
            this.label53.Location = new System.Drawing.Point(80, 342);
            this.label53.Name = "label53";
            this.label53.Size = new System.Drawing.Size(31, 12);
            this.label53.TabIndex = 93;
            this.label53.Text = "구분";
            // 
            // label95
            // 
            this.label95.AutoSize = true;
            this.label95.BackColor = System.Drawing.Color.Gainsboro;
            this.label95.ForeColor = System.Drawing.Color.Black;
            this.label95.Location = new System.Drawing.Point(35, 582);
            this.label95.Name = "label95";
            this.label95.Size = new System.Drawing.Size(29, 12);
            this.label95.TabIndex = 92;
            this.label95.Text = "소계";
            // 
            // label94
            // 
            this.label94.AutoSize = true;
            this.label94.BackColor = System.Drawing.Color.Gainsboro;
            this.label94.ForeColor = System.Drawing.Color.Black;
            this.label94.Location = new System.Drawing.Point(35, 265);
            this.label94.Name = "label94";
            this.label94.Size = new System.Drawing.Size(29, 12);
            this.label94.TabIndex = 92;
            this.label94.Text = "소계";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.ForeColor = System.Drawing.Color.Black;
            this.label8.Location = new System.Drawing.Point(35, 235);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(105, 12);
            this.label8.TabIndex = 92;
            this.label8.Text = "직영매장 판매수익";
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.ForeColor = System.Drawing.Color.Black;
            this.label18.Location = new System.Drawing.Point(35, 209);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(136, 12);
            this.label18.TabIndex = 92;
            this.label18.Text = "추가수익(현금+Volume)";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.ForeColor = System.Drawing.Color.Black;
            this.label7.Location = new System.Drawing.Point(35, 197);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(121, 12);
            this.label7.TabIndex = 92;
            this.label7.Text = "유통모델 매입에 따른";
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.ForeColor = System.Drawing.Color.Black;
            this.label17.Location = new System.Drawing.Point(35, 175);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(81, 12);
            this.label17.TabIndex = 92;
            this.label17.Text = "따른 추가수익";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.ForeColor = System.Drawing.Color.Black;
            this.label6.Location = new System.Drawing.Point(35, 163);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(105, 12);
            this.label6.TabIndex = 92;
            this.label6.Text = "사업자모델 매입에";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.ForeColor = System.Drawing.Color.Black;
            this.label5.Location = new System.Drawing.Point(35, 135);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(89, 12);
            this.label5.TabIndex = 92;
            this.label5.Text = "업무취급수수료";
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.ForeColor = System.Drawing.Color.Black;
            this.label16.Location = new System.Drawing.Point(35, 552);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(93, 12);
            this.label16.TabIndex = 92;
            this.label16.Text = "기타 판매관리비";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.ForeColor = System.Drawing.Color.Black;
            this.label14.Location = new System.Drawing.Point(35, 522);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(41, 12);
            this.label14.TabIndex = 92;
            this.label14.Text = "법인세";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.ForeColor = System.Drawing.Color.Black;
            this.label13.Location = new System.Drawing.Point(35, 492);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(41, 12);
            this.label13.TabIndex = 92;
            this.label13.Text = "부가세";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.ForeColor = System.Drawing.Color.Black;
            this.label12.Location = new System.Drawing.Point(35, 462);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(53, 12);
            this.label12.TabIndex = 92;
            this.label12.Text = "이자비용";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.ForeColor = System.Drawing.Color.Black;
            this.label11.Location = new System.Drawing.Point(35, 432);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(41, 12);
            this.label11.TabIndex = 92;
            this.label11.Text = "임차료";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.ForeColor = System.Drawing.Color.Black;
            this.label10.Location = new System.Drawing.Point(35, 396);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(107, 24);
            this.label10.TabIndex = 92;
            this.label10.Text = "인건비\r\n(급여, 복리후생비)";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.ForeColor = System.Drawing.Color.Black;
            this.label9.Location = new System.Drawing.Point(35, 372);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(93, 12);
            this.label9.TabIndex = 92;
            this.label9.Text = "대리점 투자비용";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.ForeColor = System.Drawing.Color.Black;
            this.label15.Location = new System.Drawing.Point(36, 105);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(82, 12);
            this.label15.TabIndex = 92;
            this.label15.Text = "CS관리수수료";
            // 
            // label26
            // 
            this.label26.AutoSize = true;
            this.label26.ForeColor = System.Drawing.Color.Black;
            this.label26.Location = new System.Drawing.Point(35, 75);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(101, 12);
            this.label26.TabIndex = 92;
            this.label26.Text = "누적가입자수수료";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
            this.label4.ForeColor = System.Drawing.Color.Black;
            this.label4.Location = new System.Drawing.Point(25, 312);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(42, 16);
            this.label4.TabIndex = 91;
            this.label4.Text = "비용";
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
            this.label25.ForeColor = System.Drawing.Color.Black;
            this.label25.Location = new System.Drawing.Point(25, 15);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(42, 16);
            this.label25.TabIndex = 91;
            this.label25.Text = "수익";
            // 
            // panel13
            // 
            this.panel13.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel13.ForeColor = System.Drawing.Color.Black;
            this.panel13.Location = new System.Drawing.Point(0, 512);
            this.panel13.Name = "panel13";
            this.panel13.Size = new System.Drawing.Size(1240, 2);
            this.panel13.TabIndex = 90;
            // 
            // panel12
            // 
            this.panel12.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel12.ForeColor = System.Drawing.Color.Black;
            this.panel12.Location = new System.Drawing.Point(0, 482);
            this.panel12.Name = "panel12";
            this.panel12.Size = new System.Drawing.Size(1240, 2);
            this.panel12.TabIndex = 90;
            // 
            // panel11
            // 
            this.panel11.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel11.ForeColor = System.Drawing.Color.Black;
            this.panel11.Location = new System.Drawing.Point(0, 452);
            this.panel11.Name = "panel11";
            this.panel11.Size = new System.Drawing.Size(1240, 2);
            this.panel11.TabIndex = 90;
            // 
            // panel10
            // 
            this.panel10.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel10.ForeColor = System.Drawing.Color.Black;
            this.panel10.Location = new System.Drawing.Point(0, 392);
            this.panel10.Name = "panel10";
            this.panel10.Size = new System.Drawing.Size(1240, 2);
            this.panel10.TabIndex = 90;
            // 
            // panel38
            // 
            this.panel38.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel38.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel38.ForeColor = System.Drawing.Color.Black;
            this.panel38.Location = new System.Drawing.Point(0, 572);
            this.panel38.Name = "panel38";
            this.panel38.Size = new System.Drawing.Size(1240, 2);
            this.panel38.TabIndex = 90;
            // 
            // panel9
            // 
            this.panel9.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel9.ForeColor = System.Drawing.Color.Black;
            this.panel9.Location = new System.Drawing.Point(0, 422);
            this.panel9.Name = "panel9";
            this.panel9.Size = new System.Drawing.Size(1240, 2);
            this.panel9.TabIndex = 90;
            // 
            // panel3
            // 
            this.panel3.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel3.ForeColor = System.Drawing.Color.Black;
            this.panel3.Location = new System.Drawing.Point(0, 542);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(1240, 2);
            this.panel3.TabIndex = 90;
            // 
            // panel155
            // 
            this.panel155.BackColor = System.Drawing.Color.Gainsboro;
            this.panel155.Location = new System.Drawing.Point(1, 257);
            this.panel155.Name = "panel155";
            this.panel155.Size = new System.Drawing.Size(1238, 28);
            this.panel155.TabIndex = 291;
            // 
            // panel152
            // 
            this.panel152.BackColor = System.Drawing.Color.Gainsboro;
            this.panel152.Location = new System.Drawing.Point(2, 618);
            this.panel152.Name = "panel152";
            this.panel152.Size = new System.Drawing.Size(1238, 28);
            this.panel152.TabIndex = 293;
            // 
            // panel151
            // 
            this.panel151.BackColor = System.Drawing.Color.Gainsboro;
            this.panel151.Location = new System.Drawing.Point(2, 574);
            this.panel151.Name = "panel151";
            this.panel151.Size = new System.Drawing.Size(1238, 28);
            this.panel151.TabIndex = 292;
            // 
            // panel161
            // 
            this.panel161.BackColor = System.Drawing.Color.LemonChiffon;
            this.panel161.Location = new System.Drawing.Point(2, 38);
            this.panel161.Name = "panel161";
            this.panel161.Size = new System.Drawing.Size(1238, 28);
            this.panel161.TabIndex = 292;
            // 
            // panel162
            // 
            this.panel162.BackColor = System.Drawing.Color.LemonChiffon;
            this.panel162.Location = new System.Drawing.Point(1, 335);
            this.panel162.Name = "panel162";
            this.panel162.Size = new System.Drawing.Size(1238, 28);
            this.panel162.TabIndex = 293;
            // 
            // tabPage2
            // 
            this.tabPage2.BackColor = System.Drawing.Color.White;
            this.tabPage2.Controls.Add(this.pnlChart2);
            this.tabPage2.Controls.Add(this.label97);
            this.tabPage2.Controls.Add(this.label98);
            this.tabPage2.Controls.Add(this.label99);
            this.tabPage2.Controls.Add(this.label100);
            this.tabPage2.Controls.Add(this.label101);
            this.tabPage2.Controls.Add(this.label106);
            this.tabPage2.Controls.Add(this.lblTitle6);
            this.tabPage2.Controls.Add(this.lblTitle5);
            this.tabPage2.Controls.Add(this.lblTitle4);
            this.tabPage2.Controls.Add(this.panel121);
            this.tabPage2.Controls.Add(this.pictureBox1);
            this.tabPage2.Controls.Add(this.panel125);
            this.tabPage2.Controls.Add(this.panel129);
            this.tabPage2.Controls.Add(this.panel133);
            this.tabPage2.Controls.Add(this.txtWOut84);
            this.tabPage2.Controls.Add(this.label103);
            this.tabPage2.Controls.Add(this.txtWOut56);
            this.tabPage2.Controls.Add(this.label102);
            this.tabPage2.Controls.Add(this.txtWOut28);
            this.tabPage2.Controls.Add(this.label76);
            this.tabPage2.Controls.Add(this.txtWOut70);
            this.tabPage2.Controls.Add(this.label19);
            this.tabPage2.Controls.Add(this.txtWOut42);
            this.tabPage2.Controls.Add(this.label75);
            this.tabPage2.Controls.Add(this.txtWOut14);
            this.tabPage2.Controls.Add(this.label20);
            this.tabPage2.Controls.Add(this.panel136);
            this.tabPage2.Controls.Add(this.label74);
            this.tabPage2.Controls.Add(this.label120);
            this.tabPage2.Controls.Add(this.label21);
            this.tabPage2.Controls.Add(this.label73);
            this.tabPage2.Controls.Add(this.label67);
            this.tabPage2.Controls.Add(this.label72);
            this.tabPage2.Controls.Add(this.label68);
            this.tabPage2.Controls.Add(this.label71);
            this.tabPage2.Controls.Add(this.label69);
            this.tabPage2.Controls.Add(this.label70);
            this.tabPage2.Controls.Add(this.label90);
            this.tabPage2.Controls.Add(this.txtWOut83);
            this.tabPage2.Controls.Add(this.txtWOut82);
            this.tabPage2.Controls.Add(this.txtWOut81);
            this.tabPage2.Controls.Add(this.txtWOut80);
            this.tabPage2.Controls.Add(this.txtWOut79);
            this.tabPage2.Controls.Add(this.txtWOut78);
            this.tabPage2.Controls.Add(this.txtWOut77);
            this.tabPage2.Controls.Add(this.txtWOut55);
            this.tabPage2.Controls.Add(this.txtWOut54);
            this.tabPage2.Controls.Add(this.txtWOut53);
            this.tabPage2.Controls.Add(this.txtWOut52);
            this.tabPage2.Controls.Add(this.txtWOut51);
            this.tabPage2.Controls.Add(this.txtWOut50);
            this.tabPage2.Controls.Add(this.txtWOut49);
            this.tabPage2.Controls.Add(this.txtWOut27);
            this.tabPage2.Controls.Add(this.txtWOut26);
            this.tabPage2.Controls.Add(this.txtWOut69);
            this.tabPage2.Controls.Add(this.txtWOut68);
            this.tabPage2.Controls.Add(this.txtWOut25);
            this.tabPage2.Controls.Add(this.txtWOut67);
            this.tabPage2.Controls.Add(this.txtWOut24);
            this.tabPage2.Controls.Add(this.txtWOut66);
            this.tabPage2.Controls.Add(this.txtWOut23);
            this.tabPage2.Controls.Add(this.txtWOut65);
            this.tabPage2.Controls.Add(this.txtWOut41);
            this.tabPage2.Controls.Add(this.txtWOut40);
            this.tabPage2.Controls.Add(this.txtWOut22);
            this.tabPage2.Controls.Add(this.txtWOut39);
            this.tabPage2.Controls.Add(this.txtWOut64);
            this.tabPage2.Controls.Add(this.txtWOut38);
            this.tabPage2.Controls.Add(this.txtWOut37);
            this.tabPage2.Controls.Add(this.txtWOut36);
            this.tabPage2.Controls.Add(this.txtWOut21);
            this.tabPage2.Controls.Add(this.txtWOut63);
            this.tabPage2.Controls.Add(this.txtWOut35);
            this.tabPage2.Controls.Add(this.txtWOut75);
            this.tabPage2.Controls.Add(this.txtWOut74);
            this.tabPage2.Controls.Add(this.txtWOut73);
            this.tabPage2.Controls.Add(this.txtWOut72);
            this.tabPage2.Controls.Add(this.txtWOut76);
            this.tabPage2.Controls.Add(this.txtWOut71);
            this.tabPage2.Controls.Add(this.txtWOut47);
            this.tabPage2.Controls.Add(this.txtWOut46);
            this.tabPage2.Controls.Add(this.txtWOut45);
            this.tabPage2.Controls.Add(this.txtWOut44);
            this.tabPage2.Controls.Add(this.txtWOut48);
            this.tabPage2.Controls.Add(this.txtWOut43);
            this.tabPage2.Controls.Add(this.txtWOut61);
            this.tabPage2.Controls.Add(this.txtWOut60);
            this.tabPage2.Controls.Add(this.txtWOut59);
            this.tabPage2.Controls.Add(this.txtWOut33);
            this.tabPage2.Controls.Add(this.txtWOut32);
            this.tabPage2.Controls.Add(this.txtWOut58);
            this.tabPage2.Controls.Add(this.txtWOut31);
            this.tabPage2.Controls.Add(this.txtWOut20);
            this.tabPage2.Controls.Add(this.txtWOut15);
            this.tabPage2.Controls.Add(this.txtWOut30);
            this.tabPage2.Controls.Add(this.txtWOut62);
            this.tabPage2.Controls.Add(this.txtWOut57);
            this.tabPage2.Controls.Add(this.txtWOut34);
            this.tabPage2.Controls.Add(this.txtWOut29);
            this.tabPage2.Controls.Add(this.txtWOut19);
            this.tabPage2.Controls.Add(this.txtWOut18);
            this.tabPage2.Controls.Add(this.txtWOut5);
            this.tabPage2.Controls.Add(this.txtWOut4);
            this.tabPage2.Controls.Add(this.txtWOut17);
            this.tabPage2.Controls.Add(this.txtWOut3);
            this.tabPage2.Controls.Add(this.txtWOut16);
            this.tabPage2.Controls.Add(this.txtWOut2);
            this.tabPage2.Controls.Add(this.txtWOut6);
            this.tabPage2.Controls.Add(this.txtWOut1);
            this.tabPage2.Controls.Add(this.txtWOut13);
            this.tabPage2.Controls.Add(this.txtWOut12);
            this.tabPage2.Controls.Add(this.txtWOut11);
            this.tabPage2.Controls.Add(this.txtWOut10);
            this.tabPage2.Controls.Add(this.txtWOut9);
            this.tabPage2.Controls.Add(this.txtWOut8);
            this.tabPage2.Controls.Add(this.txtWOut7);
            this.tabPage2.Controls.Add(this.label22);
            this.tabPage2.Controls.Add(this.label24);
            this.tabPage2.Controls.Add(this.label27);
            this.tabPage2.Controls.Add(this.label28);
            this.tabPage2.Controls.Add(this.label29);
            this.tabPage2.Controls.Add(this.label32);
            this.tabPage2.Controls.Add(this.label83);
            this.tabPage2.Controls.Add(this.label33);
            this.tabPage2.Controls.Add(this.label34);
            this.tabPage2.Controls.Add(this.label35);
            this.tabPage2.Controls.Add(this.label36);
            this.tabPage2.Controls.Add(this.label37);
            this.tabPage2.Controls.Add(this.label38);
            this.tabPage2.Controls.Add(this.label39);
            this.tabPage2.Controls.Add(this.label40);
            this.tabPage2.Controls.Add(this.pictureBox2);
            this.tabPage2.Controls.Add(this.panel15);
            this.tabPage2.Controls.Add(this.panel45);
            this.tabPage2.Controls.Add(this.panel46);
            this.tabPage2.Controls.Add(this.panel84);
            this.tabPage2.Controls.Add(this.panel86);
            this.tabPage2.Controls.Add(this.panel23);
            this.tabPage2.Controls.Add(this.panel61);
            this.tabPage2.Controls.Add(this.panel28);
            this.tabPage2.Controls.Add(this.panel90);
            this.tabPage2.Controls.Add(this.panel88);
            this.tabPage2.Controls.Add(this.panel54);
            this.tabPage2.Controls.Add(this.panel42);
            this.tabPage2.Controls.Add(this.panel40);
            this.tabPage2.Controls.Add(this.panel14);
            this.tabPage2.Controls.Add(this.panel16);
            this.tabPage2.Controls.Add(this.panel17);
            this.tabPage2.Controls.Add(this.panel18);
            this.tabPage2.Controls.Add(this.panel19);
            this.tabPage2.Controls.Add(this.panel20);
            this.tabPage2.Controls.Add(this.panel72);
            this.tabPage2.Controls.Add(this.panel71);
            this.tabPage2.Controls.Add(this.panel21);
            this.tabPage2.Controls.Add(this.panel22);
            this.tabPage2.Controls.Add(this.panel24);
            this.tabPage2.Controls.Add(this.panel27);
            this.tabPage2.Controls.Add(this.panel153);
            this.tabPage2.Controls.Add(this.panel154);
            this.tabPage2.Controls.Add(this.panel156);
            this.tabPage2.Controls.Add(this.panel163);
            this.tabPage2.Controls.Add(this.panel164);
            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(1246, 648);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "          도매          ";
            // 
            // pnlChart2
            // 
            this.pnlChart2.Controls.Add(this.label86);
            this.pnlChart2.Controls.Add(this.label87);
            this.pnlChart2.Controls.Add(this.chart5);
            this.pnlChart2.Controls.Add(this.chart2);
            this.pnlChart2.Location = new System.Drawing.Point(0, 37);
            this.pnlChart2.Name = "pnlChart2";
            this.pnlChart2.Size = new System.Drawing.Size(1241, 634);
            this.pnlChart2.TabIndex = 266;
            this.pnlChart2.Visible = false;
            // 
            // label86
            // 
            this.label86.AutoSize = true;
            this.label86.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.label86.ForeColor = System.Drawing.Color.Black;
            this.label86.Location = new System.Drawing.Point(33, 422);
            this.label86.Name = "label86";
            this.label86.Size = new System.Drawing.Size(23, 45);
            this.label86.TabIndex = 345;
            this.label86.Text = "비\r\n\r\n용";
            // 
            // label87
            // 
            this.label87.AutoSize = true;
            this.label87.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.label87.ForeColor = System.Drawing.Color.Black;
            this.label87.Location = new System.Drawing.Point(33, 132);
            this.label87.Name = "label87";
            this.label87.Size = new System.Drawing.Size(23, 45);
            this.label87.TabIndex = 344;
            this.label87.Text = "수\r\n\r\n익";
            // 
            // chart5
            // 
            chartArea9.Name = "ChartArea1";
            this.chart5.ChartAreas.Add(chartArea9);
            legend9.Name = "Legend1";
            this.chart5.Legends.Add(legend9);
            this.chart5.Location = new System.Drawing.Point(67, 318);
            this.chart5.Name = "chart5";
            series25.ChartArea = "ChartArea1";
            series25.Legend = "Legend1";
            series25.Name = "Series1";
            series25.Points.Add(dataPoint65);
            series25.Points.Add(dataPoint66);
            series25.Points.Add(dataPoint67);
            series25.Points.Add(dataPoint68);
            series25.Points.Add(dataPoint69);
            series25.Points.Add(dataPoint70);
            series25.Points.Add(dataPoint71);
            series25.Points.Add(dataPoint72);
            series26.ChartArea = "ChartArea1";
            series26.Legend = "Legend1";
            series26.Name = "Series2";
            series26.Points.Add(dataPoint73);
            series26.Points.Add(dataPoint74);
            series26.Points.Add(dataPoint75);
            series26.Points.Add(dataPoint76);
            series26.Points.Add(dataPoint77);
            series26.Points.Add(dataPoint78);
            series26.Points.Add(dataPoint79);
            series26.Points.Add(dataPoint80);
            series27.ChartArea = "ChartArea1";
            series27.Legend = "Legend1";
            series27.Name = "Series3";
            this.chart5.Series.Add(series25);
            this.chart5.Series.Add(series26);
            this.chart5.Series.Add(series27);
            this.chart5.Size = new System.Drawing.Size(1151, 299);
            this.chart5.TabIndex = 342;
            this.chart5.Text = "chart5";
            // 
            // chart2
            // 
            chartArea10.Name = "ChartArea1";
            this.chart2.ChartAreas.Add(chartArea10);
            legend10.Name = "Legend1";
            this.chart2.Legends.Add(legend10);
            this.chart2.Location = new System.Drawing.Point(67, 2);
            this.chart2.Name = "chart2";
            series28.ChartArea = "ChartArea1";
            series28.Legend = "Legend1";
            series28.Name = "Series1";
            series28.Points.Add(dataPoint81);
            series28.Points.Add(dataPoint82);
            series28.Points.Add(dataPoint83);
            series28.Points.Add(dataPoint84);
            series28.Points.Add(dataPoint85);
            series28.Points.Add(dataPoint86);
            series28.Points.Add(dataPoint87);
            series28.Points.Add(dataPoint88);
            series29.ChartArea = "ChartArea1";
            series29.Legend = "Legend1";
            series29.Name = "Series2";
            series29.Points.Add(dataPoint89);
            series29.Points.Add(dataPoint90);
            series29.Points.Add(dataPoint91);
            series29.Points.Add(dataPoint92);
            series29.Points.Add(dataPoint93);
            series29.Points.Add(dataPoint94);
            series29.Points.Add(dataPoint95);
            series29.Points.Add(dataPoint96);
            series30.ChartArea = "ChartArea1";
            series30.Legend = "Legend1";
            series30.Name = "Series3";
            this.chart2.Series.Add(series28);
            this.chart2.Series.Add(series29);
            this.chart2.Series.Add(series30);
            this.chart2.Size = new System.Drawing.Size(1151, 299);
            this.chart2.TabIndex = 341;
            this.chart2.Text = "chart5";
            // 
            // label97
            // 
            this.label97.AutoSize = true;
            this.label97.ForeColor = System.Drawing.Color.Black;
            this.label97.Location = new System.Drawing.Point(1177, 317);
            this.label97.Name = "label97";
            this.label97.Size = new System.Drawing.Size(63, 12);
            this.label97.TabIndex = 353;
            this.label97.Text = "(단위 : 원)";
            // 
            // label98
            // 
            this.label98.AutoSize = true;
            this.label98.ForeColor = System.Drawing.Color.Black;
            this.label98.Location = new System.Drawing.Point(816, 317);
            this.label98.Name = "label98";
            this.label98.Size = new System.Drawing.Size(63, 12);
            this.label98.TabIndex = 352;
            this.label98.Text = "(단위 : 원)";
            // 
            // label99
            // 
            this.label99.AutoSize = true;
            this.label99.ForeColor = System.Drawing.Color.Black;
            this.label99.Location = new System.Drawing.Point(466, 317);
            this.label99.Name = "label99";
            this.label99.Size = new System.Drawing.Size(63, 12);
            this.label99.TabIndex = 351;
            this.label99.Text = "(단위 : 원)";
            // 
            // label100
            // 
            this.label100.AutoSize = true;
            this.label100.ForeColor = System.Drawing.Color.Black;
            this.label100.Location = new System.Drawing.Point(1174, 20);
            this.label100.Name = "label100";
            this.label100.Size = new System.Drawing.Size(63, 12);
            this.label100.TabIndex = 350;
            this.label100.Text = "(단위 : 원)";
            // 
            // label101
            // 
            this.label101.AutoSize = true;
            this.label101.ForeColor = System.Drawing.Color.Black;
            this.label101.Location = new System.Drawing.Point(816, 20);
            this.label101.Name = "label101";
            this.label101.Size = new System.Drawing.Size(63, 12);
            this.label101.TabIndex = 349;
            this.label101.Text = "(단위 : 원)";
            // 
            // label106
            // 
            this.label106.AutoSize = true;
            this.label106.ForeColor = System.Drawing.Color.Black;
            this.label106.Location = new System.Drawing.Point(466, 20);
            this.label106.Name = "label106";
            this.label106.Size = new System.Drawing.Size(63, 12);
            this.label106.TabIndex = 348;
            this.label106.Text = "(단위 : 원)";
            // 
            // lblTitle6
            // 
            this.lblTitle6.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle6.ForeColor = System.Drawing.Color.Black;
            this.lblTitle6.Location = new System.Drawing.Point(878, 15);
            this.lblTitle6.Name = "lblTitle6";
            this.lblTitle6.Size = new System.Drawing.Size(355, 15);
            this.lblTitle6.TabIndex = 344;
            this.lblTitle6.Text = "시뮬레이션 당대리점";
            this.lblTitle6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblTitle5
            // 
            this.lblTitle5.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle5.ForeColor = System.Drawing.Color.Black;
            this.lblTitle5.Location = new System.Drawing.Point(528, 15);
            this.lblTitle5.Name = "lblTitle5";
            this.lblTitle5.Size = new System.Drawing.Size(351, 15);
            this.lblTitle5.TabIndex = 343;
            this.lblTitle5.Text = "당대리점";
            this.lblTitle5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblTitle4
            // 
            this.lblTitle4.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle4.ForeColor = System.Drawing.Color.Black;
            this.lblTitle4.Location = new System.Drawing.Point(178, 15);
            this.lblTitle4.Name = "lblTitle4";
            this.lblTitle4.Size = new System.Drawing.Size(351, 15);
            this.lblTitle4.TabIndex = 342;
            this.lblTitle4.Text = "업계평균";
            this.lblTitle4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // panel121
            // 
            this.panel121.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel121.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel121.Controls.Add(this.panel122);
            this.panel121.Controls.Add(this.panel124);
            this.panel121.ForeColor = System.Drawing.Color.Black;
            this.panel121.Location = new System.Drawing.Point(881, 615);
            this.panel121.Name = "panel121";
            this.panel121.Size = new System.Drawing.Size(1, 30);
            this.panel121.TabIndex = 264;
            // 
            // panel122
            // 
            this.panel122.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel122.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel122.Controls.Add(this.panel123);
            this.panel122.ForeColor = System.Drawing.Color.Black;
            this.panel122.Location = new System.Drawing.Point(0, 0);
            this.panel122.Name = "panel122";
            this.panel122.Size = new System.Drawing.Size(1, 270);
            this.panel122.TabIndex = 96;
            // 
            // panel123
            // 
            this.panel123.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel123.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel123.ForeColor = System.Drawing.Color.Black;
            this.panel123.Location = new System.Drawing.Point(0, 0);
            this.panel123.Name = "panel123";
            this.panel123.Size = new System.Drawing.Size(1, 270);
            this.panel123.TabIndex = 95;
            // 
            // panel124
            // 
            this.panel124.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel124.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel124.ForeColor = System.Drawing.Color.Black;
            this.panel124.Location = new System.Drawing.Point(0, 0);
            this.panel124.Name = "panel124";
            this.panel124.Size = new System.Drawing.Size(1, 270);
            this.panel124.TabIndex = 95;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::KIWI.Properties.Resources.data1;
            this.pictureBox1.Location = new System.Drawing.Point(109, 8);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(29, 23);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 220;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // panel125
            // 
            this.panel125.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel125.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel125.Controls.Add(this.panel126);
            this.panel125.Controls.Add(this.panel128);
            this.panel125.ForeColor = System.Drawing.Color.Black;
            this.panel125.Location = new System.Drawing.Point(531, 615);
            this.panel125.Name = "panel125";
            this.panel125.Size = new System.Drawing.Size(1, 30);
            this.panel125.TabIndex = 255;
            // 
            // panel126
            // 
            this.panel126.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel126.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel126.Controls.Add(this.panel127);
            this.panel126.ForeColor = System.Drawing.Color.Black;
            this.panel126.Location = new System.Drawing.Point(0, 0);
            this.panel126.Name = "panel126";
            this.panel126.Size = new System.Drawing.Size(1, 270);
            this.panel126.TabIndex = 96;
            // 
            // panel127
            // 
            this.panel127.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel127.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel127.ForeColor = System.Drawing.Color.Black;
            this.panel127.Location = new System.Drawing.Point(0, 0);
            this.panel127.Name = "panel127";
            this.panel127.Size = new System.Drawing.Size(1, 270);
            this.panel127.TabIndex = 95;
            // 
            // panel128
            // 
            this.panel128.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel128.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel128.ForeColor = System.Drawing.Color.Black;
            this.panel128.Location = new System.Drawing.Point(0, 0);
            this.panel128.Name = "panel128";
            this.panel128.Size = new System.Drawing.Size(1, 270);
            this.panel128.TabIndex = 95;
            // 
            // panel129
            // 
            this.panel129.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel129.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel129.Controls.Add(this.panel130);
            this.panel129.Controls.Add(this.panel132);
            this.panel129.ForeColor = System.Drawing.Color.Black;
            this.panel129.Location = new System.Drawing.Point(181, 617);
            this.panel129.Name = "panel129";
            this.panel129.Size = new System.Drawing.Size(1, 30);
            this.panel129.TabIndex = 254;
            // 
            // panel130
            // 
            this.panel130.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel130.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel130.Controls.Add(this.panel131);
            this.panel130.ForeColor = System.Drawing.Color.Black;
            this.panel130.Location = new System.Drawing.Point(0, 0);
            this.panel130.Name = "panel130";
            this.panel130.Size = new System.Drawing.Size(1, 270);
            this.panel130.TabIndex = 96;
            // 
            // panel131
            // 
            this.panel131.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel131.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel131.ForeColor = System.Drawing.Color.Black;
            this.panel131.Location = new System.Drawing.Point(0, 0);
            this.panel131.Name = "panel131";
            this.panel131.Size = new System.Drawing.Size(1, 270);
            this.panel131.TabIndex = 95;
            // 
            // panel132
            // 
            this.panel132.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel132.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel132.ForeColor = System.Drawing.Color.Black;
            this.panel132.Location = new System.Drawing.Point(0, 0);
            this.panel132.Name = "panel132";
            this.panel132.Size = new System.Drawing.Size(1, 270);
            this.panel132.TabIndex = 95;
            // 
            // panel133
            // 
            this.panel133.BackColor = System.Drawing.Color.LightSalmon;
            this.panel133.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel133.Controls.Add(this.panel134);
            this.panel133.ForeColor = System.Drawing.Color.Black;
            this.panel133.Location = new System.Drawing.Point(1, 615);
            this.panel133.Name = "panel133";
            this.panel133.Size = new System.Drawing.Size(1240, 3);
            this.panel133.TabIndex = 257;
            // 
            // panel134
            // 
            this.panel134.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel134.Location = new System.Drawing.Point(0, 20);
            this.panel134.Name = "panel134";
            this.panel134.Size = new System.Drawing.Size(698, 5);
            this.panel134.TabIndex = 18;
            // 
            // txtWOut84
            // 
            this.txtWOut84.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut84.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut84.ForeColor = System.Drawing.Color.Black;
            this.txtWOut84.Location = new System.Drawing.Point(1081, 625);
            this.txtWOut84.Name = "txtWOut84";
            this.txtWOut84.ReadOnly = true;
            this.txtWOut84.Size = new System.Drawing.Size(129, 14);
            this.txtWOut84.TabIndex = 261;
            this.txtWOut84.Text = "0";
            this.txtWOut84.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label103
            // 
            this.label103.AutoSize = true;
            this.label103.BackColor = System.Drawing.Color.Gainsboro;
            this.label103.ForeColor = System.Drawing.Color.Black;
            this.label103.Location = new System.Drawing.Point(35, 582);
            this.label103.Name = "label103";
            this.label103.Size = new System.Drawing.Size(29, 12);
            this.label103.TabIndex = 224;
            this.label103.Text = "소계";
            // 
            // txtWOut56
            // 
            this.txtWOut56.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut56.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut56.ForeColor = System.Drawing.Color.Black;
            this.txtWOut56.Location = new System.Drawing.Point(721, 625);
            this.txtWOut56.Name = "txtWOut56";
            this.txtWOut56.ReadOnly = true;
            this.txtWOut56.Size = new System.Drawing.Size(129, 14);
            this.txtWOut56.TabIndex = 262;
            this.txtWOut56.Text = "0";
            this.txtWOut56.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label102
            // 
            this.label102.AutoSize = true;
            this.label102.BackColor = System.Drawing.Color.Gainsboro;
            this.label102.ForeColor = System.Drawing.Color.Black;
            this.label102.Location = new System.Drawing.Point(35, 205);
            this.label102.Name = "label102";
            this.label102.Size = new System.Drawing.Size(29, 12);
            this.label102.TabIndex = 224;
            this.label102.Text = "소계";
            // 
            // txtWOut28
            // 
            this.txtWOut28.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut28.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut28.ForeColor = System.Drawing.Color.Black;
            this.txtWOut28.Location = new System.Drawing.Point(371, 625);
            this.txtWOut28.Name = "txtWOut28";
            this.txtWOut28.ReadOnly = true;
            this.txtWOut28.Size = new System.Drawing.Size(129, 14);
            this.txtWOut28.TabIndex = 263;
            this.txtWOut28.Text = "0";
            this.txtWOut28.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label76
            // 
            this.label76.AutoSize = true;
            this.label76.BackColor = System.Drawing.Color.LemonChiffon;
            this.label76.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label76.ForeColor = System.Drawing.Color.Black;
            this.label76.Location = new System.Drawing.Point(1110, 342);
            this.label76.Name = "label76";
            this.label76.Size = new System.Drawing.Size(70, 12);
            this.label76.TabIndex = 220;
            this.label76.Text = "단위당금액";
            // 
            // txtWOut70
            // 
            this.txtWOut70.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut70.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut70.ForeColor = System.Drawing.Color.Black;
            this.txtWOut70.Location = new System.Drawing.Point(921, 625);
            this.txtWOut70.Name = "txtWOut70";
            this.txtWOut70.ReadOnly = true;
            this.txtWOut70.Size = new System.Drawing.Size(129, 14);
            this.txtWOut70.TabIndex = 259;
            this.txtWOut70.Text = "0";
            this.txtWOut70.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.BackColor = System.Drawing.Color.LemonChiffon;
            this.label19.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label19.ForeColor = System.Drawing.Color.Black;
            this.label19.Location = new System.Drawing.Point(1110, 45);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(70, 12);
            this.label19.TabIndex = 220;
            this.label19.Text = "단위당금액";
            // 
            // txtWOut42
            // 
            this.txtWOut42.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut42.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut42.ForeColor = System.Drawing.Color.Black;
            this.txtWOut42.Location = new System.Drawing.Point(561, 625);
            this.txtWOut42.Name = "txtWOut42";
            this.txtWOut42.ReadOnly = true;
            this.txtWOut42.Size = new System.Drawing.Size(129, 14);
            this.txtWOut42.TabIndex = 260;
            this.txtWOut42.Text = "0";
            this.txtWOut42.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label75
            // 
            this.label75.AutoSize = true;
            this.label75.BackColor = System.Drawing.Color.LemonChiffon;
            this.label75.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label75.ForeColor = System.Drawing.Color.Black;
            this.label75.Location = new System.Drawing.Point(970, 342);
            this.label75.Name = "label75";
            this.label75.Size = new System.Drawing.Size(31, 12);
            this.label75.TabIndex = 223;
            this.label75.Text = "총액";
            // 
            // txtWOut14
            // 
            this.txtWOut14.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut14.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut14.ForeColor = System.Drawing.Color.Black;
            this.txtWOut14.Location = new System.Drawing.Point(211, 625);
            this.txtWOut14.Name = "txtWOut14";
            this.txtWOut14.ReadOnly = true;
            this.txtWOut14.Size = new System.Drawing.Size(129, 14);
            this.txtWOut14.TabIndex = 258;
            this.txtWOut14.Text = "0";
            this.txtWOut14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.BackColor = System.Drawing.Color.LemonChiffon;
            this.label20.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label20.ForeColor = System.Drawing.Color.Black;
            this.label20.Location = new System.Drawing.Point(970, 45);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(31, 12);
            this.label20.TabIndex = 223;
            this.label20.Text = "총액";
            // 
            // panel136
            // 
            this.panel136.BackColor = System.Drawing.Color.LightSalmon;
            this.panel136.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel136.Controls.Add(this.panel137);
            this.panel136.ForeColor = System.Drawing.Color.Black;
            this.panel136.Location = new System.Drawing.Point(1, 645);
            this.panel136.Name = "panel136";
            this.panel136.Size = new System.Drawing.Size(1240, 3);
            this.panel136.TabIndex = 256;
            // 
            // panel137
            // 
            this.panel137.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel137.Location = new System.Drawing.Point(0, 20);
            this.panel137.Name = "panel137";
            this.panel137.Size = new System.Drawing.Size(698, 5);
            this.panel137.TabIndex = 18;
            // 
            // label74
            // 
            this.label74.AutoSize = true;
            this.label74.BackColor = System.Drawing.Color.LemonChiffon;
            this.label74.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label74.ForeColor = System.Drawing.Color.Black;
            this.label74.Location = new System.Drawing.Point(750, 342);
            this.label74.Name = "label74";
            this.label74.Size = new System.Drawing.Size(70, 12);
            this.label74.TabIndex = 221;
            this.label74.Text = "단위당금액";
            // 
            // label120
            // 
            this.label120.AutoSize = true;
            this.label120.BackColor = System.Drawing.Color.Gainsboro;
            this.label120.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Bold);
            this.label120.ForeColor = System.Drawing.Color.Black;
            this.label120.Location = new System.Drawing.Point(36, 626);
            this.label120.Name = "label120";
            this.label120.Size = new System.Drawing.Size(58, 14);
            this.label120.TabIndex = 253;
            this.label120.Text = "손익 계";
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.BackColor = System.Drawing.Color.LemonChiffon;
            this.label21.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label21.ForeColor = System.Drawing.Color.Black;
            this.label21.Location = new System.Drawing.Point(750, 45);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(70, 12);
            this.label21.TabIndex = 221;
            this.label21.Text = "단위당금액";
            // 
            // label73
            // 
            this.label73.AutoSize = true;
            this.label73.BackColor = System.Drawing.Color.LemonChiffon;
            this.label73.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label73.ForeColor = System.Drawing.Color.Black;
            this.label73.Location = new System.Drawing.Point(610, 342);
            this.label73.Name = "label73";
            this.label73.Size = new System.Drawing.Size(31, 12);
            this.label73.TabIndex = 222;
            this.label73.Text = "총액";
            // 
            // label67
            // 
            this.label67.AutoSize = true;
            this.label67.BackColor = System.Drawing.Color.LemonChiffon;
            this.label67.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label67.ForeColor = System.Drawing.Color.Black;
            this.label67.Location = new System.Drawing.Point(610, 45);
            this.label67.Name = "label67";
            this.label67.Size = new System.Drawing.Size(31, 12);
            this.label67.TabIndex = 222;
            this.label67.Text = "총액";
            // 
            // label72
            // 
            this.label72.AutoSize = true;
            this.label72.BackColor = System.Drawing.Color.LemonChiffon;
            this.label72.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label72.ForeColor = System.Drawing.Color.Black;
            this.label72.Location = new System.Drawing.Point(400, 342);
            this.label72.Name = "label72";
            this.label72.Size = new System.Drawing.Size(70, 12);
            this.label72.TabIndex = 218;
            this.label72.Text = "단위당금액";
            // 
            // label68
            // 
            this.label68.AutoSize = true;
            this.label68.BackColor = System.Drawing.Color.LemonChiffon;
            this.label68.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label68.ForeColor = System.Drawing.Color.Black;
            this.label68.Location = new System.Drawing.Point(400, 45);
            this.label68.Name = "label68";
            this.label68.Size = new System.Drawing.Size(70, 12);
            this.label68.TabIndex = 218;
            this.label68.Text = "단위당금액";
            // 
            // label71
            // 
            this.label71.AutoSize = true;
            this.label71.BackColor = System.Drawing.Color.LemonChiffon;
            this.label71.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label71.ForeColor = System.Drawing.Color.Black;
            this.label71.Location = new System.Drawing.Point(260, 342);
            this.label71.Name = "label71";
            this.label71.Size = new System.Drawing.Size(31, 12);
            this.label71.TabIndex = 219;
            this.label71.Text = "총액";
            // 
            // label69
            // 
            this.label69.AutoSize = true;
            this.label69.BackColor = System.Drawing.Color.LemonChiffon;
            this.label69.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label69.ForeColor = System.Drawing.Color.Black;
            this.label69.Location = new System.Drawing.Point(260, 45);
            this.label69.Name = "label69";
            this.label69.Size = new System.Drawing.Size(31, 12);
            this.label69.TabIndex = 219;
            this.label69.Text = "총액";
            // 
            // label70
            // 
            this.label70.AutoSize = true;
            this.label70.BackColor = System.Drawing.Color.LemonChiffon;
            this.label70.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label70.ForeColor = System.Drawing.Color.Black;
            this.label70.Location = new System.Drawing.Point(80, 45);
            this.label70.Name = "label70";
            this.label70.Size = new System.Drawing.Size(31, 12);
            this.label70.TabIndex = 217;
            this.label70.Text = "항목";
            // 
            // label90
            // 
            this.label90.AutoSize = true;
            this.label90.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
            this.label90.ForeColor = System.Drawing.Color.Black;
            this.label90.Location = new System.Drawing.Point(25, 15);
            this.label90.Name = "label90";
            this.label90.Size = new System.Drawing.Size(42, 16);
            this.label90.TabIndex = 178;
            this.label90.Text = "수익";
            // 
            // txtWOut83
            // 
            this.txtWOut83.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut83.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut83.ForeColor = System.Drawing.Color.Black;
            this.txtWOut83.Location = new System.Drawing.Point(1080, 581);
            this.txtWOut83.Name = "txtWOut83";
            this.txtWOut83.ReadOnly = true;
            this.txtWOut83.Size = new System.Drawing.Size(129, 14);
            this.txtWOut83.TabIndex = 203;
            this.txtWOut83.Text = "0";
            this.txtWOut83.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut82
            // 
            this.txtWOut82.BackColor = System.Drawing.Color.White;
            this.txtWOut82.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut82.ForeColor = System.Drawing.Color.Black;
            this.txtWOut82.Location = new System.Drawing.Point(1080, 551);
            this.txtWOut82.Name = "txtWOut82";
            this.txtWOut82.ReadOnly = true;
            this.txtWOut82.Size = new System.Drawing.Size(129, 14);
            this.txtWOut82.TabIndex = 203;
            this.txtWOut82.Text = "0";
            this.txtWOut82.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut81
            // 
            this.txtWOut81.BackColor = System.Drawing.Color.White;
            this.txtWOut81.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut81.ForeColor = System.Drawing.Color.Black;
            this.txtWOut81.Location = new System.Drawing.Point(1080, 521);
            this.txtWOut81.Name = "txtWOut81";
            this.txtWOut81.ReadOnly = true;
            this.txtWOut81.Size = new System.Drawing.Size(129, 14);
            this.txtWOut81.TabIndex = 203;
            this.txtWOut81.Text = "0";
            this.txtWOut81.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut80
            // 
            this.txtWOut80.BackColor = System.Drawing.Color.White;
            this.txtWOut80.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut80.ForeColor = System.Drawing.Color.Black;
            this.txtWOut80.Location = new System.Drawing.Point(1080, 491);
            this.txtWOut80.Name = "txtWOut80";
            this.txtWOut80.ReadOnly = true;
            this.txtWOut80.Size = new System.Drawing.Size(129, 14);
            this.txtWOut80.TabIndex = 203;
            this.txtWOut80.Text = "0";
            this.txtWOut80.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut79
            // 
            this.txtWOut79.BackColor = System.Drawing.Color.White;
            this.txtWOut79.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut79.ForeColor = System.Drawing.Color.Black;
            this.txtWOut79.Location = new System.Drawing.Point(1080, 461);
            this.txtWOut79.Name = "txtWOut79";
            this.txtWOut79.ReadOnly = true;
            this.txtWOut79.Size = new System.Drawing.Size(129, 14);
            this.txtWOut79.TabIndex = 203;
            this.txtWOut79.Text = "0";
            this.txtWOut79.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut78
            // 
            this.txtWOut78.BackColor = System.Drawing.Color.White;
            this.txtWOut78.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut78.ForeColor = System.Drawing.Color.Black;
            this.txtWOut78.Location = new System.Drawing.Point(1080, 431);
            this.txtWOut78.Name = "txtWOut78";
            this.txtWOut78.ReadOnly = true;
            this.txtWOut78.Size = new System.Drawing.Size(129, 14);
            this.txtWOut78.TabIndex = 203;
            this.txtWOut78.Text = "0";
            this.txtWOut78.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut77
            // 
            this.txtWOut77.BackColor = System.Drawing.Color.White;
            this.txtWOut77.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut77.ForeColor = System.Drawing.Color.Black;
            this.txtWOut77.Location = new System.Drawing.Point(1080, 401);
            this.txtWOut77.Name = "txtWOut77";
            this.txtWOut77.ReadOnly = true;
            this.txtWOut77.Size = new System.Drawing.Size(129, 14);
            this.txtWOut77.TabIndex = 203;
            this.txtWOut77.Text = "0";
            this.txtWOut77.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut55
            // 
            this.txtWOut55.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut55.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut55.ForeColor = System.Drawing.Color.Black;
            this.txtWOut55.Location = new System.Drawing.Point(720, 581);
            this.txtWOut55.Name = "txtWOut55";
            this.txtWOut55.ReadOnly = true;
            this.txtWOut55.Size = new System.Drawing.Size(129, 14);
            this.txtWOut55.TabIndex = 204;
            this.txtWOut55.Text = "0";
            this.txtWOut55.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut54
            // 
            this.txtWOut54.BackColor = System.Drawing.Color.White;
            this.txtWOut54.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut54.ForeColor = System.Drawing.Color.Black;
            this.txtWOut54.Location = new System.Drawing.Point(720, 551);
            this.txtWOut54.Name = "txtWOut54";
            this.txtWOut54.ReadOnly = true;
            this.txtWOut54.Size = new System.Drawing.Size(129, 14);
            this.txtWOut54.TabIndex = 204;
            this.txtWOut54.Text = "0";
            this.txtWOut54.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut53
            // 
            this.txtWOut53.BackColor = System.Drawing.Color.White;
            this.txtWOut53.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut53.ForeColor = System.Drawing.Color.Black;
            this.txtWOut53.Location = new System.Drawing.Point(720, 521);
            this.txtWOut53.Name = "txtWOut53";
            this.txtWOut53.ReadOnly = true;
            this.txtWOut53.Size = new System.Drawing.Size(129, 14);
            this.txtWOut53.TabIndex = 204;
            this.txtWOut53.Text = "0";
            this.txtWOut53.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut52
            // 
            this.txtWOut52.BackColor = System.Drawing.Color.White;
            this.txtWOut52.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut52.ForeColor = System.Drawing.Color.Black;
            this.txtWOut52.Location = new System.Drawing.Point(720, 491);
            this.txtWOut52.Name = "txtWOut52";
            this.txtWOut52.ReadOnly = true;
            this.txtWOut52.Size = new System.Drawing.Size(129, 14);
            this.txtWOut52.TabIndex = 204;
            this.txtWOut52.Text = "0";
            this.txtWOut52.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut51
            // 
            this.txtWOut51.BackColor = System.Drawing.Color.White;
            this.txtWOut51.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut51.ForeColor = System.Drawing.Color.Black;
            this.txtWOut51.Location = new System.Drawing.Point(720, 461);
            this.txtWOut51.Name = "txtWOut51";
            this.txtWOut51.ReadOnly = true;
            this.txtWOut51.Size = new System.Drawing.Size(129, 14);
            this.txtWOut51.TabIndex = 204;
            this.txtWOut51.Text = "0";
            this.txtWOut51.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut50
            // 
            this.txtWOut50.BackColor = System.Drawing.Color.White;
            this.txtWOut50.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut50.ForeColor = System.Drawing.Color.Black;
            this.txtWOut50.Location = new System.Drawing.Point(720, 431);
            this.txtWOut50.Name = "txtWOut50";
            this.txtWOut50.ReadOnly = true;
            this.txtWOut50.Size = new System.Drawing.Size(129, 14);
            this.txtWOut50.TabIndex = 204;
            this.txtWOut50.Text = "0";
            this.txtWOut50.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut49
            // 
            this.txtWOut49.BackColor = System.Drawing.Color.White;
            this.txtWOut49.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut49.ForeColor = System.Drawing.Color.Black;
            this.txtWOut49.Location = new System.Drawing.Point(720, 401);
            this.txtWOut49.Name = "txtWOut49";
            this.txtWOut49.ReadOnly = true;
            this.txtWOut49.Size = new System.Drawing.Size(129, 14);
            this.txtWOut49.TabIndex = 204;
            this.txtWOut49.Text = "0";
            this.txtWOut49.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut27
            // 
            this.txtWOut27.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut27.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut27.ForeColor = System.Drawing.Color.Black;
            this.txtWOut27.Location = new System.Drawing.Point(370, 581);
            this.txtWOut27.Name = "txtWOut27";
            this.txtWOut27.ReadOnly = true;
            this.txtWOut27.Size = new System.Drawing.Size(129, 14);
            this.txtWOut27.TabIndex = 205;
            this.txtWOut27.Text = "0";
            this.txtWOut27.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut26
            // 
            this.txtWOut26.BackColor = System.Drawing.Color.White;
            this.txtWOut26.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut26.ForeColor = System.Drawing.Color.Black;
            this.txtWOut26.Location = new System.Drawing.Point(370, 551);
            this.txtWOut26.Name = "txtWOut26";
            this.txtWOut26.ReadOnly = true;
            this.txtWOut26.Size = new System.Drawing.Size(129, 14);
            this.txtWOut26.TabIndex = 205;
            this.txtWOut26.Text = "0";
            this.txtWOut26.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut69
            // 
            this.txtWOut69.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut69.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut69.ForeColor = System.Drawing.Color.Black;
            this.txtWOut69.Location = new System.Drawing.Point(920, 581);
            this.txtWOut69.Name = "txtWOut69";
            this.txtWOut69.ReadOnly = true;
            this.txtWOut69.Size = new System.Drawing.Size(129, 14);
            this.txtWOut69.TabIndex = 200;
            this.txtWOut69.Text = "0";
            this.txtWOut69.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut68
            // 
            this.txtWOut68.BackColor = System.Drawing.Color.White;
            this.txtWOut68.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut68.ForeColor = System.Drawing.Color.Black;
            this.txtWOut68.Location = new System.Drawing.Point(920, 551);
            this.txtWOut68.Name = "txtWOut68";
            this.txtWOut68.ReadOnly = true;
            this.txtWOut68.Size = new System.Drawing.Size(129, 14);
            this.txtWOut68.TabIndex = 200;
            this.txtWOut68.Text = "0";
            this.txtWOut68.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut25
            // 
            this.txtWOut25.BackColor = System.Drawing.Color.White;
            this.txtWOut25.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut25.ForeColor = System.Drawing.Color.Black;
            this.txtWOut25.Location = new System.Drawing.Point(370, 521);
            this.txtWOut25.Name = "txtWOut25";
            this.txtWOut25.ReadOnly = true;
            this.txtWOut25.Size = new System.Drawing.Size(129, 14);
            this.txtWOut25.TabIndex = 205;
            this.txtWOut25.Text = "0";
            this.txtWOut25.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut67
            // 
            this.txtWOut67.BackColor = System.Drawing.Color.White;
            this.txtWOut67.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut67.ForeColor = System.Drawing.Color.Black;
            this.txtWOut67.Location = new System.Drawing.Point(920, 521);
            this.txtWOut67.Name = "txtWOut67";
            this.txtWOut67.ReadOnly = true;
            this.txtWOut67.Size = new System.Drawing.Size(129, 14);
            this.txtWOut67.TabIndex = 200;
            this.txtWOut67.Text = "0";
            this.txtWOut67.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut24
            // 
            this.txtWOut24.BackColor = System.Drawing.Color.White;
            this.txtWOut24.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut24.ForeColor = System.Drawing.Color.Black;
            this.txtWOut24.Location = new System.Drawing.Point(370, 491);
            this.txtWOut24.Name = "txtWOut24";
            this.txtWOut24.ReadOnly = true;
            this.txtWOut24.Size = new System.Drawing.Size(129, 14);
            this.txtWOut24.TabIndex = 205;
            this.txtWOut24.Text = "0";
            this.txtWOut24.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut66
            // 
            this.txtWOut66.BackColor = System.Drawing.Color.White;
            this.txtWOut66.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut66.ForeColor = System.Drawing.Color.Black;
            this.txtWOut66.Location = new System.Drawing.Point(920, 491);
            this.txtWOut66.Name = "txtWOut66";
            this.txtWOut66.ReadOnly = true;
            this.txtWOut66.Size = new System.Drawing.Size(129, 14);
            this.txtWOut66.TabIndex = 200;
            this.txtWOut66.Text = "0";
            this.txtWOut66.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut23
            // 
            this.txtWOut23.BackColor = System.Drawing.Color.White;
            this.txtWOut23.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut23.ForeColor = System.Drawing.Color.Black;
            this.txtWOut23.Location = new System.Drawing.Point(370, 461);
            this.txtWOut23.Name = "txtWOut23";
            this.txtWOut23.ReadOnly = true;
            this.txtWOut23.Size = new System.Drawing.Size(129, 14);
            this.txtWOut23.TabIndex = 205;
            this.txtWOut23.Text = "0";
            this.txtWOut23.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut65
            // 
            this.txtWOut65.BackColor = System.Drawing.Color.White;
            this.txtWOut65.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut65.ForeColor = System.Drawing.Color.Black;
            this.txtWOut65.Location = new System.Drawing.Point(920, 461);
            this.txtWOut65.Name = "txtWOut65";
            this.txtWOut65.ReadOnly = true;
            this.txtWOut65.Size = new System.Drawing.Size(129, 14);
            this.txtWOut65.TabIndex = 200;
            this.txtWOut65.Text = "0";
            this.txtWOut65.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut41
            // 
            this.txtWOut41.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut41.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut41.ForeColor = System.Drawing.Color.Black;
            this.txtWOut41.Location = new System.Drawing.Point(560, 581);
            this.txtWOut41.Name = "txtWOut41";
            this.txtWOut41.ReadOnly = true;
            this.txtWOut41.Size = new System.Drawing.Size(129, 14);
            this.txtWOut41.TabIndex = 201;
            this.txtWOut41.Text = "0";
            this.txtWOut41.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut40
            // 
            this.txtWOut40.BackColor = System.Drawing.Color.White;
            this.txtWOut40.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut40.ForeColor = System.Drawing.Color.Black;
            this.txtWOut40.Location = new System.Drawing.Point(560, 551);
            this.txtWOut40.Name = "txtWOut40";
            this.txtWOut40.ReadOnly = true;
            this.txtWOut40.Size = new System.Drawing.Size(129, 14);
            this.txtWOut40.TabIndex = 201;
            this.txtWOut40.Text = "0";
            this.txtWOut40.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut22
            // 
            this.txtWOut22.BackColor = System.Drawing.Color.White;
            this.txtWOut22.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut22.ForeColor = System.Drawing.Color.Black;
            this.txtWOut22.Location = new System.Drawing.Point(370, 431);
            this.txtWOut22.Name = "txtWOut22";
            this.txtWOut22.ReadOnly = true;
            this.txtWOut22.Size = new System.Drawing.Size(129, 14);
            this.txtWOut22.TabIndex = 205;
            this.txtWOut22.Text = "0";
            this.txtWOut22.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut39
            // 
            this.txtWOut39.BackColor = System.Drawing.Color.White;
            this.txtWOut39.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut39.ForeColor = System.Drawing.Color.Black;
            this.txtWOut39.Location = new System.Drawing.Point(560, 521);
            this.txtWOut39.Name = "txtWOut39";
            this.txtWOut39.ReadOnly = true;
            this.txtWOut39.Size = new System.Drawing.Size(129, 14);
            this.txtWOut39.TabIndex = 201;
            this.txtWOut39.Text = "0";
            this.txtWOut39.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut64
            // 
            this.txtWOut64.BackColor = System.Drawing.Color.White;
            this.txtWOut64.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut64.ForeColor = System.Drawing.Color.Black;
            this.txtWOut64.Location = new System.Drawing.Point(920, 431);
            this.txtWOut64.Name = "txtWOut64";
            this.txtWOut64.ReadOnly = true;
            this.txtWOut64.Size = new System.Drawing.Size(129, 14);
            this.txtWOut64.TabIndex = 200;
            this.txtWOut64.Text = "0";
            this.txtWOut64.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut38
            // 
            this.txtWOut38.BackColor = System.Drawing.Color.White;
            this.txtWOut38.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut38.ForeColor = System.Drawing.Color.Black;
            this.txtWOut38.Location = new System.Drawing.Point(560, 491);
            this.txtWOut38.Name = "txtWOut38";
            this.txtWOut38.ReadOnly = true;
            this.txtWOut38.Size = new System.Drawing.Size(129, 14);
            this.txtWOut38.TabIndex = 201;
            this.txtWOut38.Text = "0";
            this.txtWOut38.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut37
            // 
            this.txtWOut37.BackColor = System.Drawing.Color.White;
            this.txtWOut37.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut37.ForeColor = System.Drawing.Color.Black;
            this.txtWOut37.Location = new System.Drawing.Point(560, 461);
            this.txtWOut37.Name = "txtWOut37";
            this.txtWOut37.ReadOnly = true;
            this.txtWOut37.Size = new System.Drawing.Size(129, 14);
            this.txtWOut37.TabIndex = 201;
            this.txtWOut37.Text = "0";
            this.txtWOut37.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut36
            // 
            this.txtWOut36.BackColor = System.Drawing.Color.White;
            this.txtWOut36.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut36.ForeColor = System.Drawing.Color.Black;
            this.txtWOut36.Location = new System.Drawing.Point(560, 431);
            this.txtWOut36.Name = "txtWOut36";
            this.txtWOut36.ReadOnly = true;
            this.txtWOut36.Size = new System.Drawing.Size(129, 14);
            this.txtWOut36.TabIndex = 201;
            this.txtWOut36.Text = "0";
            this.txtWOut36.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut21
            // 
            this.txtWOut21.BackColor = System.Drawing.Color.White;
            this.txtWOut21.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut21.ForeColor = System.Drawing.Color.Black;
            this.txtWOut21.Location = new System.Drawing.Point(370, 401);
            this.txtWOut21.Name = "txtWOut21";
            this.txtWOut21.ReadOnly = true;
            this.txtWOut21.Size = new System.Drawing.Size(129, 14);
            this.txtWOut21.TabIndex = 205;
            this.txtWOut21.Text = "0";
            this.txtWOut21.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut63
            // 
            this.txtWOut63.BackColor = System.Drawing.Color.White;
            this.txtWOut63.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut63.ForeColor = System.Drawing.Color.Black;
            this.txtWOut63.Location = new System.Drawing.Point(920, 401);
            this.txtWOut63.Name = "txtWOut63";
            this.txtWOut63.ReadOnly = true;
            this.txtWOut63.Size = new System.Drawing.Size(129, 14);
            this.txtWOut63.TabIndex = 200;
            this.txtWOut63.Text = "0";
            this.txtWOut63.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut35
            // 
            this.txtWOut35.BackColor = System.Drawing.Color.White;
            this.txtWOut35.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut35.ForeColor = System.Drawing.Color.Black;
            this.txtWOut35.Location = new System.Drawing.Point(560, 401);
            this.txtWOut35.Name = "txtWOut35";
            this.txtWOut35.ReadOnly = true;
            this.txtWOut35.Size = new System.Drawing.Size(129, 14);
            this.txtWOut35.TabIndex = 201;
            this.txtWOut35.Text = "0";
            this.txtWOut35.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut75
            // 
            this.txtWOut75.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut75.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut75.ForeColor = System.Drawing.Color.Black;
            this.txtWOut75.Location = new System.Drawing.Point(1080, 204);
            this.txtWOut75.Name = "txtWOut75";
            this.txtWOut75.ReadOnly = true;
            this.txtWOut75.Size = new System.Drawing.Size(129, 14);
            this.txtWOut75.TabIndex = 197;
            this.txtWOut75.Text = "0";
            this.txtWOut75.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut74
            // 
            this.txtWOut74.BackColor = System.Drawing.Color.White;
            this.txtWOut74.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut74.ForeColor = System.Drawing.Color.Black;
            this.txtWOut74.Location = new System.Drawing.Point(1080, 172);
            this.txtWOut74.Name = "txtWOut74";
            this.txtWOut74.ReadOnly = true;
            this.txtWOut74.Size = new System.Drawing.Size(129, 14);
            this.txtWOut74.TabIndex = 197;
            this.txtWOut74.Text = "0";
            this.txtWOut74.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut73
            // 
            this.txtWOut73.BackColor = System.Drawing.Color.White;
            this.txtWOut73.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut73.ForeColor = System.Drawing.Color.Black;
            this.txtWOut73.Location = new System.Drawing.Point(1080, 137);
            this.txtWOut73.Name = "txtWOut73";
            this.txtWOut73.ReadOnly = true;
            this.txtWOut73.Size = new System.Drawing.Size(129, 14);
            this.txtWOut73.TabIndex = 197;
            this.txtWOut73.Text = "0";
            this.txtWOut73.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut72
            // 
            this.txtWOut72.BackColor = System.Drawing.Color.White;
            this.txtWOut72.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut72.ForeColor = System.Drawing.Color.Black;
            this.txtWOut72.Location = new System.Drawing.Point(1080, 104);
            this.txtWOut72.Name = "txtWOut72";
            this.txtWOut72.ReadOnly = true;
            this.txtWOut72.Size = new System.Drawing.Size(129, 14);
            this.txtWOut72.TabIndex = 197;
            this.txtWOut72.Text = "0";
            this.txtWOut72.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut76
            // 
            this.txtWOut76.BackColor = System.Drawing.Color.White;
            this.txtWOut76.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut76.ForeColor = System.Drawing.Color.Black;
            this.txtWOut76.Location = new System.Drawing.Point(1080, 371);
            this.txtWOut76.Name = "txtWOut76";
            this.txtWOut76.ReadOnly = true;
            this.txtWOut76.Size = new System.Drawing.Size(129, 14);
            this.txtWOut76.TabIndex = 197;
            this.txtWOut76.Text = "0";
            this.txtWOut76.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut71
            // 
            this.txtWOut71.BackColor = System.Drawing.Color.White;
            this.txtWOut71.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut71.ForeColor = System.Drawing.Color.Black;
            this.txtWOut71.Location = new System.Drawing.Point(1080, 74);
            this.txtWOut71.Name = "txtWOut71";
            this.txtWOut71.ReadOnly = true;
            this.txtWOut71.Size = new System.Drawing.Size(129, 14);
            this.txtWOut71.TabIndex = 197;
            this.txtWOut71.Text = "0";
            this.txtWOut71.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut47
            // 
            this.txtWOut47.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut47.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut47.ForeColor = System.Drawing.Color.Black;
            this.txtWOut47.Location = new System.Drawing.Point(720, 204);
            this.txtWOut47.Name = "txtWOut47";
            this.txtWOut47.ReadOnly = true;
            this.txtWOut47.Size = new System.Drawing.Size(129, 14);
            this.txtWOut47.TabIndex = 198;
            this.txtWOut47.Text = "0";
            this.txtWOut47.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut46
            // 
            this.txtWOut46.BackColor = System.Drawing.Color.White;
            this.txtWOut46.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut46.ForeColor = System.Drawing.Color.Black;
            this.txtWOut46.Location = new System.Drawing.Point(720, 172);
            this.txtWOut46.Name = "txtWOut46";
            this.txtWOut46.ReadOnly = true;
            this.txtWOut46.Size = new System.Drawing.Size(129, 14);
            this.txtWOut46.TabIndex = 198;
            this.txtWOut46.Text = "0";
            this.txtWOut46.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut45
            // 
            this.txtWOut45.BackColor = System.Drawing.Color.White;
            this.txtWOut45.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut45.ForeColor = System.Drawing.Color.Black;
            this.txtWOut45.Location = new System.Drawing.Point(720, 137);
            this.txtWOut45.Name = "txtWOut45";
            this.txtWOut45.ReadOnly = true;
            this.txtWOut45.Size = new System.Drawing.Size(129, 14);
            this.txtWOut45.TabIndex = 198;
            this.txtWOut45.Text = "0";
            this.txtWOut45.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut44
            // 
            this.txtWOut44.BackColor = System.Drawing.Color.White;
            this.txtWOut44.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut44.ForeColor = System.Drawing.Color.Black;
            this.txtWOut44.Location = new System.Drawing.Point(720, 104);
            this.txtWOut44.Name = "txtWOut44";
            this.txtWOut44.ReadOnly = true;
            this.txtWOut44.Size = new System.Drawing.Size(129, 14);
            this.txtWOut44.TabIndex = 198;
            this.txtWOut44.Text = "0";
            this.txtWOut44.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut48
            // 
            this.txtWOut48.BackColor = System.Drawing.Color.White;
            this.txtWOut48.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut48.ForeColor = System.Drawing.Color.Black;
            this.txtWOut48.Location = new System.Drawing.Point(720, 371);
            this.txtWOut48.Name = "txtWOut48";
            this.txtWOut48.ReadOnly = true;
            this.txtWOut48.Size = new System.Drawing.Size(129, 14);
            this.txtWOut48.TabIndex = 198;
            this.txtWOut48.Text = "0";
            this.txtWOut48.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut43
            // 
            this.txtWOut43.BackColor = System.Drawing.Color.White;
            this.txtWOut43.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut43.ForeColor = System.Drawing.Color.Black;
            this.txtWOut43.Location = new System.Drawing.Point(720, 74);
            this.txtWOut43.Name = "txtWOut43";
            this.txtWOut43.ReadOnly = true;
            this.txtWOut43.Size = new System.Drawing.Size(129, 14);
            this.txtWOut43.TabIndex = 198;
            this.txtWOut43.Text = "0";
            this.txtWOut43.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut61
            // 
            this.txtWOut61.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut61.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut61.ForeColor = System.Drawing.Color.Black;
            this.txtWOut61.Location = new System.Drawing.Point(920, 204);
            this.txtWOut61.Name = "txtWOut61";
            this.txtWOut61.ReadOnly = true;
            this.txtWOut61.Size = new System.Drawing.Size(129, 14);
            this.txtWOut61.TabIndex = 194;
            this.txtWOut61.Text = "0";
            this.txtWOut61.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut60
            // 
            this.txtWOut60.BackColor = System.Drawing.Color.White;
            this.txtWOut60.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut60.ForeColor = System.Drawing.Color.Black;
            this.txtWOut60.Location = new System.Drawing.Point(920, 172);
            this.txtWOut60.Name = "txtWOut60";
            this.txtWOut60.ReadOnly = true;
            this.txtWOut60.Size = new System.Drawing.Size(129, 14);
            this.txtWOut60.TabIndex = 194;
            this.txtWOut60.Text = "0";
            this.txtWOut60.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut59
            // 
            this.txtWOut59.BackColor = System.Drawing.Color.White;
            this.txtWOut59.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut59.ForeColor = System.Drawing.Color.Black;
            this.txtWOut59.Location = new System.Drawing.Point(920, 137);
            this.txtWOut59.Name = "txtWOut59";
            this.txtWOut59.ReadOnly = true;
            this.txtWOut59.Size = new System.Drawing.Size(129, 14);
            this.txtWOut59.TabIndex = 194;
            this.txtWOut59.Text = "0";
            this.txtWOut59.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut33
            // 
            this.txtWOut33.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut33.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut33.ForeColor = System.Drawing.Color.Black;
            this.txtWOut33.Location = new System.Drawing.Point(560, 204);
            this.txtWOut33.Name = "txtWOut33";
            this.txtWOut33.ReadOnly = true;
            this.txtWOut33.Size = new System.Drawing.Size(129, 14);
            this.txtWOut33.TabIndex = 195;
            this.txtWOut33.Text = "0";
            this.txtWOut33.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut32
            // 
            this.txtWOut32.BackColor = System.Drawing.Color.White;
            this.txtWOut32.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut32.ForeColor = System.Drawing.Color.Black;
            this.txtWOut32.Location = new System.Drawing.Point(560, 172);
            this.txtWOut32.Name = "txtWOut32";
            this.txtWOut32.ReadOnly = true;
            this.txtWOut32.Size = new System.Drawing.Size(129, 14);
            this.txtWOut32.TabIndex = 195;
            this.txtWOut32.Text = "0";
            this.txtWOut32.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut58
            // 
            this.txtWOut58.BackColor = System.Drawing.Color.White;
            this.txtWOut58.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut58.ForeColor = System.Drawing.Color.Black;
            this.txtWOut58.Location = new System.Drawing.Point(920, 104);
            this.txtWOut58.Name = "txtWOut58";
            this.txtWOut58.ReadOnly = true;
            this.txtWOut58.Size = new System.Drawing.Size(129, 14);
            this.txtWOut58.TabIndex = 194;
            this.txtWOut58.Text = "0";
            this.txtWOut58.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut31
            // 
            this.txtWOut31.BackColor = System.Drawing.Color.White;
            this.txtWOut31.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut31.ForeColor = System.Drawing.Color.Black;
            this.txtWOut31.Location = new System.Drawing.Point(560, 137);
            this.txtWOut31.Name = "txtWOut31";
            this.txtWOut31.ReadOnly = true;
            this.txtWOut31.Size = new System.Drawing.Size(129, 14);
            this.txtWOut31.TabIndex = 195;
            this.txtWOut31.Text = "0";
            this.txtWOut31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut20
            // 
            this.txtWOut20.BackColor = System.Drawing.Color.White;
            this.txtWOut20.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut20.ForeColor = System.Drawing.Color.Black;
            this.txtWOut20.Location = new System.Drawing.Point(370, 371);
            this.txtWOut20.Name = "txtWOut20";
            this.txtWOut20.ReadOnly = true;
            this.txtWOut20.Size = new System.Drawing.Size(129, 14);
            this.txtWOut20.TabIndex = 199;
            this.txtWOut20.Text = "0";
            this.txtWOut20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut15
            // 
            this.txtWOut15.BackColor = System.Drawing.Color.White;
            this.txtWOut15.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut15.ForeColor = System.Drawing.Color.Black;
            this.txtWOut15.Location = new System.Drawing.Point(370, 74);
            this.txtWOut15.Name = "txtWOut15";
            this.txtWOut15.ReadOnly = true;
            this.txtWOut15.Size = new System.Drawing.Size(129, 14);
            this.txtWOut15.TabIndex = 199;
            this.txtWOut15.Text = "0";
            this.txtWOut15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut30
            // 
            this.txtWOut30.BackColor = System.Drawing.Color.White;
            this.txtWOut30.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut30.ForeColor = System.Drawing.Color.Black;
            this.txtWOut30.Location = new System.Drawing.Point(560, 104);
            this.txtWOut30.Name = "txtWOut30";
            this.txtWOut30.ReadOnly = true;
            this.txtWOut30.Size = new System.Drawing.Size(129, 14);
            this.txtWOut30.TabIndex = 195;
            this.txtWOut30.Text = "0";
            this.txtWOut30.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut62
            // 
            this.txtWOut62.BackColor = System.Drawing.Color.White;
            this.txtWOut62.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut62.ForeColor = System.Drawing.Color.Black;
            this.txtWOut62.Location = new System.Drawing.Point(920, 371);
            this.txtWOut62.Name = "txtWOut62";
            this.txtWOut62.ReadOnly = true;
            this.txtWOut62.Size = new System.Drawing.Size(129, 14);
            this.txtWOut62.TabIndex = 194;
            this.txtWOut62.Text = "0";
            this.txtWOut62.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut57
            // 
            this.txtWOut57.BackColor = System.Drawing.Color.White;
            this.txtWOut57.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut57.ForeColor = System.Drawing.Color.Black;
            this.txtWOut57.Location = new System.Drawing.Point(920, 74);
            this.txtWOut57.Name = "txtWOut57";
            this.txtWOut57.ReadOnly = true;
            this.txtWOut57.Size = new System.Drawing.Size(129, 14);
            this.txtWOut57.TabIndex = 194;
            this.txtWOut57.Text = "0";
            this.txtWOut57.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut34
            // 
            this.txtWOut34.BackColor = System.Drawing.Color.White;
            this.txtWOut34.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut34.ForeColor = System.Drawing.Color.Black;
            this.txtWOut34.Location = new System.Drawing.Point(560, 371);
            this.txtWOut34.Name = "txtWOut34";
            this.txtWOut34.ReadOnly = true;
            this.txtWOut34.Size = new System.Drawing.Size(129, 14);
            this.txtWOut34.TabIndex = 195;
            this.txtWOut34.Text = "0";
            this.txtWOut34.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut29
            // 
            this.txtWOut29.BackColor = System.Drawing.Color.White;
            this.txtWOut29.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut29.ForeColor = System.Drawing.Color.Black;
            this.txtWOut29.Location = new System.Drawing.Point(560, 74);
            this.txtWOut29.Name = "txtWOut29";
            this.txtWOut29.ReadOnly = true;
            this.txtWOut29.Size = new System.Drawing.Size(129, 14);
            this.txtWOut29.TabIndex = 195;
            this.txtWOut29.Text = "0";
            this.txtWOut29.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut19
            // 
            this.txtWOut19.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut19.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut19.ForeColor = System.Drawing.Color.Black;
            this.txtWOut19.Location = new System.Drawing.Point(370, 204);
            this.txtWOut19.Name = "txtWOut19";
            this.txtWOut19.ReadOnly = true;
            this.txtWOut19.Size = new System.Drawing.Size(129, 14);
            this.txtWOut19.TabIndex = 149;
            this.txtWOut19.Text = "0";
            this.txtWOut19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut18
            // 
            this.txtWOut18.BackColor = System.Drawing.Color.White;
            this.txtWOut18.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut18.ForeColor = System.Drawing.Color.Black;
            this.txtWOut18.Location = new System.Drawing.Point(370, 172);
            this.txtWOut18.Name = "txtWOut18";
            this.txtWOut18.ReadOnly = true;
            this.txtWOut18.Size = new System.Drawing.Size(129, 14);
            this.txtWOut18.TabIndex = 149;
            this.txtWOut18.Text = "0";
            this.txtWOut18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut5
            // 
            this.txtWOut5.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut5.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut5.ForeColor = System.Drawing.Color.Black;
            this.txtWOut5.Location = new System.Drawing.Point(210, 204);
            this.txtWOut5.Name = "txtWOut5";
            this.txtWOut5.ReadOnly = true;
            this.txtWOut5.Size = new System.Drawing.Size(129, 14);
            this.txtWOut5.TabIndex = 148;
            this.txtWOut5.Text = "0";
            this.txtWOut5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut4
            // 
            this.txtWOut4.BackColor = System.Drawing.Color.White;
            this.txtWOut4.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut4.ForeColor = System.Drawing.Color.Black;
            this.txtWOut4.Location = new System.Drawing.Point(210, 172);
            this.txtWOut4.Name = "txtWOut4";
            this.txtWOut4.ReadOnly = true;
            this.txtWOut4.Size = new System.Drawing.Size(129, 14);
            this.txtWOut4.TabIndex = 148;
            this.txtWOut4.Text = "0";
            this.txtWOut4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut17
            // 
            this.txtWOut17.BackColor = System.Drawing.Color.White;
            this.txtWOut17.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut17.ForeColor = System.Drawing.Color.Black;
            this.txtWOut17.Location = new System.Drawing.Point(370, 137);
            this.txtWOut17.Name = "txtWOut17";
            this.txtWOut17.ReadOnly = true;
            this.txtWOut17.Size = new System.Drawing.Size(129, 14);
            this.txtWOut17.TabIndex = 153;
            this.txtWOut17.Text = "0";
            this.txtWOut17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut3
            // 
            this.txtWOut3.BackColor = System.Drawing.Color.White;
            this.txtWOut3.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut3.ForeColor = System.Drawing.Color.Black;
            this.txtWOut3.Location = new System.Drawing.Point(210, 137);
            this.txtWOut3.Name = "txtWOut3";
            this.txtWOut3.ReadOnly = true;
            this.txtWOut3.Size = new System.Drawing.Size(129, 14);
            this.txtWOut3.TabIndex = 152;
            this.txtWOut3.Text = "0";
            this.txtWOut3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut16
            // 
            this.txtWOut16.BackColor = System.Drawing.Color.White;
            this.txtWOut16.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut16.ForeColor = System.Drawing.Color.Black;
            this.txtWOut16.Location = new System.Drawing.Point(370, 104);
            this.txtWOut16.Name = "txtWOut16";
            this.txtWOut16.ReadOnly = true;
            this.txtWOut16.Size = new System.Drawing.Size(129, 14);
            this.txtWOut16.TabIndex = 154;
            this.txtWOut16.Text = "0";
            this.txtWOut16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut2
            // 
            this.txtWOut2.BackColor = System.Drawing.Color.White;
            this.txtWOut2.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut2.ForeColor = System.Drawing.Color.Black;
            this.txtWOut2.Location = new System.Drawing.Point(210, 104);
            this.txtWOut2.Name = "txtWOut2";
            this.txtWOut2.ReadOnly = true;
            this.txtWOut2.Size = new System.Drawing.Size(129, 14);
            this.txtWOut2.TabIndex = 155;
            this.txtWOut2.Text = "0";
            this.txtWOut2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut6
            // 
            this.txtWOut6.BackColor = System.Drawing.Color.White;
            this.txtWOut6.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut6.ForeColor = System.Drawing.Color.Black;
            this.txtWOut6.Location = new System.Drawing.Point(210, 371);
            this.txtWOut6.Name = "txtWOut6";
            this.txtWOut6.ReadOnly = true;
            this.txtWOut6.Size = new System.Drawing.Size(129, 14);
            this.txtWOut6.TabIndex = 151;
            this.txtWOut6.Text = "0";
            this.txtWOut6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut1
            // 
            this.txtWOut1.BackColor = System.Drawing.Color.White;
            this.txtWOut1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut1.ForeColor = System.Drawing.Color.Black;
            this.txtWOut1.Location = new System.Drawing.Point(210, 74);
            this.txtWOut1.Name = "txtWOut1";
            this.txtWOut1.ReadOnly = true;
            this.txtWOut1.Size = new System.Drawing.Size(129, 14);
            this.txtWOut1.TabIndex = 151;
            this.txtWOut1.Text = "0";
            this.txtWOut1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut13
            // 
            this.txtWOut13.BackColor = System.Drawing.Color.Gainsboro;
            this.txtWOut13.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut13.ForeColor = System.Drawing.Color.Black;
            this.txtWOut13.Location = new System.Drawing.Point(210, 581);
            this.txtWOut13.Name = "txtWOut13";
            this.txtWOut13.ReadOnly = true;
            this.txtWOut13.Size = new System.Drawing.Size(129, 14);
            this.txtWOut13.TabIndex = 136;
            this.txtWOut13.Text = "0";
            this.txtWOut13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut12
            // 
            this.txtWOut12.BackColor = System.Drawing.Color.White;
            this.txtWOut12.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut12.ForeColor = System.Drawing.Color.Black;
            this.txtWOut12.Location = new System.Drawing.Point(210, 551);
            this.txtWOut12.Name = "txtWOut12";
            this.txtWOut12.ReadOnly = true;
            this.txtWOut12.Size = new System.Drawing.Size(129, 14);
            this.txtWOut12.TabIndex = 136;
            this.txtWOut12.Text = "0";
            this.txtWOut12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut11
            // 
            this.txtWOut11.BackColor = System.Drawing.Color.White;
            this.txtWOut11.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut11.ForeColor = System.Drawing.Color.Black;
            this.txtWOut11.Location = new System.Drawing.Point(210, 521);
            this.txtWOut11.Name = "txtWOut11";
            this.txtWOut11.ReadOnly = true;
            this.txtWOut11.Size = new System.Drawing.Size(129, 14);
            this.txtWOut11.TabIndex = 137;
            this.txtWOut11.Text = "0";
            this.txtWOut11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut10
            // 
            this.txtWOut10.BackColor = System.Drawing.Color.White;
            this.txtWOut10.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut10.ForeColor = System.Drawing.Color.Black;
            this.txtWOut10.Location = new System.Drawing.Point(210, 491);
            this.txtWOut10.Name = "txtWOut10";
            this.txtWOut10.ReadOnly = true;
            this.txtWOut10.Size = new System.Drawing.Size(129, 14);
            this.txtWOut10.TabIndex = 132;
            this.txtWOut10.Text = "0";
            this.txtWOut10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut9
            // 
            this.txtWOut9.BackColor = System.Drawing.Color.White;
            this.txtWOut9.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut9.ForeColor = System.Drawing.Color.Black;
            this.txtWOut9.Location = new System.Drawing.Point(210, 461);
            this.txtWOut9.Name = "txtWOut9";
            this.txtWOut9.ReadOnly = true;
            this.txtWOut9.Size = new System.Drawing.Size(129, 14);
            this.txtWOut9.TabIndex = 133;
            this.txtWOut9.Text = "0";
            this.txtWOut9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut8
            // 
            this.txtWOut8.BackColor = System.Drawing.Color.White;
            this.txtWOut8.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut8.ForeColor = System.Drawing.Color.Black;
            this.txtWOut8.Location = new System.Drawing.Point(210, 431);
            this.txtWOut8.Name = "txtWOut8";
            this.txtWOut8.ReadOnly = true;
            this.txtWOut8.Size = new System.Drawing.Size(129, 14);
            this.txtWOut8.TabIndex = 134;
            this.txtWOut8.Text = "0";
            this.txtWOut8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtWOut7
            // 
            this.txtWOut7.BackColor = System.Drawing.Color.White;
            this.txtWOut7.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtWOut7.ForeColor = System.Drawing.Color.Black;
            this.txtWOut7.Location = new System.Drawing.Point(210, 401);
            this.txtWOut7.Name = "txtWOut7";
            this.txtWOut7.ReadOnly = true;
            this.txtWOut7.Size = new System.Drawing.Size(129, 14);
            this.txtWOut7.TabIndex = 140;
            this.txtWOut7.Text = "0";
            this.txtWOut7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label22
            // 
            this.label22.AutoSize = true;
            this.label22.BackColor = System.Drawing.Color.LemonChiffon;
            this.label22.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label22.ForeColor = System.Drawing.Color.Black;
            this.label22.Location = new System.Drawing.Point(80, 342);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(31, 12);
            this.label22.TabIndex = 128;
            this.label22.Text = "구분";
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.ForeColor = System.Drawing.Color.Black;
            this.label24.Location = new System.Drawing.Point(35, 179);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(136, 12);
            this.label24.TabIndex = 121;
            this.label24.Text = "추가수익(현금+Volume)";
            // 
            // label27
            // 
            this.label27.AutoSize = true;
            this.label27.ForeColor = System.Drawing.Color.Black;
            this.label27.Location = new System.Drawing.Point(35, 167);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(121, 12);
            this.label27.TabIndex = 123;
            this.label27.Text = "유통모델 매입에 따른";
            // 
            // label28
            // 
            this.label28.AutoSize = true;
            this.label28.ForeColor = System.Drawing.Color.Black;
            this.label28.Location = new System.Drawing.Point(35, 144);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(81, 12);
            this.label28.TabIndex = 125;
            this.label28.Text = "따른 추가수익";
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            this.label29.ForeColor = System.Drawing.Color.Black;
            this.label29.Location = new System.Drawing.Point(35, 132);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(105, 12);
            this.label29.TabIndex = 124;
            this.label29.Text = "사업자모델 매입에";
            // 
            // label32
            // 
            this.label32.AutoSize = true;
            this.label32.ForeColor = System.Drawing.Color.Black;
            this.label32.Location = new System.Drawing.Point(35, 552);
            this.label32.Name = "label32";
            this.label32.Size = new System.Drawing.Size(93, 12);
            this.label32.TabIndex = 114;
            this.label32.Text = "기타 판매관리비";
            // 
            // label83
            // 
            this.label83.AutoSize = true;
            this.label83.ForeColor = System.Drawing.Color.Black;
            this.label83.Location = new System.Drawing.Point(35, 522);
            this.label83.Name = "label83";
            this.label83.Size = new System.Drawing.Size(41, 12);
            this.label83.TabIndex = 111;
            this.label83.Text = "법인세";
            // 
            // label33
            // 
            this.label33.AutoSize = true;
            this.label33.ForeColor = System.Drawing.Color.Black;
            this.label33.Location = new System.Drawing.Point(35, 492);
            this.label33.Name = "label33";
            this.label33.Size = new System.Drawing.Size(41, 12);
            this.label33.TabIndex = 111;
            this.label33.Text = "부가세";
            // 
            // label34
            // 
            this.label34.AutoSize = true;
            this.label34.ForeColor = System.Drawing.Color.Black;
            this.label34.Location = new System.Drawing.Point(35, 462);
            this.label34.Name = "label34";
            this.label34.Size = new System.Drawing.Size(53, 12);
            this.label34.TabIndex = 112;
            this.label34.Text = "이자비용";
            // 
            // label35
            // 
            this.label35.AutoSize = true;
            this.label35.ForeColor = System.Drawing.Color.Black;
            this.label35.Location = new System.Drawing.Point(35, 432);
            this.label35.Name = "label35";
            this.label35.Size = new System.Drawing.Size(41, 12);
            this.label35.TabIndex = 115;
            this.label35.Text = "임차료";
            // 
            // label36
            // 
            this.label36.AutoSize = true;
            this.label36.ForeColor = System.Drawing.Color.Black;
            this.label36.Location = new System.Drawing.Point(35, 396);
            this.label36.Name = "label36";
            this.label36.Size = new System.Drawing.Size(107, 24);
            this.label36.TabIndex = 118;
            this.label36.Text = "인건비\r\n(급여, 복리후생비)";
            // 
            // label37
            // 
            this.label37.AutoSize = true;
            this.label37.ForeColor = System.Drawing.Color.Black;
            this.label37.Location = new System.Drawing.Point(35, 372);
            this.label37.Name = "label37";
            this.label37.Size = new System.Drawing.Size(93, 12);
            this.label37.TabIndex = 119;
            this.label37.Text = "대리점 투자비용";
            // 
            // label38
            // 
            this.label38.AutoSize = true;
            this.label38.ForeColor = System.Drawing.Color.Black;
            this.label38.Location = new System.Drawing.Point(35, 105);
            this.label38.Name = "label38";
            this.label38.Size = new System.Drawing.Size(90, 12);
            this.label38.TabIndex = 116;
            this.label38.Text = "CS 관리 수수료";
            // 
            // label39
            // 
            this.label39.AutoSize = true;
            this.label39.ForeColor = System.Drawing.Color.Black;
            this.label39.Location = new System.Drawing.Point(35, 75);
            this.label39.Name = "label39";
            this.label39.Size = new System.Drawing.Size(101, 12);
            this.label39.TabIndex = 117;
            this.label39.Text = "누적가입자수수료";
            // 
            // label40
            // 
            this.label40.AutoSize = true;
            this.label40.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
            this.label40.ForeColor = System.Drawing.Color.Black;
            this.label40.Location = new System.Drawing.Point(25, 312);
            this.label40.Name = "label40";
            this.label40.Size = new System.Drawing.Size(42, 16);
            this.label40.TabIndex = 109;
            this.label40.Text = "비용";
            // 
            // pictureBox2
            // 
            this.pictureBox2.Image = global::KIWI.Properties.Resources.graph2;
            this.pictureBox2.Location = new System.Drawing.Point(73, 8);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(29, 23);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 219;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
            // 
            // panel15
            // 
            this.panel15.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel15.ForeColor = System.Drawing.Color.Black;
            this.panel15.Location = new System.Drawing.Point(880, 332);
            this.panel15.Name = "panel15";
            this.panel15.Size = new System.Drawing.Size(1, 270);
            this.panel15.TabIndex = 133;
            // 
            // panel45
            // 
            this.panel45.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel45.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel45.ForeColor = System.Drawing.Color.Black;
            this.panel45.Location = new System.Drawing.Point(530, 332);
            this.panel45.Name = "panel45";
            this.panel45.Size = new System.Drawing.Size(1, 270);
            this.panel45.TabIndex = 132;
            // 
            // panel46
            // 
            this.panel46.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel46.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel46.ForeColor = System.Drawing.Color.Black;
            this.panel46.Location = new System.Drawing.Point(180, 332);
            this.panel46.Name = "panel46";
            this.panel46.Size = new System.Drawing.Size(1, 270);
            this.panel46.TabIndex = 131;
            // 
            // panel84
            // 
            this.panel84.BackColor = System.Drawing.Color.LightSalmon;
            this.panel84.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel84.Controls.Add(this.panel85);
            this.panel84.ForeColor = System.Drawing.Color.Black;
            this.panel84.Location = new System.Drawing.Point(0, 5);
            this.panel84.Name = "panel84";
            this.panel84.Size = new System.Drawing.Size(1240, 3);
            this.panel84.TabIndex = 209;
            // 
            // panel85
            // 
            this.panel85.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel85.Location = new System.Drawing.Point(0, 20);
            this.panel85.Name = "panel85";
            this.panel85.Size = new System.Drawing.Size(698, 5);
            this.panel85.TabIndex = 18;
            // 
            // panel86
            // 
            this.panel86.BackColor = System.Drawing.Color.LightSalmon;
            this.panel86.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel86.Controls.Add(this.panel87);
            this.panel86.ForeColor = System.Drawing.Color.Black;
            this.panel86.Location = new System.Drawing.Point(0, 302);
            this.panel86.Name = "panel86";
            this.panel86.Size = new System.Drawing.Size(1240, 3);
            this.panel86.TabIndex = 208;
            // 
            // panel87
            // 
            this.panel87.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel87.Location = new System.Drawing.Point(0, 20);
            this.panel87.Name = "panel87";
            this.panel87.Size = new System.Drawing.Size(698, 5);
            this.panel87.TabIndex = 18;
            // 
            // panel23
            // 
            this.panel23.BackColor = System.Drawing.Color.LightSalmon;
            this.panel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel23.Controls.Add(this.panel56);
            this.panel23.ForeColor = System.Drawing.Color.Black;
            this.panel23.Location = new System.Drawing.Point(0, 332);
            this.panel23.Name = "panel23";
            this.panel23.Size = new System.Drawing.Size(1240, 3);
            this.panel23.TabIndex = 208;
            // 
            // panel56
            // 
            this.panel56.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel56.Location = new System.Drawing.Point(0, 20);
            this.panel56.Name = "panel56";
            this.panel56.Size = new System.Drawing.Size(698, 5);
            this.panel56.TabIndex = 18;
            // 
            // panel61
            // 
            this.panel61.BackColor = System.Drawing.Color.LightSalmon;
            this.panel61.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel61.Controls.Add(this.panel62);
            this.panel61.ForeColor = System.Drawing.Color.Black;
            this.panel61.Location = new System.Drawing.Point(0, 362);
            this.panel61.Name = "panel61";
            this.panel61.Size = new System.Drawing.Size(1240, 3);
            this.panel61.TabIndex = 207;
            // 
            // panel62
            // 
            this.panel62.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel62.Location = new System.Drawing.Point(0, 20);
            this.panel62.Name = "panel62";
            this.panel62.Size = new System.Drawing.Size(698, 5);
            this.panel62.TabIndex = 18;
            // 
            // panel28
            // 
            this.panel28.BackColor = System.Drawing.Color.LightSalmon;
            this.panel28.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel28.Controls.Add(this.panel53);
            this.panel28.ForeColor = System.Drawing.Color.Black;
            this.panel28.Location = new System.Drawing.Point(0, 35);
            this.panel28.Name = "panel28";
            this.panel28.Size = new System.Drawing.Size(1240, 3);
            this.panel28.TabIndex = 208;
            // 
            // panel53
            // 
            this.panel53.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel53.Location = new System.Drawing.Point(0, 20);
            this.panel53.Name = "panel53";
            this.panel53.Size = new System.Drawing.Size(698, 5);
            this.panel53.TabIndex = 18;
            // 
            // panel90
            // 
            this.panel90.BackColor = System.Drawing.Color.LightSalmon;
            this.panel90.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel90.Controls.Add(this.panel91);
            this.panel90.ForeColor = System.Drawing.Color.Black;
            this.panel90.Location = new System.Drawing.Point(0, 602);
            this.panel90.Name = "panel90";
            this.panel90.Size = new System.Drawing.Size(1240, 3);
            this.panel90.TabIndex = 207;
            // 
            // panel91
            // 
            this.panel91.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel91.Location = new System.Drawing.Point(0, 20);
            this.panel91.Name = "panel91";
            this.panel91.Size = new System.Drawing.Size(698, 5);
            this.panel91.TabIndex = 18;
            // 
            // panel88
            // 
            this.panel88.BackColor = System.Drawing.Color.LightSalmon;
            this.panel88.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel88.Controls.Add(this.panel89);
            this.panel88.ForeColor = System.Drawing.Color.Black;
            this.panel88.Location = new System.Drawing.Point(0, 225);
            this.panel88.Name = "panel88";
            this.panel88.Size = new System.Drawing.Size(1240, 3);
            this.panel88.TabIndex = 207;
            // 
            // panel89
            // 
            this.panel89.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel89.Location = new System.Drawing.Point(0, 20);
            this.panel89.Name = "panel89";
            this.panel89.Size = new System.Drawing.Size(698, 5);
            this.panel89.TabIndex = 18;
            // 
            // panel54
            // 
            this.panel54.BackColor = System.Drawing.Color.LightSalmon;
            this.panel54.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel54.Controls.Add(this.panel55);
            this.panel54.ForeColor = System.Drawing.Color.Black;
            this.panel54.Location = new System.Drawing.Point(0, 65);
            this.panel54.Name = "panel54";
            this.panel54.Size = new System.Drawing.Size(1240, 3);
            this.panel54.TabIndex = 207;
            // 
            // panel55
            // 
            this.panel55.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel55.Location = new System.Drawing.Point(0, 20);
            this.panel55.Name = "panel55";
            this.panel55.Size = new System.Drawing.Size(698, 5);
            this.panel55.TabIndex = 18;
            // 
            // panel42
            // 
            this.panel42.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel42.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel42.ForeColor = System.Drawing.Color.Black;
            this.panel42.Location = new System.Drawing.Point(880, 35);
            this.panel42.Name = "panel42";
            this.panel42.Size = new System.Drawing.Size(1, 190);
            this.panel42.TabIndex = 130;
            // 
            // panel40
            // 
            this.panel40.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel40.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel40.ForeColor = System.Drawing.Color.Black;
            this.panel40.Location = new System.Drawing.Point(530, 35);
            this.panel40.Name = "panel40";
            this.panel40.Size = new System.Drawing.Size(1, 190);
            this.panel40.TabIndex = 130;
            // 
            // panel14
            // 
            this.panel14.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel14.ForeColor = System.Drawing.Color.Black;
            this.panel14.Location = new System.Drawing.Point(180, 35);
            this.panel14.Name = "panel14";
            this.panel14.Size = new System.Drawing.Size(1, 190);
            this.panel14.TabIndex = 130;
            // 
            // panel16
            // 
            this.panel16.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel16.ForeColor = System.Drawing.Color.Black;
            this.panel16.Location = new System.Drawing.Point(0, 512);
            this.panel16.Name = "panel16";
            this.panel16.Size = new System.Drawing.Size(1240, 2);
            this.panel16.TabIndex = 99;
            // 
            // panel17
            // 
            this.panel17.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel17.ForeColor = System.Drawing.Color.Black;
            this.panel17.Location = new System.Drawing.Point(0, 482);
            this.panel17.Name = "panel17";
            this.panel17.Size = new System.Drawing.Size(1240, 2);
            this.panel17.TabIndex = 100;
            // 
            // panel18
            // 
            this.panel18.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel18.ForeColor = System.Drawing.Color.Black;
            this.panel18.Location = new System.Drawing.Point(0, 452);
            this.panel18.Name = "panel18";
            this.panel18.Size = new System.Drawing.Size(1240, 2);
            this.panel18.TabIndex = 101;
            // 
            // panel19
            // 
            this.panel19.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel19.ForeColor = System.Drawing.Color.Black;
            this.panel19.Location = new System.Drawing.Point(0, 392);
            this.panel19.Name = "panel19";
            this.panel19.Size = new System.Drawing.Size(1240, 2);
            this.panel19.TabIndex = 96;
            // 
            // panel20
            // 
            this.panel20.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel20.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel20.ForeColor = System.Drawing.Color.Black;
            this.panel20.Location = new System.Drawing.Point(0, 422);
            this.panel20.Name = "panel20";
            this.panel20.Size = new System.Drawing.Size(1240, 2);
            this.panel20.TabIndex = 97;
            // 
            // panel72
            // 
            this.panel72.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel72.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel72.ForeColor = System.Drawing.Color.Black;
            this.panel72.Location = new System.Drawing.Point(0, 195);
            this.panel72.Name = "panel72";
            this.panel72.Size = new System.Drawing.Size(1240, 2);
            this.panel72.TabIndex = 98;
            // 
            // panel71
            // 
            this.panel71.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel71.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel71.ForeColor = System.Drawing.Color.Black;
            this.panel71.Location = new System.Drawing.Point(0, 572);
            this.panel71.Name = "panel71";
            this.panel71.Size = new System.Drawing.Size(1240, 2);
            this.panel71.TabIndex = 102;
            // 
            // panel21
            // 
            this.panel21.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel21.ForeColor = System.Drawing.Color.Black;
            this.panel21.Location = new System.Drawing.Point(0, 160);
            this.panel21.Name = "panel21";
            this.panel21.Size = new System.Drawing.Size(1240, 2);
            this.panel21.TabIndex = 98;
            // 
            // panel22
            // 
            this.panel22.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel22.ForeColor = System.Drawing.Color.Black;
            this.panel22.Location = new System.Drawing.Point(0, 542);
            this.panel22.Name = "panel22";
            this.panel22.Size = new System.Drawing.Size(1240, 2);
            this.panel22.TabIndex = 102;
            // 
            // panel24
            // 
            this.panel24.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel24.ForeColor = System.Drawing.Color.Black;
            this.panel24.Location = new System.Drawing.Point(0, 125);
            this.panel24.Name = "panel24";
            this.panel24.Size = new System.Drawing.Size(1240, 2);
            this.panel24.TabIndex = 107;
            // 
            // panel27
            // 
            this.panel27.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel27.ForeColor = System.Drawing.Color.Black;
            this.panel27.Location = new System.Drawing.Point(0, 95);
            this.panel27.Name = "panel27";
            this.panel27.Size = new System.Drawing.Size(1240, 2);
            this.panel27.TabIndex = 104;
            // 
            // panel153
            // 
            this.panel153.BackColor = System.Drawing.Color.Gainsboro;
            this.panel153.Location = new System.Drawing.Point(3, 617);
            this.panel153.Name = "panel153";
            this.panel153.Size = new System.Drawing.Size(1238, 28);
            this.panel153.TabIndex = 347;
            // 
            // panel154
            // 
            this.panel154.BackColor = System.Drawing.Color.Gainsboro;
            this.panel154.Location = new System.Drawing.Point(3, 573);
            this.panel154.Name = "panel154";
            this.panel154.Size = new System.Drawing.Size(1238, 28);
            this.panel154.TabIndex = 346;
            // 
            // panel156
            // 
            this.panel156.BackColor = System.Drawing.Color.Gainsboro;
            this.panel156.Location = new System.Drawing.Point(3, 198);
            this.panel156.Name = "panel156";
            this.panel156.Size = new System.Drawing.Size(1238, 28);
            this.panel156.TabIndex = 345;
            // 
            // panel163
            // 
            this.panel163.BackColor = System.Drawing.Color.LemonChiffon;
            this.panel163.Location = new System.Drawing.Point(1, 335);
            this.panel163.Name = "panel163";
            this.panel163.Size = new System.Drawing.Size(1238, 28);
            this.panel163.TabIndex = 347;
            // 
            // panel164
            // 
            this.panel164.BackColor = System.Drawing.Color.LemonChiffon;
            this.panel164.Location = new System.Drawing.Point(0, 38);
            this.panel164.Name = "panel164";
            this.panel164.Size = new System.Drawing.Size(1238, 28);
            this.panel164.TabIndex = 348;
            // 
            // tabPage3
            // 
            this.tabPage3.BackColor = System.Drawing.Color.White;
            this.tabPage3.Controls.Add(this.pnlChart3);
            this.tabPage3.Controls.Add(this.label107);
            this.tabPage3.Controls.Add(this.label108);
            this.tabPage3.Controls.Add(this.label111);
            this.tabPage3.Controls.Add(this.label112);
            this.tabPage3.Controls.Add(this.label113);
            this.tabPage3.Controls.Add(this.label114);
            this.tabPage3.Controls.Add(this.lblTitle9);
            this.tabPage3.Controls.Add(this.lblTitle8);
            this.tabPage3.Controls.Add(this.lblTitle7);
            this.tabPage3.Controls.Add(this.panel117);
            this.tabPage3.Controls.Add(this.panel113);
            this.tabPage3.Controls.Add(this.pictureBox4);
            this.tabPage3.Controls.Add(this.panel109);
            this.tabPage3.Controls.Add(this.panel105);
            this.tabPage3.Controls.Add(this.txtROut72);
            this.tabPage3.Controls.Add(this.txtROut48);
            this.tabPage3.Controls.Add(this.txtROut24);
            this.tabPage3.Controls.Add(this.txtROut60);
            this.tabPage3.Controls.Add(this.txtROut36);
            this.tabPage3.Controls.Add(this.txtROut12);
            this.tabPage3.Controls.Add(this.label66);
            this.tabPage3.Controls.Add(this.txtROut71);
            this.tabPage3.Controls.Add(this.txtROut47);
            this.tabPage3.Controls.Add(this.label42);
            this.tabPage3.Controls.Add(this.txtROut23);
            this.tabPage3.Controls.Add(this.txtROut59);
            this.tabPage3.Controls.Add(this.label104);
            this.tabPage3.Controls.Add(this.txtROut35);
            this.tabPage3.Controls.Add(this.txtROut11);
            this.tabPage3.Controls.Add(this.label65);
            this.tabPage3.Controls.Add(this.panel104);
            this.tabPage3.Controls.Add(this.panel102);
            this.tabPage3.Controls.Add(this.label43);
            this.tabPage3.Controls.Add(this.label119);
            this.tabPage3.Controls.Add(this.label118);
            this.tabPage3.Controls.Add(this.label64);
            this.tabPage3.Controls.Add(this.label49);
            this.tabPage3.Controls.Add(this.label61);
            this.tabPage3.Controls.Add(this.label50);
            this.tabPage3.Controls.Add(this.label60);
            this.tabPage3.Controls.Add(this.label51);
            this.tabPage3.Controls.Add(this.label59);
            this.tabPage3.Controls.Add(this.label77);
            this.tabPage3.Controls.Add(this.txtROut70);
            this.tabPage3.Controls.Add(this.txtROut69);
            this.tabPage3.Controls.Add(this.txtROut68);
            this.tabPage3.Controls.Add(this.txtROut67);
            this.tabPage3.Controls.Add(this.txtROut66);
            this.tabPage3.Controls.Add(this.txtROut65);
            this.tabPage3.Controls.Add(this.txtROut64);
            this.tabPage3.Controls.Add(this.txtROut58);
            this.tabPage3.Controls.Add(this.txtROut57);
            this.tabPage3.Controls.Add(this.txtROut56);
            this.tabPage3.Controls.Add(this.txtROut55);
            this.tabPage3.Controls.Add(this.txtROut54);
            this.tabPage3.Controls.Add(this.txtROut53);
            this.tabPage3.Controls.Add(this.txtROut52);
            this.tabPage3.Controls.Add(this.txtROut46);
            this.tabPage3.Controls.Add(this.txtROut45);
            this.tabPage3.Controls.Add(this.txtROut44);
            this.tabPage3.Controls.Add(this.txtROut43);
            this.tabPage3.Controls.Add(this.txtROut42);
            this.tabPage3.Controls.Add(this.txtROut41);
            this.tabPage3.Controls.Add(this.txtROut40);
            this.tabPage3.Controls.Add(this.txtROut34);
            this.tabPage3.Controls.Add(this.txtROut33);
            this.tabPage3.Controls.Add(this.txtROut32);
            this.tabPage3.Controls.Add(this.txtROut31);
            this.tabPage3.Controls.Add(this.txtROut30);
            this.tabPage3.Controls.Add(this.txtROut29);
            this.tabPage3.Controls.Add(this.txtROut28);
            this.tabPage3.Controls.Add(this.txtROut22);
            this.tabPage3.Controls.Add(this.txtROut21);
            this.tabPage3.Controls.Add(this.txtROut20);
            this.tabPage3.Controls.Add(this.txtROut19);
            this.tabPage3.Controls.Add(this.txtROut18);
            this.tabPage3.Controls.Add(this.txtROut17);
            this.tabPage3.Controls.Add(this.txtROut16);
            this.tabPage3.Controls.Add(this.txtROut63);
            this.tabPage3.Controls.Add(this.txtROut39);
            this.tabPage3.Controls.Add(this.txtROut15);
            this.tabPage3.Controls.Add(this.txtROut51);
            this.tabPage3.Controls.Add(this.txtROut27);
            this.tabPage3.Controls.Add(this.txtROut3);
            this.tabPage3.Controls.Add(this.txtROut10);
            this.tabPage3.Controls.Add(this.txtROut9);
            this.tabPage3.Controls.Add(this.txtROut8);
            this.tabPage3.Controls.Add(this.txtROut7);
            this.tabPage3.Controls.Add(this.txtROut6);
            this.tabPage3.Controls.Add(this.txtROut5);
            this.tabPage3.Controls.Add(this.txtROut62);
            this.tabPage3.Controls.Add(this.txtROut38);
            this.tabPage3.Controls.Add(this.txtROut61);
            this.tabPage3.Controls.Add(this.txtROut14);
            this.tabPage3.Controls.Add(this.txtROut37);
            this.tabPage3.Controls.Add(this.txtROut50);
            this.tabPage3.Controls.Add(this.txtROut13);
            this.tabPage3.Controls.Add(this.txtROut26);
            this.tabPage3.Controls.Add(this.txtROut49);
            this.tabPage3.Controls.Add(this.txtROut2);
            this.tabPage3.Controls.Add(this.txtROut25);
            this.tabPage3.Controls.Add(this.txtROut1);
            this.tabPage3.Controls.Add(this.txtROut4);
            this.tabPage3.Controls.Add(this.label44);
            this.tabPage3.Controls.Add(this.label45);
            this.tabPage3.Controls.Add(this.label46);
            this.tabPage3.Controls.Add(this.label52);
            this.tabPage3.Controls.Add(this.label105);
            this.tabPage3.Controls.Add(this.label54);
            this.tabPage3.Controls.Add(this.label84);
            this.tabPage3.Controls.Add(this.label55);
            this.tabPage3.Controls.Add(this.label56);
            this.tabPage3.Controls.Add(this.label57);
            this.tabPage3.Controls.Add(this.label58);
            this.tabPage3.Controls.Add(this.label62);
            this.tabPage3.Controls.Add(this.label63);
            this.tabPage3.Controls.Add(this.pictureBox5);
            this.tabPage3.Controls.Add(this.panel100);
            this.tabPage3.Controls.Add(this.panel98);
            this.tabPage3.Controls.Add(this.panel96);
            this.tabPage3.Controls.Add(this.panel94);
            this.tabPage3.Controls.Add(this.panel92);
            this.tabPage3.Controls.Add(this.panel68);
            this.tabPage3.Controls.Add(this.panel44);
            this.tabPage3.Controls.Add(this.panel66);
            this.tabPage3.Controls.Add(this.panel64);
            this.tabPage3.Controls.Add(this.panel48);
            this.tabPage3.Controls.Add(this.panel47);
            this.tabPage3.Controls.Add(this.panel29);
            this.tabPage3.Controls.Add(this.panel50);
            this.tabPage3.Controls.Add(this.panel49);
            this.tabPage3.Controls.Add(this.panel30);
            this.tabPage3.Controls.Add(this.panel31);
            this.tabPage3.Controls.Add(this.panel32);
            this.tabPage3.Controls.Add(this.panel33);
            this.tabPage3.Controls.Add(this.panel35);
            this.tabPage3.Controls.Add(this.panel73);
            this.tabPage3.Controls.Add(this.panel36);
            this.tabPage3.Controls.Add(this.panel37);
            this.tabPage3.Controls.Add(this.panel41);
            this.tabPage3.Controls.Add(this.panel160);
            this.tabPage3.Controls.Add(this.panel157);
            this.tabPage3.Controls.Add(this.panel158);
            this.tabPage3.Controls.Add(this.panel159);
            this.tabPage3.Controls.Add(this.panel165);
            this.tabPage3.Controls.Add(this.panel166);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(1246, 648);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "          소매          ";
            // 
            // pnlChart3
            // 
            this.pnlChart3.Controls.Add(this.label41);
            this.pnlChart3.Controls.Add(this.label85);
            this.pnlChart3.Controls.Add(this.chart6);
            this.pnlChart3.Controls.Add(this.chart3);
            this.pnlChart3.Location = new System.Drawing.Point(0, 37);
            this.pnlChart3.Name = "pnlChart3";
            this.pnlChart3.Size = new System.Drawing.Size(1240, 634);
            this.pnlChart3.TabIndex = 345;
            this.pnlChart3.Visible = false;
            // 
            // label41
            // 
            this.label41.AutoSize = true;
            this.label41.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.label41.ForeColor = System.Drawing.Color.Black;
            this.label41.Location = new System.Drawing.Point(36, 412);
            this.label41.Name = "label41";
            this.label41.Size = new System.Drawing.Size(23, 45);
            this.label41.TabIndex = 345;
            this.label41.Text = "비\r\n\r\n용";
            // 
            // label85
            // 
            this.label85.AutoSize = true;
            this.label85.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.label85.ForeColor = System.Drawing.Color.Black;
            this.label85.Location = new System.Drawing.Point(36, 122);
            this.label85.Name = "label85";
            this.label85.Size = new System.Drawing.Size(23, 45);
            this.label85.TabIndex = 344;
            this.label85.Text = "수\r\n\r\n익";
            // 
            // chart6
            // 
            chartArea11.Name = "ChartArea1";
            this.chart6.ChartAreas.Add(chartArea11);
            legend11.Name = "Legend1";
            this.chart6.Legends.Add(legend11);
            this.chart6.Location = new System.Drawing.Point(65, 329);
            this.chart6.Name = "chart6";
            series31.ChartArea = "ChartArea1";
            series31.Legend = "Legend1";
            series31.Name = "Series1";
            series31.Points.Add(dataPoint97);
            series31.Points.Add(dataPoint98);
            series31.Points.Add(dataPoint99);
            series31.Points.Add(dataPoint100);
            series31.Points.Add(dataPoint101);
            series31.Points.Add(dataPoint102);
            series31.Points.Add(dataPoint103);
            series31.Points.Add(dataPoint104);
            series32.ChartArea = "ChartArea1";
            series32.Legend = "Legend1";
            series32.Name = "Series2";
            series32.Points.Add(dataPoint105);
            series32.Points.Add(dataPoint106);
            series32.Points.Add(dataPoint107);
            series32.Points.Add(dataPoint108);
            series32.Points.Add(dataPoint109);
            series32.Points.Add(dataPoint110);
            series32.Points.Add(dataPoint111);
            series32.Points.Add(dataPoint112);
            series33.ChartArea = "ChartArea1";
            series33.Legend = "Legend1";
            series33.Name = "Series3";
            this.chart6.Series.Add(series31);
            this.chart6.Series.Add(series32);
            this.chart6.Series.Add(series33);
            this.chart6.Size = new System.Drawing.Size(1142, 299);
            this.chart6.TabIndex = 342;
            this.chart6.Text = "chart6";
            // 
            // chart3
            // 
            chartArea12.Name = "ChartArea1";
            this.chart3.ChartAreas.Add(chartArea12);
            legend12.Name = "Legend1";
            this.chart3.Legends.Add(legend12);
            this.chart3.Location = new System.Drawing.Point(65, 4);
            this.chart3.Name = "chart3";
            series34.ChartArea = "ChartArea1";
            series34.Legend = "Legend1";
            series34.Name = "Series1";
            series34.Points.Add(dataPoint113);
            series34.Points.Add(dataPoint114);
            series34.Points.Add(dataPoint115);
            series34.Points.Add(dataPoint116);
            series34.Points.Add(dataPoint117);
            series34.Points.Add(dataPoint118);
            series34.Points.Add(dataPoint119);
            series34.Points.Add(dataPoint120);
            series35.ChartArea = "ChartArea1";
            series35.Legend = "Legend1";
            series35.Name = "Series2";
            series35.Points.Add(dataPoint121);
            series35.Points.Add(dataPoint122);
            series35.Points.Add(dataPoint123);
            series35.Points.Add(dataPoint124);
            series35.Points.Add(dataPoint125);
            series35.Points.Add(dataPoint126);
            series35.Points.Add(dataPoint127);
            series35.Points.Add(dataPoint128);
            series36.ChartArea = "ChartArea1";
            series36.Legend = "Legend1";
            series36.Name = "Series3";
            this.chart3.Series.Add(series34);
            this.chart3.Series.Add(series35);
            this.chart3.Series.Add(series36);
            this.chart3.Size = new System.Drawing.Size(1142, 299);
            this.chart3.TabIndex = 341;
            this.chart3.Text = "chart6";
            // 
            // label107
            // 
            this.label107.AutoSize = true;
            this.label107.ForeColor = System.Drawing.Color.Black;
            this.label107.Location = new System.Drawing.Point(1176, 317);
            this.label107.Name = "label107";
            this.label107.Size = new System.Drawing.Size(63, 12);
            this.label107.TabIndex = 354;
            this.label107.Text = "(단위 : 원)";
            // 
            // label108
            // 
            this.label108.AutoSize = true;
            this.label108.ForeColor = System.Drawing.Color.Black;
            this.label108.Location = new System.Drawing.Point(815, 317);
            this.label108.Name = "label108";
            this.label108.Size = new System.Drawing.Size(63, 12);
            this.label108.TabIndex = 353;
            this.label108.Text = "(단위 : 원)";
            // 
            // label111
            // 
            this.label111.AutoSize = true;
            this.label111.ForeColor = System.Drawing.Color.Black;
            this.label111.Location = new System.Drawing.Point(465, 317);
            this.label111.Name = "label111";
            this.label111.Size = new System.Drawing.Size(63, 12);
            this.label111.TabIndex = 352;
            this.label111.Text = "(단위 : 원)";
            // 
            // label112
            // 
            this.label112.AutoSize = true;
            this.label112.ForeColor = System.Drawing.Color.Black;
            this.label112.Location = new System.Drawing.Point(1173, 20);
            this.label112.Name = "label112";
            this.label112.Size = new System.Drawing.Size(63, 12);
            this.label112.TabIndex = 351;
            this.label112.Text = "(단위 : 원)";
            // 
            // label113
            // 
            this.label113.AutoSize = true;
            this.label113.ForeColor = System.Drawing.Color.Black;
            this.label113.Location = new System.Drawing.Point(815, 20);
            this.label113.Name = "label113";
            this.label113.Size = new System.Drawing.Size(63, 12);
            this.label113.TabIndex = 350;
            this.label113.Text = "(단위 : 원)";
            // 
            // label114
            // 
            this.label114.AutoSize = true;
            this.label114.ForeColor = System.Drawing.Color.Black;
            this.label114.Location = new System.Drawing.Point(465, 20);
            this.label114.Name = "label114";
            this.label114.Size = new System.Drawing.Size(63, 12);
            this.label114.TabIndex = 349;
            this.label114.Text = "(단위 : 원)";
            // 
            // lblTitle9
            // 
            this.lblTitle9.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle9.ForeColor = System.Drawing.Color.Black;
            this.lblTitle9.Location = new System.Drawing.Point(877, 15);
            this.lblTitle9.Name = "lblTitle9";
            this.lblTitle9.Size = new System.Drawing.Size(355, 15);
            this.lblTitle9.TabIndex = 344;
            this.lblTitle9.Text = "시뮬레이션 당대리점";
            this.lblTitle9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblTitle8
            // 
            this.lblTitle8.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle8.ForeColor = System.Drawing.Color.Black;
            this.lblTitle8.Location = new System.Drawing.Point(527, 15);
            this.lblTitle8.Name = "lblTitle8";
            this.lblTitle8.Size = new System.Drawing.Size(351, 15);
            this.lblTitle8.TabIndex = 343;
            this.lblTitle8.Text = "당대리점";
            this.lblTitle8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblTitle7
            // 
            this.lblTitle7.Font = new System.Drawing.Font("굴림", 11F, System.Drawing.FontStyle.Bold);
            this.lblTitle7.ForeColor = System.Drawing.Color.Black;
            this.lblTitle7.Location = new System.Drawing.Point(177, 15);
            this.lblTitle7.Name = "lblTitle7";
            this.lblTitle7.Size = new System.Drawing.Size(351, 15);
            this.lblTitle7.TabIndex = 342;
            this.lblTitle7.Text = "업계평균";
            this.lblTitle7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // panel117
            // 
            this.panel117.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel117.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel117.Controls.Add(this.panel118);
            this.panel117.Controls.Add(this.panel120);
            this.panel117.ForeColor = System.Drawing.Color.Black;
            this.panel117.Location = new System.Drawing.Point(880, 585);
            this.panel117.Name = "panel117";
            this.panel117.Size = new System.Drawing.Size(1, 60);
            this.panel117.TabIndex = 272;
            // 
            // panel118
            // 
            this.panel118.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel118.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel118.Controls.Add(this.panel119);
            this.panel118.ForeColor = System.Drawing.Color.Black;
            this.panel118.Location = new System.Drawing.Point(0, 0);
            this.panel118.Name = "panel118";
            this.panel118.Size = new System.Drawing.Size(1, 270);
            this.panel118.TabIndex = 96;
            // 
            // panel119
            // 
            this.panel119.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel119.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel119.ForeColor = System.Drawing.Color.Black;
            this.panel119.Location = new System.Drawing.Point(0, 0);
            this.panel119.Name = "panel119";
            this.panel119.Size = new System.Drawing.Size(1, 270);
            this.panel119.TabIndex = 95;
            // 
            // panel120
            // 
            this.panel120.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel120.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel120.ForeColor = System.Drawing.Color.Black;
            this.panel120.Location = new System.Drawing.Point(0, 0);
            this.panel120.Name = "panel120";
            this.panel120.Size = new System.Drawing.Size(1, 270);
            this.panel120.TabIndex = 95;
            // 
            // panel113
            // 
            this.panel113.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel113.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel113.Controls.Add(this.panel114);
            this.panel113.Controls.Add(this.panel116);
            this.panel113.ForeColor = System.Drawing.Color.Black;
            this.panel113.Location = new System.Drawing.Point(530, 585);
            this.panel113.Name = "panel113";
            this.panel113.Size = new System.Drawing.Size(1, 60);
            this.panel113.TabIndex = 256;
            // 
            // panel114
            // 
            this.panel114.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel114.Controls.Add(this.panel115);
            this.panel114.ForeColor = System.Drawing.Color.Black;
            this.panel114.Location = new System.Drawing.Point(0, 0);
            this.panel114.Name = "panel114";
            this.panel114.Size = new System.Drawing.Size(1, 270);
            this.panel114.TabIndex = 96;
            // 
            // panel115
            // 
            this.panel115.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel115.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel115.ForeColor = System.Drawing.Color.Black;
            this.panel115.Location = new System.Drawing.Point(0, 0);
            this.panel115.Name = "panel115";
            this.panel115.Size = new System.Drawing.Size(1, 270);
            this.panel115.TabIndex = 95;
            // 
            // panel116
            // 
            this.panel116.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel116.ForeColor = System.Drawing.Color.Black;
            this.panel116.Location = new System.Drawing.Point(0, 0);
            this.panel116.Name = "panel116";
            this.panel116.Size = new System.Drawing.Size(1, 270);
            this.panel116.TabIndex = 95;
            // 
            // pictureBox4
            // 
            this.pictureBox4.Image = global::KIWI.Properties.Resources.data1;
            this.pictureBox4.Location = new System.Drawing.Point(109, 8);
            this.pictureBox4.Name = "pictureBox4";
            this.pictureBox4.Size = new System.Drawing.Size(29, 23);
            this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox4.TabIndex = 220;
            this.pictureBox4.TabStop = false;
            this.pictureBox4.Click += new System.EventHandler(this.pictureBox4_Click);
            // 
            // panel109
            // 
            this.panel109.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel109.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel109.Controls.Add(this.panel110);
            this.panel109.Controls.Add(this.panel112);
            this.panel109.ForeColor = System.Drawing.Color.Black;
            this.panel109.Location = new System.Drawing.Point(180, 587);
            this.panel109.Name = "panel109";
            this.panel109.Size = new System.Drawing.Size(1, 60);
            this.panel109.TabIndex = 255;
            // 
            // panel110
            // 
            this.panel110.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel110.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel110.Controls.Add(this.panel111);
            this.panel110.ForeColor = System.Drawing.Color.Black;
            this.panel110.Location = new System.Drawing.Point(0, 0);
            this.panel110.Name = "panel110";
            this.panel110.Size = new System.Drawing.Size(1, 270);
            this.panel110.TabIndex = 96;
            // 
            // panel111
            // 
            this.panel111.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel111.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel111.ForeColor = System.Drawing.Color.Black;
            this.panel111.Location = new System.Drawing.Point(0, 0);
            this.panel111.Name = "panel111";
            this.panel111.Size = new System.Drawing.Size(1, 270);
            this.panel111.TabIndex = 95;
            // 
            // panel112
            // 
            this.panel112.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel112.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel112.ForeColor = System.Drawing.Color.Black;
            this.panel112.Location = new System.Drawing.Point(0, 0);
            this.panel112.Name = "panel112";
            this.panel112.Size = new System.Drawing.Size(1, 270);
            this.panel112.TabIndex = 95;
            // 
            // panel105
            // 
            this.panel105.BackColor = System.Drawing.Color.LightSalmon;
            this.panel105.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel105.Controls.Add(this.panel106);
            this.panel105.ForeColor = System.Drawing.Color.Black;
            this.panel105.Location = new System.Drawing.Point(0, 585);
            this.panel105.Name = "panel105";
            this.panel105.Size = new System.Drawing.Size(1240, 3);
            this.panel105.TabIndex = 258;
            // 
            // panel106
            // 
            this.panel106.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel106.Location = new System.Drawing.Point(0, 20);
            this.panel106.Name = "panel106";
            this.panel106.Size = new System.Drawing.Size(698, 5);
            this.panel106.TabIndex = 18;
            // 
            // txtROut72
            // 
            this.txtROut72.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut72.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut72.ForeColor = System.Drawing.Color.Black;
            this.txtROut72.Location = new System.Drawing.Point(1080, 625);
            this.txtROut72.Name = "txtROut72";
            this.txtROut72.ReadOnly = true;
            this.txtROut72.Size = new System.Drawing.Size(129, 14);
            this.txtROut72.TabIndex = 269;
            this.txtROut72.Text = "0";
            this.txtROut72.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtROut72.TextChanged += new System.EventHandler(this.set점별손익추정_TextChanged);
            // 
            // txtROut48
            // 
            this.txtROut48.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut48.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut48.ForeColor = System.Drawing.Color.Black;
            this.txtROut48.Location = new System.Drawing.Point(720, 625);
            this.txtROut48.Name = "txtROut48";
            this.txtROut48.ReadOnly = true;
            this.txtROut48.Size = new System.Drawing.Size(129, 14);
            this.txtROut48.TabIndex = 270;
            this.txtROut48.Text = "0";
            this.txtROut48.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtROut48.TextChanged += new System.EventHandler(this.set점별손익추정_TextChanged);
            // 
            // txtROut24
            // 
            this.txtROut24.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut24.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut24.ForeColor = System.Drawing.Color.Black;
            this.txtROut24.Location = new System.Drawing.Point(370, 625);
            this.txtROut24.Name = "txtROut24";
            this.txtROut24.ReadOnly = true;
            this.txtROut24.Size = new System.Drawing.Size(129, 14);
            this.txtROut24.TabIndex = 271;
            this.txtROut24.Text = "0";
            this.txtROut24.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtROut24.TextChanged += new System.EventHandler(this.set점별손익추정_TextChanged);
            // 
            // txtROut60
            // 
            this.txtROut60.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut60.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut60.ForeColor = System.Drawing.Color.Black;
            this.txtROut60.Location = new System.Drawing.Point(920, 625);
            this.txtROut60.Name = "txtROut60";
            this.txtROut60.ReadOnly = true;
            this.txtROut60.Size = new System.Drawing.Size(129, 14);
            this.txtROut60.TabIndex = 267;
            this.txtROut60.Text = "0";
            this.txtROut60.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut36
            // 
            this.txtROut36.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut36.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut36.ForeColor = System.Drawing.Color.Black;
            this.txtROut36.Location = new System.Drawing.Point(560, 625);
            this.txtROut36.Name = "txtROut36";
            this.txtROut36.ReadOnly = true;
            this.txtROut36.Size = new System.Drawing.Size(129, 14);
            this.txtROut36.TabIndex = 268;
            this.txtROut36.Text = "0";
            this.txtROut36.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut12
            // 
            this.txtROut12.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut12.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut12.ForeColor = System.Drawing.Color.Black;
            this.txtROut12.Location = new System.Drawing.Point(210, 625);
            this.txtROut12.Name = "txtROut12";
            this.txtROut12.ReadOnly = true;
            this.txtROut12.Size = new System.Drawing.Size(129, 14);
            this.txtROut12.TabIndex = 266;
            this.txtROut12.Text = "0";
            this.txtROut12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label66
            // 
            this.label66.AutoSize = true;
            this.label66.BackColor = System.Drawing.Color.LemonChiffon;
            this.label66.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label66.ForeColor = System.Drawing.Color.Black;
            this.label66.Location = new System.Drawing.Point(1110, 342);
            this.label66.Name = "label66";
            this.label66.Size = new System.Drawing.Size(70, 12);
            this.label66.TabIndex = 226;
            this.label66.Text = "단위당금액";
            // 
            // txtROut71
            // 
            this.txtROut71.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut71.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut71.ForeColor = System.Drawing.Color.Black;
            this.txtROut71.Location = new System.Drawing.Point(1080, 595);
            this.txtROut71.Name = "txtROut71";
            this.txtROut71.ReadOnly = true;
            this.txtROut71.Size = new System.Drawing.Size(129, 14);
            this.txtROut71.TabIndex = 263;
            this.txtROut71.Text = "0";
            this.txtROut71.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut47
            // 
            this.txtROut47.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut47.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut47.ForeColor = System.Drawing.Color.Black;
            this.txtROut47.Location = new System.Drawing.Point(720, 595);
            this.txtROut47.Name = "txtROut47";
            this.txtROut47.ReadOnly = true;
            this.txtROut47.Size = new System.Drawing.Size(129, 14);
            this.txtROut47.TabIndex = 264;
            this.txtROut47.Text = "0";
            this.txtROut47.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label42
            // 
            this.label42.AutoSize = true;
            this.label42.BackColor = System.Drawing.Color.LemonChiffon;
            this.label42.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label42.ForeColor = System.Drawing.Color.Black;
            this.label42.Location = new System.Drawing.Point(1110, 45);
            this.label42.Name = "label42";
            this.label42.Size = new System.Drawing.Size(70, 12);
            this.label42.TabIndex = 226;
            this.label42.Text = "단위당금액";
            // 
            // txtROut23
            // 
            this.txtROut23.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut23.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut23.ForeColor = System.Drawing.Color.Black;
            this.txtROut23.Location = new System.Drawing.Point(370, 595);
            this.txtROut23.Name = "txtROut23";
            this.txtROut23.ReadOnly = true;
            this.txtROut23.Size = new System.Drawing.Size(129, 14);
            this.txtROut23.TabIndex = 265;
            this.txtROut23.Text = "0";
            this.txtROut23.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut59
            // 
            this.txtROut59.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut59.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut59.ForeColor = System.Drawing.Color.Black;
            this.txtROut59.Location = new System.Drawing.Point(920, 595);
            this.txtROut59.Name = "txtROut59";
            this.txtROut59.ReadOnly = true;
            this.txtROut59.Size = new System.Drawing.Size(129, 14);
            this.txtROut59.TabIndex = 261;
            this.txtROut59.Text = "0";
            this.txtROut59.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label104
            // 
            this.label104.AutoSize = true;
            this.label104.BackColor = System.Drawing.Color.Gainsboro;
            this.label104.ForeColor = System.Drawing.Color.Black;
            this.label104.Location = new System.Drawing.Point(35, 135);
            this.label104.Name = "label104";
            this.label104.Size = new System.Drawing.Size(29, 12);
            this.label104.TabIndex = 225;
            this.label104.Text = "소계";
            // 
            // txtROut35
            // 
            this.txtROut35.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut35.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut35.ForeColor = System.Drawing.Color.Black;
            this.txtROut35.Location = new System.Drawing.Point(560, 595);
            this.txtROut35.Name = "txtROut35";
            this.txtROut35.ReadOnly = true;
            this.txtROut35.Size = new System.Drawing.Size(129, 14);
            this.txtROut35.TabIndex = 262;
            this.txtROut35.Text = "0";
            this.txtROut35.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut11
            // 
            this.txtROut11.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut11.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut11.ForeColor = System.Drawing.Color.Black;
            this.txtROut11.Location = new System.Drawing.Point(210, 595);
            this.txtROut11.Name = "txtROut11";
            this.txtROut11.ReadOnly = true;
            this.txtROut11.Size = new System.Drawing.Size(129, 14);
            this.txtROut11.TabIndex = 260;
            this.txtROut11.Text = "0";
            this.txtROut11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label65
            // 
            this.label65.AutoSize = true;
            this.label65.BackColor = System.Drawing.Color.LemonChiffon;
            this.label65.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label65.ForeColor = System.Drawing.Color.Black;
            this.label65.Location = new System.Drawing.Point(970, 342);
            this.label65.Name = "label65";
            this.label65.Size = new System.Drawing.Size(31, 12);
            this.label65.TabIndex = 229;
            this.label65.Text = "총액";
            // 
            // panel104
            // 
            this.panel104.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel104.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel104.ForeColor = System.Drawing.Color.Black;
            this.panel104.Location = new System.Drawing.Point(0, 616);
            this.panel104.Name = "panel104";
            this.panel104.Size = new System.Drawing.Size(1240, 2);
            this.panel104.TabIndex = 253;
            // 
            // panel102
            // 
            this.panel102.BackColor = System.Drawing.Color.LightSalmon;
            this.panel102.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel102.Controls.Add(this.panel103);
            this.panel102.ForeColor = System.Drawing.Color.Black;
            this.panel102.Location = new System.Drawing.Point(0, 646);
            this.panel102.Name = "panel102";
            this.panel102.Size = new System.Drawing.Size(1240, 3);
            this.panel102.TabIndex = 257;
            // 
            // panel103
            // 
            this.panel103.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel103.Location = new System.Drawing.Point(0, 20);
            this.panel103.Name = "panel103";
            this.panel103.Size = new System.Drawing.Size(698, 5);
            this.panel103.TabIndex = 18;
            // 
            // label43
            // 
            this.label43.AutoSize = true;
            this.label43.BackColor = System.Drawing.Color.LemonChiffon;
            this.label43.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label43.ForeColor = System.Drawing.Color.Black;
            this.label43.Location = new System.Drawing.Point(970, 45);
            this.label43.Name = "label43";
            this.label43.Size = new System.Drawing.Size(31, 12);
            this.label43.TabIndex = 229;
            this.label43.Text = "총액";
            // 
            // label119
            // 
            this.label119.AutoSize = true;
            this.label119.BackColor = System.Drawing.Color.Gainsboro;
            this.label119.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Bold);
            this.label119.ForeColor = System.Drawing.Color.Black;
            this.label119.Location = new System.Drawing.Point(35, 625);
            this.label119.Name = "label119";
            this.label119.Size = new System.Drawing.Size(103, 14);
            this.label119.TabIndex = 259;
            this.label119.Text = "점별손익 추정";
            // 
            // label118
            // 
            this.label118.AutoSize = true;
            this.label118.BackColor = System.Drawing.Color.Gainsboro;
            this.label118.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Bold);
            this.label118.ForeColor = System.Drawing.Color.Black;
            this.label118.Location = new System.Drawing.Point(35, 596);
            this.label118.Name = "label118";
            this.label118.Size = new System.Drawing.Size(58, 14);
            this.label118.TabIndex = 254;
            this.label118.Text = "손익 계";
            // 
            // label64
            // 
            this.label64.AutoSize = true;
            this.label64.BackColor = System.Drawing.Color.LemonChiffon;
            this.label64.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label64.ForeColor = System.Drawing.Color.Black;
            this.label64.Location = new System.Drawing.Point(750, 342);
            this.label64.Name = "label64";
            this.label64.Size = new System.Drawing.Size(70, 12);
            this.label64.TabIndex = 227;
            this.label64.Text = "단위당금액";
            // 
            // label49
            // 
            this.label49.AutoSize = true;
            this.label49.BackColor = System.Drawing.Color.LemonChiffon;
            this.label49.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label49.ForeColor = System.Drawing.Color.Black;
            this.label49.Location = new System.Drawing.Point(750, 45);
            this.label49.Name = "label49";
            this.label49.Size = new System.Drawing.Size(70, 12);
            this.label49.TabIndex = 227;
            this.label49.Text = "단위당금액";
            // 
            // label61
            // 
            this.label61.AutoSize = true;
            this.label61.BackColor = System.Drawing.Color.LemonChiffon;
            this.label61.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label61.ForeColor = System.Drawing.Color.Black;
            this.label61.Location = new System.Drawing.Point(610, 342);
            this.label61.Name = "label61";
            this.label61.Size = new System.Drawing.Size(31, 12);
            this.label61.TabIndex = 228;
            this.label61.Text = "총액";
            // 
            // label50
            // 
            this.label50.AutoSize = true;
            this.label50.BackColor = System.Drawing.Color.LemonChiffon;
            this.label50.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label50.ForeColor = System.Drawing.Color.Black;
            this.label50.Location = new System.Drawing.Point(610, 45);
            this.label50.Name = "label50";
            this.label50.Size = new System.Drawing.Size(31, 12);
            this.label50.TabIndex = 228;
            this.label50.Text = "총액";
            // 
            // label60
            // 
            this.label60.AutoSize = true;
            this.label60.BackColor = System.Drawing.Color.LemonChiffon;
            this.label60.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label60.ForeColor = System.Drawing.Color.Black;
            this.label60.Location = new System.Drawing.Point(400, 342);
            this.label60.Name = "label60";
            this.label60.Size = new System.Drawing.Size(70, 12);
            this.label60.TabIndex = 224;
            this.label60.Text = "단위당금액";
            // 
            // label51
            // 
            this.label51.AutoSize = true;
            this.label51.BackColor = System.Drawing.Color.LemonChiffon;
            this.label51.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label51.ForeColor = System.Drawing.Color.Black;
            this.label51.Location = new System.Drawing.Point(400, 45);
            this.label51.Name = "label51";
            this.label51.Size = new System.Drawing.Size(70, 12);
            this.label51.TabIndex = 224;
            this.label51.Text = "단위당금액";
            // 
            // label59
            // 
            this.label59.AutoSize = true;
            this.label59.BackColor = System.Drawing.Color.LemonChiffon;
            this.label59.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label59.ForeColor = System.Drawing.Color.Black;
            this.label59.Location = new System.Drawing.Point(260, 342);
            this.label59.Name = "label59";
            this.label59.Size = new System.Drawing.Size(31, 12);
            this.label59.TabIndex = 225;
            this.label59.Text = "총액";
            // 
            // label77
            // 
            this.label77.AutoSize = true;
            this.label77.BackColor = System.Drawing.Color.LemonChiffon;
            this.label77.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label77.ForeColor = System.Drawing.Color.Black;
            this.label77.Location = new System.Drawing.Point(260, 45);
            this.label77.Name = "label77";
            this.label77.Size = new System.Drawing.Size(31, 12);
            this.label77.TabIndex = 225;
            this.label77.Text = "총액";
            // 
            // txtROut70
            // 
            this.txtROut70.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut70.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut70.ForeColor = System.Drawing.Color.Black;
            this.txtROut70.Location = new System.Drawing.Point(1080, 551);
            this.txtROut70.Name = "txtROut70";
            this.txtROut70.ReadOnly = true;
            this.txtROut70.Size = new System.Drawing.Size(129, 14);
            this.txtROut70.TabIndex = 221;
            this.txtROut70.Text = "0";
            this.txtROut70.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut69
            // 
            this.txtROut69.BackColor = System.Drawing.Color.White;
            this.txtROut69.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut69.ForeColor = System.Drawing.Color.Black;
            this.txtROut69.Location = new System.Drawing.Point(1080, 521);
            this.txtROut69.Name = "txtROut69";
            this.txtROut69.ReadOnly = true;
            this.txtROut69.Size = new System.Drawing.Size(129, 14);
            this.txtROut69.TabIndex = 221;
            this.txtROut69.Text = "0";
            this.txtROut69.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut68
            // 
            this.txtROut68.BackColor = System.Drawing.Color.White;
            this.txtROut68.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut68.ForeColor = System.Drawing.Color.Black;
            this.txtROut68.Location = new System.Drawing.Point(1080, 491);
            this.txtROut68.Name = "txtROut68";
            this.txtROut68.ReadOnly = true;
            this.txtROut68.Size = new System.Drawing.Size(129, 14);
            this.txtROut68.TabIndex = 222;
            this.txtROut68.Text = "0";
            this.txtROut68.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut67
            // 
            this.txtROut67.BackColor = System.Drawing.Color.White;
            this.txtROut67.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut67.ForeColor = System.Drawing.Color.Black;
            this.txtROut67.Location = new System.Drawing.Point(1080, 461);
            this.txtROut67.Name = "txtROut67";
            this.txtROut67.ReadOnly = true;
            this.txtROut67.Size = new System.Drawing.Size(129, 14);
            this.txtROut67.TabIndex = 218;
            this.txtROut67.Text = "0";
            this.txtROut67.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut66
            // 
            this.txtROut66.BackColor = System.Drawing.Color.White;
            this.txtROut66.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut66.ForeColor = System.Drawing.Color.Black;
            this.txtROut66.Location = new System.Drawing.Point(1080, 431);
            this.txtROut66.Name = "txtROut66";
            this.txtROut66.ReadOnly = true;
            this.txtROut66.Size = new System.Drawing.Size(129, 14);
            this.txtROut66.TabIndex = 219;
            this.txtROut66.Text = "0";
            this.txtROut66.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut65
            // 
            this.txtROut65.BackColor = System.Drawing.Color.White;
            this.txtROut65.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut65.ForeColor = System.Drawing.Color.Black;
            this.txtROut65.Location = new System.Drawing.Point(1080, 401);
            this.txtROut65.Name = "txtROut65";
            this.txtROut65.ReadOnly = true;
            this.txtROut65.Size = new System.Drawing.Size(129, 14);
            this.txtROut65.TabIndex = 220;
            this.txtROut65.Text = "0";
            this.txtROut65.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut64
            // 
            this.txtROut64.BackColor = System.Drawing.Color.White;
            this.txtROut64.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut64.ForeColor = System.Drawing.Color.Black;
            this.txtROut64.Location = new System.Drawing.Point(1080, 371);
            this.txtROut64.Name = "txtROut64";
            this.txtROut64.ReadOnly = true;
            this.txtROut64.Size = new System.Drawing.Size(129, 14);
            this.txtROut64.TabIndex = 223;
            this.txtROut64.Text = "0";
            this.txtROut64.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut58
            // 
            this.txtROut58.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut58.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut58.ForeColor = System.Drawing.Color.Black;
            this.txtROut58.Location = new System.Drawing.Point(920, 551);
            this.txtROut58.Name = "txtROut58";
            this.txtROut58.ReadOnly = true;
            this.txtROut58.Size = new System.Drawing.Size(129, 14);
            this.txtROut58.TabIndex = 215;
            this.txtROut58.Text = "0";
            this.txtROut58.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut57
            // 
            this.txtROut57.BackColor = System.Drawing.Color.White;
            this.txtROut57.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut57.ForeColor = System.Drawing.Color.Black;
            this.txtROut57.Location = new System.Drawing.Point(920, 521);
            this.txtROut57.Name = "txtROut57";
            this.txtROut57.ReadOnly = true;
            this.txtROut57.Size = new System.Drawing.Size(129, 14);
            this.txtROut57.TabIndex = 215;
            this.txtROut57.Text = "0";
            this.txtROut57.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut56
            // 
            this.txtROut56.BackColor = System.Drawing.Color.White;
            this.txtROut56.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut56.ForeColor = System.Drawing.Color.Black;
            this.txtROut56.Location = new System.Drawing.Point(920, 491);
            this.txtROut56.Name = "txtROut56";
            this.txtROut56.ReadOnly = true;
            this.txtROut56.Size = new System.Drawing.Size(129, 14);
            this.txtROut56.TabIndex = 216;
            this.txtROut56.Text = "0";
            this.txtROut56.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut55
            // 
            this.txtROut55.BackColor = System.Drawing.Color.White;
            this.txtROut55.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut55.ForeColor = System.Drawing.Color.Black;
            this.txtROut55.Location = new System.Drawing.Point(920, 461);
            this.txtROut55.Name = "txtROut55";
            this.txtROut55.ReadOnly = true;
            this.txtROut55.Size = new System.Drawing.Size(129, 14);
            this.txtROut55.TabIndex = 212;
            this.txtROut55.Text = "0";
            this.txtROut55.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut54
            // 
            this.txtROut54.BackColor = System.Drawing.Color.White;
            this.txtROut54.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut54.ForeColor = System.Drawing.Color.Black;
            this.txtROut54.Location = new System.Drawing.Point(920, 431);
            this.txtROut54.Name = "txtROut54";
            this.txtROut54.ReadOnly = true;
            this.txtROut54.Size = new System.Drawing.Size(129, 14);
            this.txtROut54.TabIndex = 213;
            this.txtROut54.Text = "0";
            this.txtROut54.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut53
            // 
            this.txtROut53.BackColor = System.Drawing.Color.White;
            this.txtROut53.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut53.ForeColor = System.Drawing.Color.Black;
            this.txtROut53.Location = new System.Drawing.Point(920, 401);
            this.txtROut53.Name = "txtROut53";
            this.txtROut53.ReadOnly = true;
            this.txtROut53.Size = new System.Drawing.Size(129, 14);
            this.txtROut53.TabIndex = 214;
            this.txtROut53.Text = "0";
            this.txtROut53.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut52
            // 
            this.txtROut52.BackColor = System.Drawing.Color.White;
            this.txtROut52.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut52.ForeColor = System.Drawing.Color.Black;
            this.txtROut52.Location = new System.Drawing.Point(920, 371);
            this.txtROut52.Name = "txtROut52";
            this.txtROut52.ReadOnly = true;
            this.txtROut52.Size = new System.Drawing.Size(129, 14);
            this.txtROut52.TabIndex = 217;
            this.txtROut52.Text = "0";
            this.txtROut52.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut46
            // 
            this.txtROut46.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut46.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut46.ForeColor = System.Drawing.Color.Black;
            this.txtROut46.Location = new System.Drawing.Point(720, 551);
            this.txtROut46.Name = "txtROut46";
            this.txtROut46.ReadOnly = true;
            this.txtROut46.Size = new System.Drawing.Size(129, 14);
            this.txtROut46.TabIndex = 209;
            this.txtROut46.Text = "0";
            this.txtROut46.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut45
            // 
            this.txtROut45.BackColor = System.Drawing.Color.White;
            this.txtROut45.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut45.ForeColor = System.Drawing.Color.Black;
            this.txtROut45.Location = new System.Drawing.Point(720, 521);
            this.txtROut45.Name = "txtROut45";
            this.txtROut45.ReadOnly = true;
            this.txtROut45.Size = new System.Drawing.Size(129, 14);
            this.txtROut45.TabIndex = 209;
            this.txtROut45.Text = "0";
            this.txtROut45.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut44
            // 
            this.txtROut44.BackColor = System.Drawing.Color.White;
            this.txtROut44.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut44.ForeColor = System.Drawing.Color.Black;
            this.txtROut44.Location = new System.Drawing.Point(720, 491);
            this.txtROut44.Name = "txtROut44";
            this.txtROut44.ReadOnly = true;
            this.txtROut44.Size = new System.Drawing.Size(129, 14);
            this.txtROut44.TabIndex = 210;
            this.txtROut44.Text = "0";
            this.txtROut44.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut43
            // 
            this.txtROut43.BackColor = System.Drawing.Color.White;
            this.txtROut43.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut43.ForeColor = System.Drawing.Color.Black;
            this.txtROut43.Location = new System.Drawing.Point(720, 461);
            this.txtROut43.Name = "txtROut43";
            this.txtROut43.ReadOnly = true;
            this.txtROut43.Size = new System.Drawing.Size(129, 14);
            this.txtROut43.TabIndex = 206;
            this.txtROut43.Text = "0";
            this.txtROut43.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut42
            // 
            this.txtROut42.BackColor = System.Drawing.Color.White;
            this.txtROut42.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut42.ForeColor = System.Drawing.Color.Black;
            this.txtROut42.Location = new System.Drawing.Point(720, 431);
            this.txtROut42.Name = "txtROut42";
            this.txtROut42.ReadOnly = true;
            this.txtROut42.Size = new System.Drawing.Size(129, 14);
            this.txtROut42.TabIndex = 207;
            this.txtROut42.Text = "0";
            this.txtROut42.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut41
            // 
            this.txtROut41.BackColor = System.Drawing.Color.White;
            this.txtROut41.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut41.ForeColor = System.Drawing.Color.Black;
            this.txtROut41.Location = new System.Drawing.Point(720, 401);
            this.txtROut41.Name = "txtROut41";
            this.txtROut41.ReadOnly = true;
            this.txtROut41.Size = new System.Drawing.Size(129, 14);
            this.txtROut41.TabIndex = 208;
            this.txtROut41.Text = "0";
            this.txtROut41.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut40
            // 
            this.txtROut40.BackColor = System.Drawing.Color.White;
            this.txtROut40.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut40.ForeColor = System.Drawing.Color.Black;
            this.txtROut40.Location = new System.Drawing.Point(720, 371);
            this.txtROut40.Name = "txtROut40";
            this.txtROut40.ReadOnly = true;
            this.txtROut40.Size = new System.Drawing.Size(129, 14);
            this.txtROut40.TabIndex = 211;
            this.txtROut40.Text = "0";
            this.txtROut40.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut34
            // 
            this.txtROut34.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut34.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut34.ForeColor = System.Drawing.Color.Black;
            this.txtROut34.Location = new System.Drawing.Point(560, 551);
            this.txtROut34.Name = "txtROut34";
            this.txtROut34.ReadOnly = true;
            this.txtROut34.Size = new System.Drawing.Size(129, 14);
            this.txtROut34.TabIndex = 203;
            this.txtROut34.Text = "0";
            this.txtROut34.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut33
            // 
            this.txtROut33.BackColor = System.Drawing.Color.White;
            this.txtROut33.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut33.ForeColor = System.Drawing.Color.Black;
            this.txtROut33.Location = new System.Drawing.Point(560, 521);
            this.txtROut33.Name = "txtROut33";
            this.txtROut33.ReadOnly = true;
            this.txtROut33.Size = new System.Drawing.Size(129, 14);
            this.txtROut33.TabIndex = 203;
            this.txtROut33.Text = "0";
            this.txtROut33.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut32
            // 
            this.txtROut32.BackColor = System.Drawing.Color.White;
            this.txtROut32.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut32.ForeColor = System.Drawing.Color.Black;
            this.txtROut32.Location = new System.Drawing.Point(560, 491);
            this.txtROut32.Name = "txtROut32";
            this.txtROut32.ReadOnly = true;
            this.txtROut32.Size = new System.Drawing.Size(129, 14);
            this.txtROut32.TabIndex = 204;
            this.txtROut32.Text = "0";
            this.txtROut32.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut31
            // 
            this.txtROut31.BackColor = System.Drawing.Color.White;
            this.txtROut31.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut31.ForeColor = System.Drawing.Color.Black;
            this.txtROut31.Location = new System.Drawing.Point(560, 461);
            this.txtROut31.Name = "txtROut31";
            this.txtROut31.ReadOnly = true;
            this.txtROut31.Size = new System.Drawing.Size(129, 14);
            this.txtROut31.TabIndex = 200;
            this.txtROut31.Text = "0";
            this.txtROut31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut30
            // 
            this.txtROut30.BackColor = System.Drawing.Color.White;
            this.txtROut30.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut30.ForeColor = System.Drawing.Color.Black;
            this.txtROut30.Location = new System.Drawing.Point(560, 431);
            this.txtROut30.Name = "txtROut30";
            this.txtROut30.ReadOnly = true;
            this.txtROut30.Size = new System.Drawing.Size(129, 14);
            this.txtROut30.TabIndex = 201;
            this.txtROut30.Text = "0";
            this.txtROut30.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut29
            // 
            this.txtROut29.BackColor = System.Drawing.Color.White;
            this.txtROut29.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut29.ForeColor = System.Drawing.Color.Black;
            this.txtROut29.Location = new System.Drawing.Point(560, 401);
            this.txtROut29.Name = "txtROut29";
            this.txtROut29.ReadOnly = true;
            this.txtROut29.Size = new System.Drawing.Size(129, 14);
            this.txtROut29.TabIndex = 202;
            this.txtROut29.Text = "0";
            this.txtROut29.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut28
            // 
            this.txtROut28.BackColor = System.Drawing.Color.White;
            this.txtROut28.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut28.ForeColor = System.Drawing.Color.Black;
            this.txtROut28.Location = new System.Drawing.Point(560, 371);
            this.txtROut28.Name = "txtROut28";
            this.txtROut28.ReadOnly = true;
            this.txtROut28.Size = new System.Drawing.Size(129, 14);
            this.txtROut28.TabIndex = 205;
            this.txtROut28.Text = "0";
            this.txtROut28.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut22
            // 
            this.txtROut22.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut22.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut22.ForeColor = System.Drawing.Color.Black;
            this.txtROut22.Location = new System.Drawing.Point(370, 551);
            this.txtROut22.Name = "txtROut22";
            this.txtROut22.ReadOnly = true;
            this.txtROut22.Size = new System.Drawing.Size(129, 14);
            this.txtROut22.TabIndex = 197;
            this.txtROut22.Text = "0";
            this.txtROut22.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut21
            // 
            this.txtROut21.BackColor = System.Drawing.Color.White;
            this.txtROut21.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut21.ForeColor = System.Drawing.Color.Black;
            this.txtROut21.Location = new System.Drawing.Point(370, 521);
            this.txtROut21.Name = "txtROut21";
            this.txtROut21.ReadOnly = true;
            this.txtROut21.Size = new System.Drawing.Size(129, 14);
            this.txtROut21.TabIndex = 197;
            this.txtROut21.Text = "0";
            this.txtROut21.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut20
            // 
            this.txtROut20.BackColor = System.Drawing.Color.White;
            this.txtROut20.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut20.ForeColor = System.Drawing.Color.Black;
            this.txtROut20.Location = new System.Drawing.Point(370, 491);
            this.txtROut20.Name = "txtROut20";
            this.txtROut20.ReadOnly = true;
            this.txtROut20.Size = new System.Drawing.Size(129, 14);
            this.txtROut20.TabIndex = 198;
            this.txtROut20.Text = "0";
            this.txtROut20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut19
            // 
            this.txtROut19.BackColor = System.Drawing.Color.White;
            this.txtROut19.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut19.ForeColor = System.Drawing.Color.Black;
            this.txtROut19.Location = new System.Drawing.Point(370, 461);
            this.txtROut19.Name = "txtROut19";
            this.txtROut19.ReadOnly = true;
            this.txtROut19.Size = new System.Drawing.Size(129, 14);
            this.txtROut19.TabIndex = 194;
            this.txtROut19.Text = "0";
            this.txtROut19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut18
            // 
            this.txtROut18.BackColor = System.Drawing.Color.White;
            this.txtROut18.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut18.ForeColor = System.Drawing.Color.Black;
            this.txtROut18.Location = new System.Drawing.Point(370, 431);
            this.txtROut18.Name = "txtROut18";
            this.txtROut18.ReadOnly = true;
            this.txtROut18.Size = new System.Drawing.Size(129, 14);
            this.txtROut18.TabIndex = 195;
            this.txtROut18.Text = "0";
            this.txtROut18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut17
            // 
            this.txtROut17.BackColor = System.Drawing.Color.White;
            this.txtROut17.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut17.ForeColor = System.Drawing.Color.Black;
            this.txtROut17.Location = new System.Drawing.Point(370, 401);
            this.txtROut17.Name = "txtROut17";
            this.txtROut17.ReadOnly = true;
            this.txtROut17.Size = new System.Drawing.Size(129, 14);
            this.txtROut17.TabIndex = 196;
            this.txtROut17.Text = "0";
            this.txtROut17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut16
            // 
            this.txtROut16.BackColor = System.Drawing.Color.White;
            this.txtROut16.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut16.ForeColor = System.Drawing.Color.Black;
            this.txtROut16.Location = new System.Drawing.Point(370, 371);
            this.txtROut16.Name = "txtROut16";
            this.txtROut16.ReadOnly = true;
            this.txtROut16.Size = new System.Drawing.Size(129, 14);
            this.txtROut16.TabIndex = 199;
            this.txtROut16.Text = "0";
            this.txtROut16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut63
            // 
            this.txtROut63.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut63.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut63.ForeColor = System.Drawing.Color.Black;
            this.txtROut63.Location = new System.Drawing.Point(1080, 134);
            this.txtROut63.Name = "txtROut63";
            this.txtROut63.ReadOnly = true;
            this.txtROut63.Size = new System.Drawing.Size(129, 14);
            this.txtROut63.TabIndex = 184;
            this.txtROut63.Text = "0";
            this.txtROut63.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut39
            // 
            this.txtROut39.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut39.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut39.ForeColor = System.Drawing.Color.Black;
            this.txtROut39.Location = new System.Drawing.Point(720, 134);
            this.txtROut39.Name = "txtROut39";
            this.txtROut39.ReadOnly = true;
            this.txtROut39.Size = new System.Drawing.Size(129, 14);
            this.txtROut39.TabIndex = 184;
            this.txtROut39.Text = "0";
            this.txtROut39.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut15
            // 
            this.txtROut15.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut15.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut15.ForeColor = System.Drawing.Color.Black;
            this.txtROut15.Location = new System.Drawing.Point(370, 134);
            this.txtROut15.Name = "txtROut15";
            this.txtROut15.ReadOnly = true;
            this.txtROut15.Size = new System.Drawing.Size(129, 14);
            this.txtROut15.TabIndex = 184;
            this.txtROut15.Text = "0";
            this.txtROut15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut51
            // 
            this.txtROut51.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut51.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut51.ForeColor = System.Drawing.Color.Black;
            this.txtROut51.Location = new System.Drawing.Point(920, 134);
            this.txtROut51.Name = "txtROut51";
            this.txtROut51.ReadOnly = true;
            this.txtROut51.Size = new System.Drawing.Size(129, 14);
            this.txtROut51.TabIndex = 184;
            this.txtROut51.Text = "0";
            this.txtROut51.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut27
            // 
            this.txtROut27.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut27.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut27.ForeColor = System.Drawing.Color.Black;
            this.txtROut27.Location = new System.Drawing.Point(560, 134);
            this.txtROut27.Name = "txtROut27";
            this.txtROut27.ReadOnly = true;
            this.txtROut27.Size = new System.Drawing.Size(129, 14);
            this.txtROut27.TabIndex = 184;
            this.txtROut27.Text = "0";
            this.txtROut27.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut3
            // 
            this.txtROut3.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut3.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut3.ForeColor = System.Drawing.Color.Black;
            this.txtROut3.Location = new System.Drawing.Point(210, 134);
            this.txtROut3.Name = "txtROut3";
            this.txtROut3.ReadOnly = true;
            this.txtROut3.Size = new System.Drawing.Size(129, 14);
            this.txtROut3.TabIndex = 184;
            this.txtROut3.Text = "0";
            this.txtROut3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut10
            // 
            this.txtROut10.BackColor = System.Drawing.Color.Gainsboro;
            this.txtROut10.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut10.ForeColor = System.Drawing.Color.Black;
            this.txtROut10.Location = new System.Drawing.Point(210, 551);
            this.txtROut10.Name = "txtROut10";
            this.txtROut10.ReadOnly = true;
            this.txtROut10.Size = new System.Drawing.Size(129, 14);
            this.txtROut10.TabIndex = 185;
            this.txtROut10.Text = "0";
            this.txtROut10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut9
            // 
            this.txtROut9.BackColor = System.Drawing.Color.White;
            this.txtROut9.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut9.ForeColor = System.Drawing.Color.Black;
            this.txtROut9.Location = new System.Drawing.Point(210, 521);
            this.txtROut9.Name = "txtROut9";
            this.txtROut9.ReadOnly = true;
            this.txtROut9.Size = new System.Drawing.Size(129, 14);
            this.txtROut9.TabIndex = 185;
            this.txtROut9.Text = "0";
            this.txtROut9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut8
            // 
            this.txtROut8.BackColor = System.Drawing.Color.White;
            this.txtROut8.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut8.ForeColor = System.Drawing.Color.Black;
            this.txtROut8.Location = new System.Drawing.Point(210, 491);
            this.txtROut8.Name = "txtROut8";
            this.txtROut8.ReadOnly = true;
            this.txtROut8.Size = new System.Drawing.Size(129, 14);
            this.txtROut8.TabIndex = 186;
            this.txtROut8.Text = "0";
            this.txtROut8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut7
            // 
            this.txtROut7.BackColor = System.Drawing.Color.White;
            this.txtROut7.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut7.ForeColor = System.Drawing.Color.Black;
            this.txtROut7.Location = new System.Drawing.Point(210, 461);
            this.txtROut7.Name = "txtROut7";
            this.txtROut7.ReadOnly = true;
            this.txtROut7.Size = new System.Drawing.Size(129, 14);
            this.txtROut7.TabIndex = 181;
            this.txtROut7.Text = "0";
            this.txtROut7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut6
            // 
            this.txtROut6.BackColor = System.Drawing.Color.White;
            this.txtROut6.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut6.ForeColor = System.Drawing.Color.Black;
            this.txtROut6.Location = new System.Drawing.Point(210, 431);
            this.txtROut6.Name = "txtROut6";
            this.txtROut6.ReadOnly = true;
            this.txtROut6.Size = new System.Drawing.Size(129, 14);
            this.txtROut6.TabIndex = 182;
            this.txtROut6.Text = "0";
            this.txtROut6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut5
            // 
            this.txtROut5.BackColor = System.Drawing.Color.White;
            this.txtROut5.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut5.ForeColor = System.Drawing.Color.Black;
            this.txtROut5.Location = new System.Drawing.Point(210, 401);
            this.txtROut5.Name = "txtROut5";
            this.txtROut5.ReadOnly = true;
            this.txtROut5.Size = new System.Drawing.Size(129, 14);
            this.txtROut5.TabIndex = 183;
            this.txtROut5.Text = "0";
            this.txtROut5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut62
            // 
            this.txtROut62.BackColor = System.Drawing.Color.White;
            this.txtROut62.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut62.ForeColor = System.Drawing.Color.Black;
            this.txtROut62.Location = new System.Drawing.Point(1080, 104);
            this.txtROut62.Name = "txtROut62";
            this.txtROut62.ReadOnly = true;
            this.txtROut62.Size = new System.Drawing.Size(129, 14);
            this.txtROut62.TabIndex = 187;
            this.txtROut62.Text = "0";
            this.txtROut62.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut38
            // 
            this.txtROut38.BackColor = System.Drawing.Color.White;
            this.txtROut38.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut38.ForeColor = System.Drawing.Color.Black;
            this.txtROut38.Location = new System.Drawing.Point(720, 104);
            this.txtROut38.Name = "txtROut38";
            this.txtROut38.ReadOnly = true;
            this.txtROut38.Size = new System.Drawing.Size(129, 14);
            this.txtROut38.TabIndex = 187;
            this.txtROut38.Text = "0";
            this.txtROut38.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut61
            // 
            this.txtROut61.BackColor = System.Drawing.Color.White;
            this.txtROut61.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut61.ForeColor = System.Drawing.Color.Black;
            this.txtROut61.Location = new System.Drawing.Point(1080, 74);
            this.txtROut61.Name = "txtROut61";
            this.txtROut61.ReadOnly = true;
            this.txtROut61.Size = new System.Drawing.Size(129, 14);
            this.txtROut61.TabIndex = 193;
            this.txtROut61.Text = "0";
            this.txtROut61.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut14
            // 
            this.txtROut14.BackColor = System.Drawing.Color.White;
            this.txtROut14.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut14.ForeColor = System.Drawing.Color.Black;
            this.txtROut14.Location = new System.Drawing.Point(370, 104);
            this.txtROut14.Name = "txtROut14";
            this.txtROut14.ReadOnly = true;
            this.txtROut14.Size = new System.Drawing.Size(129, 14);
            this.txtROut14.TabIndex = 187;
            this.txtROut14.Text = "0";
            this.txtROut14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut37
            // 
            this.txtROut37.BackColor = System.Drawing.Color.White;
            this.txtROut37.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut37.ForeColor = System.Drawing.Color.Black;
            this.txtROut37.Location = new System.Drawing.Point(720, 74);
            this.txtROut37.Name = "txtROut37";
            this.txtROut37.ReadOnly = true;
            this.txtROut37.Size = new System.Drawing.Size(129, 14);
            this.txtROut37.TabIndex = 193;
            this.txtROut37.Text = "0";
            this.txtROut37.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut50
            // 
            this.txtROut50.BackColor = System.Drawing.Color.White;
            this.txtROut50.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut50.ForeColor = System.Drawing.Color.Black;
            this.txtROut50.Location = new System.Drawing.Point(920, 104);
            this.txtROut50.Name = "txtROut50";
            this.txtROut50.ReadOnly = true;
            this.txtROut50.Size = new System.Drawing.Size(129, 14);
            this.txtROut50.TabIndex = 187;
            this.txtROut50.Text = "0";
            this.txtROut50.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut13
            // 
            this.txtROut13.BackColor = System.Drawing.Color.White;
            this.txtROut13.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut13.ForeColor = System.Drawing.Color.Black;
            this.txtROut13.Location = new System.Drawing.Point(370, 74);
            this.txtROut13.Name = "txtROut13";
            this.txtROut13.ReadOnly = true;
            this.txtROut13.Size = new System.Drawing.Size(129, 14);
            this.txtROut13.TabIndex = 193;
            this.txtROut13.Text = "0";
            this.txtROut13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut26
            // 
            this.txtROut26.BackColor = System.Drawing.Color.White;
            this.txtROut26.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut26.ForeColor = System.Drawing.Color.Black;
            this.txtROut26.Location = new System.Drawing.Point(560, 104);
            this.txtROut26.Name = "txtROut26";
            this.txtROut26.ReadOnly = true;
            this.txtROut26.Size = new System.Drawing.Size(129, 14);
            this.txtROut26.TabIndex = 187;
            this.txtROut26.Text = "0";
            this.txtROut26.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut49
            // 
            this.txtROut49.BackColor = System.Drawing.Color.White;
            this.txtROut49.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut49.ForeColor = System.Drawing.Color.Black;
            this.txtROut49.Location = new System.Drawing.Point(920, 74);
            this.txtROut49.Name = "txtROut49";
            this.txtROut49.ReadOnly = true;
            this.txtROut49.Size = new System.Drawing.Size(129, 14);
            this.txtROut49.TabIndex = 193;
            this.txtROut49.Text = "0";
            this.txtROut49.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut2
            // 
            this.txtROut2.BackColor = System.Drawing.Color.White;
            this.txtROut2.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut2.ForeColor = System.Drawing.Color.Black;
            this.txtROut2.Location = new System.Drawing.Point(210, 104);
            this.txtROut2.Name = "txtROut2";
            this.txtROut2.ReadOnly = true;
            this.txtROut2.Size = new System.Drawing.Size(129, 14);
            this.txtROut2.TabIndex = 187;
            this.txtROut2.Text = "0";
            this.txtROut2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut25
            // 
            this.txtROut25.BackColor = System.Drawing.Color.White;
            this.txtROut25.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut25.ForeColor = System.Drawing.Color.Black;
            this.txtROut25.Location = new System.Drawing.Point(560, 74);
            this.txtROut25.Name = "txtROut25";
            this.txtROut25.ReadOnly = true;
            this.txtROut25.Size = new System.Drawing.Size(129, 14);
            this.txtROut25.TabIndex = 193;
            this.txtROut25.Text = "0";
            this.txtROut25.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut1
            // 
            this.txtROut1.BackColor = System.Drawing.Color.White;
            this.txtROut1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut1.ForeColor = System.Drawing.Color.Black;
            this.txtROut1.Location = new System.Drawing.Point(210, 74);
            this.txtROut1.Name = "txtROut1";
            this.txtROut1.ReadOnly = true;
            this.txtROut1.Size = new System.Drawing.Size(129, 14);
            this.txtROut1.TabIndex = 193;
            this.txtROut1.Text = "0";
            this.txtROut1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // txtROut4
            // 
            this.txtROut4.BackColor = System.Drawing.Color.White;
            this.txtROut4.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtROut4.ForeColor = System.Drawing.Color.Black;
            this.txtROut4.Location = new System.Drawing.Point(210, 371);
            this.txtROut4.Name = "txtROut4";
            this.txtROut4.ReadOnly = true;
            this.txtROut4.Size = new System.Drawing.Size(129, 14);
            this.txtROut4.TabIndex = 189;
            this.txtROut4.Text = "0";
            this.txtROut4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label44
            // 
            this.label44.AutoSize = true;
            this.label44.BackColor = System.Drawing.Color.LemonChiffon;
            this.label44.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label44.ForeColor = System.Drawing.Color.Black;
            this.label44.Location = new System.Drawing.Point(80, 45);
            this.label44.Name = "label44";
            this.label44.Size = new System.Drawing.Size(31, 12);
            this.label44.TabIndex = 178;
            this.label44.Text = "항목";
            // 
            // label45
            // 
            this.label45.AutoSize = true;
            this.label45.BackColor = System.Drawing.Color.LemonChiffon;
            this.label45.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(129)));
            this.label45.ForeColor = System.Drawing.Color.Black;
            this.label45.Location = new System.Drawing.Point(79, 342);
            this.label45.Name = "label45";
            this.label45.Size = new System.Drawing.Size(31, 12);
            this.label45.TabIndex = 177;
            this.label45.Text = "구분";
            // 
            // label46
            // 
            this.label46.AutoSize = true;
            this.label46.ForeColor = System.Drawing.Color.Black;
            this.label46.Location = new System.Drawing.Point(35, 105);
            this.label46.Name = "label46";
            this.label46.Size = new System.Drawing.Size(105, 12);
            this.label46.TabIndex = 171;
            this.label46.Text = "직영매장 판매수익";
            // 
            // label52
            // 
            this.label52.AutoSize = true;
            this.label52.ForeColor = System.Drawing.Color.Black;
            this.label52.Location = new System.Drawing.Point(35, 75);
            this.label52.Name = "label52";
            this.label52.Size = new System.Drawing.Size(89, 12);
            this.label52.TabIndex = 162;
            this.label52.Text = "업무취급수수료";
            // 
            // label105
            // 
            this.label105.AutoSize = true;
            this.label105.BackColor = System.Drawing.Color.Gainsboro;
            this.label105.ForeColor = System.Drawing.Color.Black;
            this.label105.Location = new System.Drawing.Point(35, 552);
            this.label105.Name = "label105";
            this.label105.Size = new System.Drawing.Size(29, 12);
            this.label105.TabIndex = 163;
            this.label105.Text = "소계";
            // 
            // label54
            // 
            this.label54.AutoSize = true;
            this.label54.ForeColor = System.Drawing.Color.Black;
            this.label54.Location = new System.Drawing.Point(35, 522);
            this.label54.Name = "label54";
            this.label54.Size = new System.Drawing.Size(93, 12);
            this.label54.TabIndex = 163;
            this.label54.Text = "기타 판매관리비";
            // 
            // label84
            // 
            this.label84.AutoSize = true;
            this.label84.ForeColor = System.Drawing.Color.Black;
            this.label84.Location = new System.Drawing.Point(35, 492);
            this.label84.Name = "label84";
            this.label84.Size = new System.Drawing.Size(41, 12);
            this.label84.TabIndex = 160;
            this.label84.Text = "법인세";
            // 
            // label55
            // 
            this.label55.AutoSize = true;
            this.label55.ForeColor = System.Drawing.Color.Black;
            this.label55.Location = new System.Drawing.Point(35, 462);
            this.label55.Name = "label55";
            this.label55.Size = new System.Drawing.Size(41, 12);
            this.label55.TabIndex = 160;
            this.label55.Text = "부가세";
            // 
            // label56
            // 
            this.label56.AutoSize = true;
            this.label56.ForeColor = System.Drawing.Color.Black;
            this.label56.Location = new System.Drawing.Point(35, 432);
            this.label56.Name = "label56";
            this.label56.Size = new System.Drawing.Size(53, 12);
            this.label56.TabIndex = 161;
            this.label56.Text = "이자비용";
            // 
            // label57
            // 
            this.label57.AutoSize = true;
            this.label57.ForeColor = System.Drawing.Color.Black;
            this.label57.Location = new System.Drawing.Point(35, 402);
            this.label57.Name = "label57";
            this.label57.Size = new System.Drawing.Size(41, 12);
            this.label57.TabIndex = 164;
            this.label57.Text = "임차료";
            // 
            // label58
            // 
            this.label58.AutoSize = true;
            this.label58.ForeColor = System.Drawing.Color.Black;
            this.label58.Location = new System.Drawing.Point(35, 366);
            this.label58.Name = "label58";
            this.label58.Size = new System.Drawing.Size(107, 24);
            this.label58.TabIndex = 167;
            this.label58.Text = "인건비\r\n(급여, 복리후생비)";
            // 
            // label62
            // 
            this.label62.AutoSize = true;
            this.label62.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
            this.label62.ForeColor = System.Drawing.Color.Black;
            this.label62.Location = new System.Drawing.Point(25, 312);
            this.label62.Name = "label62";
            this.label62.Size = new System.Drawing.Size(42, 16);
            this.label62.TabIndex = 158;
            this.label62.Text = "비용";
            // 
            // label63
            // 
            this.label63.AutoSize = true;
            this.label63.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
            this.label63.ForeColor = System.Drawing.Color.Black;
            this.label63.Location = new System.Drawing.Point(25, 15);
            this.label63.Name = "label63";
            this.label63.Size = new System.Drawing.Size(42, 16);
            this.label63.TabIndex = 159;
            this.label63.Text = "수익";
            // 
            // pictureBox5
            // 
            this.pictureBox5.Image = global::KIWI.Properties.Resources.graph2;
            this.pictureBox5.Location = new System.Drawing.Point(73, 8);
            this.pictureBox5.Name = "pictureBox5";
            this.pictureBox5.Size = new System.Drawing.Size(29, 23);
            this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox5.TabIndex = 219;
            this.pictureBox5.TabStop = false;
            this.pictureBox5.Click += new System.EventHandler(this.pictureBox5_Click);
            // 
            // panel100
            // 
            this.panel100.BackColor = System.Drawing.Color.LightSalmon;
            this.panel100.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel100.Controls.Add(this.panel101);
            this.panel100.ForeColor = System.Drawing.Color.Black;
            this.panel100.Location = new System.Drawing.Point(0, 302);
            this.panel100.Name = "panel100";
            this.panel100.Size = new System.Drawing.Size(1240, 3);
            this.panel100.TabIndex = 209;
            // 
            // panel101
            // 
            this.panel101.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel101.Location = new System.Drawing.Point(0, 20);
            this.panel101.Name = "panel101";
            this.panel101.Size = new System.Drawing.Size(698, 5);
            this.panel101.TabIndex = 18;
            // 
            // panel98
            // 
            this.panel98.BackColor = System.Drawing.Color.LightSalmon;
            this.panel98.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel98.Controls.Add(this.panel99);
            this.panel98.ForeColor = System.Drawing.Color.Black;
            this.panel98.Location = new System.Drawing.Point(0, 885);
            this.panel98.Name = "panel98";
            this.panel98.Size = new System.Drawing.Size(1150, 3);
            this.panel98.TabIndex = 230;
            // 
            // panel99
            // 
            this.panel99.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel99.Location = new System.Drawing.Point(0, 20);
            this.panel99.Name = "panel99";
            this.panel99.Size = new System.Drawing.Size(698, 5);
            this.panel99.TabIndex = 18;
            // 
            // panel96
            // 
            this.panel96.BackColor = System.Drawing.Color.LightSalmon;
            this.panel96.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel96.Controls.Add(this.panel97);
            this.panel96.ForeColor = System.Drawing.Color.Black;
            this.panel96.Location = new System.Drawing.Point(0, 572);
            this.panel96.Name = "panel96";
            this.panel96.Size = new System.Drawing.Size(1240, 3);
            this.panel96.TabIndex = 230;
            // 
            // panel97
            // 
            this.panel97.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel97.Location = new System.Drawing.Point(0, 20);
            this.panel97.Name = "panel97";
            this.panel97.Size = new System.Drawing.Size(698, 5);
            this.panel97.TabIndex = 18;
            // 
            // panel94
            // 
            this.panel94.BackColor = System.Drawing.Color.LightSalmon;
            this.panel94.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel94.Controls.Add(this.panel95);
            this.panel94.ForeColor = System.Drawing.Color.Black;
            this.panel94.Location = new System.Drawing.Point(0, 155);
            this.panel94.Name = "panel94";
            this.panel94.Size = new System.Drawing.Size(1240, 3);
            this.panel94.TabIndex = 230;
            // 
            // panel95
            // 
            this.panel95.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel95.Location = new System.Drawing.Point(0, 20);
            this.panel95.Name = "panel95";
            this.panel95.Size = new System.Drawing.Size(698, 5);
            this.panel95.TabIndex = 18;
            // 
            // panel92
            // 
            this.panel92.BackColor = System.Drawing.Color.LightSalmon;
            this.panel92.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel92.Controls.Add(this.panel93);
            this.panel92.ForeColor = System.Drawing.Color.Black;
            this.panel92.Location = new System.Drawing.Point(0, 5);
            this.panel92.Name = "panel92";
            this.panel92.Size = new System.Drawing.Size(1240, 3);
            this.panel92.TabIndex = 208;
            // 
            // panel93
            // 
            this.panel93.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel93.Location = new System.Drawing.Point(0, 20);
            this.panel93.Name = "panel93";
            this.panel93.Size = new System.Drawing.Size(698, 5);
            this.panel93.TabIndex = 18;
            // 
            // panel68
            // 
            this.panel68.BackColor = System.Drawing.Color.LightSalmon;
            this.panel68.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel68.Controls.Add(this.panel69);
            this.panel68.ForeColor = System.Drawing.Color.Black;
            this.panel68.Location = new System.Drawing.Point(0, 332);
            this.panel68.Name = "panel68";
            this.panel68.Size = new System.Drawing.Size(1240, 3);
            this.panel68.TabIndex = 225;
            // 
            // panel69
            // 
            this.panel69.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel69.Location = new System.Drawing.Point(0, 20);
            this.panel69.Name = "panel69";
            this.panel69.Size = new System.Drawing.Size(698, 5);
            this.panel69.TabIndex = 18;
            // 
            // panel44
            // 
            this.panel44.BackColor = System.Drawing.Color.LightSalmon;
            this.panel44.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel44.Controls.Add(this.panel63);
            this.panel44.ForeColor = System.Drawing.Color.Black;
            this.panel44.Location = new System.Drawing.Point(0, 35);
            this.panel44.Name = "panel44";
            this.panel44.Size = new System.Drawing.Size(1240, 3);
            this.panel44.TabIndex = 225;
            // 
            // panel63
            // 
            this.panel63.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel63.Location = new System.Drawing.Point(0, 20);
            this.panel63.Name = "panel63";
            this.panel63.Size = new System.Drawing.Size(698, 5);
            this.panel63.TabIndex = 18;
            // 
            // panel66
            // 
            this.panel66.BackColor = System.Drawing.Color.LightSalmon;
            this.panel66.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel66.Controls.Add(this.panel67);
            this.panel66.ForeColor = System.Drawing.Color.Black;
            this.panel66.Location = new System.Drawing.Point(0, 362);
            this.panel66.Name = "panel66";
            this.panel66.Size = new System.Drawing.Size(1240, 3);
            this.panel66.TabIndex = 224;
            // 
            // panel67
            // 
            this.panel67.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel67.Location = new System.Drawing.Point(0, 20);
            this.panel67.Name = "panel67";
            this.panel67.Size = new System.Drawing.Size(698, 5);
            this.panel67.TabIndex = 18;
            // 
            // panel64
            // 
            this.panel64.BackColor = System.Drawing.Color.LightSalmon;
            this.panel64.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel64.Controls.Add(this.panel65);
            this.panel64.ForeColor = System.Drawing.Color.Black;
            this.panel64.Location = new System.Drawing.Point(0, 65);
            this.panel64.Name = "panel64";
            this.panel64.Size = new System.Drawing.Size(1240, 3);
            this.panel64.TabIndex = 224;
            // 
            // panel65
            // 
            this.panel65.BackgroundImage = global::KIWI.Properties.Resources.line;
            this.panel65.Location = new System.Drawing.Point(0, 20);
            this.panel65.Name = "panel65";
            this.panel65.Size = new System.Drawing.Size(698, 5);
            this.panel65.TabIndex = 18;
            // 
            // panel48
            // 
            this.panel48.BackColor = System.Drawing.Color.LightSalmon;
            this.panel48.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel48.ForeColor = System.Drawing.Color.Black;
            this.panel48.Location = new System.Drawing.Point(880, 35);
            this.panel48.Name = "panel48";
            this.panel48.Size = new System.Drawing.Size(3, 120);
            this.panel48.TabIndex = 179;
            // 
            // panel47
            // 
            this.panel47.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel47.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel47.ForeColor = System.Drawing.Color.Black;
            this.panel47.Location = new System.Drawing.Point(530, 35);
            this.panel47.Name = "panel47";
            this.panel47.Size = new System.Drawing.Size(1, 120);
            this.panel47.TabIndex = 179;
            // 
            // panel29
            // 
            this.panel29.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel29.ForeColor = System.Drawing.Color.Black;
            this.panel29.Location = new System.Drawing.Point(180, 35);
            this.panel29.Name = "panel29";
            this.panel29.Size = new System.Drawing.Size(1, 120);
            this.panel29.TabIndex = 179;
            // 
            // panel50
            // 
            this.panel50.BackColor = System.Drawing.Color.LightSalmon;
            this.panel50.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel50.ForeColor = System.Drawing.Color.Black;
            this.panel50.Location = new System.Drawing.Point(880, 332);
            this.panel50.Name = "panel50";
            this.panel50.Size = new System.Drawing.Size(3, 240);
            this.panel50.TabIndex = 180;
            // 
            // panel49
            // 
            this.panel49.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel49.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel49.ForeColor = System.Drawing.Color.Black;
            this.panel49.Location = new System.Drawing.Point(530, 332);
            this.panel49.Name = "panel49";
            this.panel49.Size = new System.Drawing.Size(1, 240);
            this.panel49.TabIndex = 180;
            // 
            // panel30
            // 
            this.panel30.BackgroundImage = global::KIWI.Properties.Resources.세로선;
            this.panel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel30.ForeColor = System.Drawing.Color.Black;
            this.panel30.Location = new System.Drawing.Point(180, 332);
            this.panel30.Name = "panel30";
            this.panel30.Size = new System.Drawing.Size(1, 240);
            this.panel30.TabIndex = 180;
            // 
            // panel31
            // 
            this.panel31.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel31.ForeColor = System.Drawing.Color.Black;
            this.panel31.Location = new System.Drawing.Point(0, 482);
            this.panel31.Name = "panel31";
            this.panel31.Size = new System.Drawing.Size(1240, 2);
            this.panel31.TabIndex = 148;
            // 
            // panel32
            // 
            this.panel32.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel32.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel32.ForeColor = System.Drawing.Color.Black;
            this.panel32.Location = new System.Drawing.Point(0, 452);
            this.panel32.Name = "panel32";
            this.panel32.Size = new System.Drawing.Size(1240, 2);
            this.panel32.TabIndex = 149;
            // 
            // panel33
            // 
            this.panel33.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel33.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel33.ForeColor = System.Drawing.Color.Black;
            this.panel33.Location = new System.Drawing.Point(0, 422);
            this.panel33.Name = "panel33";
            this.panel33.Size = new System.Drawing.Size(1240, 2);
            this.panel33.TabIndex = 150;
            // 
            // panel35
            // 
            this.panel35.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel35.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel35.ForeColor = System.Drawing.Color.Black;
            this.panel35.Location = new System.Drawing.Point(0, 392);
            this.panel35.Name = "panel35";
            this.panel35.Size = new System.Drawing.Size(1240, 2);
            this.panel35.TabIndex = 146;
            // 
            // panel73
            // 
            this.panel73.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel73.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel73.ForeColor = System.Drawing.Color.Black;
            this.panel73.Location = new System.Drawing.Point(0, 542);
            this.panel73.Name = "panel73";
            this.panel73.Size = new System.Drawing.Size(1240, 2);
            this.panel73.TabIndex = 151;
            // 
            // panel36
            // 
            this.panel36.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel36.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel36.ForeColor = System.Drawing.Color.Black;
            this.panel36.Location = new System.Drawing.Point(0, 125);
            this.panel36.Name = "panel36";
            this.panel36.Size = new System.Drawing.Size(1240, 2);
            this.panel36.TabIndex = 147;
            // 
            // panel37
            // 
            this.panel37.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel37.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel37.ForeColor = System.Drawing.Color.Black;
            this.panel37.Location = new System.Drawing.Point(0, 512);
            this.panel37.Name = "panel37";
            this.panel37.Size = new System.Drawing.Size(1240, 2);
            this.panel37.TabIndex = 151;
            // 
            // panel41
            // 
            this.panel41.BackgroundImage = global::KIWI.Properties.Resources.얇은선;
            this.panel41.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.panel41.ForeColor = System.Drawing.Color.Black;
            this.panel41.Location = new System.Drawing.Point(0, 95);
            this.panel41.Name = "panel41";
            this.panel41.Size = new System.Drawing.Size(1240, 2);
            this.panel41.TabIndex = 152;
            // 
            // panel160
            // 
            this.panel160.BackColor = System.Drawing.Color.Gainsboro;
            this.panel160.Location = new System.Drawing.Point(2, 618);
            this.panel160.Name = "panel160";
            this.panel160.Size = new System.Drawing.Size(1238, 28);
            this.panel160.TabIndex = 347;
            // 
            // panel157
            // 
            this.panel157.BackColor = System.Drawing.Color.Gainsboro;
            this.panel157.Location = new System.Drawing.Point(1, 589);
            this.panel157.Name = "panel157";
            this.panel157.Size = new System.Drawing.Size(1238, 28);
            this.panel157.TabIndex = 348;
            // 
            // panel158
            // 
            this.panel158.BackColor = System.Drawing.Color.Gainsboro;
            this.panel158.Location = new System.Drawing.Point(1, 545);
            this.panel158.Name = "panel158";
            this.panel158.Size = new System.Drawing.Size(1238, 28);
            this.panel158.TabIndex = 347;
            // 
            // panel159
            // 
            this.panel159.BackColor = System.Drawing.Color.Gainsboro;
            this.panel159.Location = new System.Drawing.Point(1, 128);
            this.panel159.Name = "panel159";
            this.panel159.Size = new System.Drawing.Size(1238, 28);
            this.panel159.TabIndex = 346;
            // 
            // panel165
            // 
            this.panel165.BackColor = System.Drawing.Color.LemonChiffon;
            this.panel165.Location = new System.Drawing.Point(1, 335);
            this.panel165.Name = "panel165";
            this.panel165.Size = new System.Drawing.Size(1238, 27);
            this.panel165.TabIndex = 347;
            // 
            // panel166
            // 
            this.panel166.BackColor = System.Drawing.Color.LemonChiffon;
            this.panel166.Location = new System.Drawing.Point(2, 38);
            this.panel166.Name = "panel166";
            this.panel166.Size = new System.Drawing.Size(1238, 27);
            this.panel166.TabIndex = 348;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.checkBox4);
            this.groupBox1.Controls.Add(this.checkBox6);
            this.groupBox1.Controls.Add(this.checkBox5);
            this.groupBox1.Controls.Add(this.checkBox3);
            this.groupBox1.Controls.Add(this.checkBox2);
            this.groupBox1.Controls.Add(this.checkBox1);
            this.groupBox1.Location = new System.Drawing.Point(425, 4);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(750, 46);
            this.groupBox1.TabIndex = 23;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "시뮬레이션 출력설정";
            // 
            // checkBox4
            // 
            this.checkBox4.AutoSize = true;
            this.checkBox4.Location = new System.Drawing.Point(295, 19);
            this.checkBox4.Name = "checkBox4";
            this.checkBox4.Size = new System.Drawing.Size(138, 16);
            this.checkBox4.TabIndex = 1;
            this.checkBox4.Text = "시뮬레이션-업계평균";
            this.checkBox4.UseVisualStyleBackColor = true;
            // 
            // checkBox6
            // 
            this.checkBox6.AutoSize = true;
            this.checkBox6.Location = new System.Drawing.Point(595, 19);
            this.checkBox6.Name = "checkBox6";
            this.checkBox6.Size = new System.Drawing.Size(138, 16);
            this.checkBox6.TabIndex = 0;
            this.checkBox6.Text = "시뮬레이션-미래수익";
            this.checkBox6.UseVisualStyleBackColor = true;
            // 
            // checkBox5
            // 
            this.checkBox5.AutoSize = true;
            this.checkBox5.Checked = true;
            this.checkBox5.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBox5.Location = new System.Drawing.Point(445, 19);
            this.checkBox5.Name = "checkBox5";
            this.checkBox5.Size = new System.Drawing.Size(138, 16);
            this.checkBox5.TabIndex = 0;
            this.checkBox5.Text = "시뮬레이션-당대리점";
            this.checkBox5.UseVisualStyleBackColor = true;
            // 
            // checkBox3
            // 
            this.checkBox3.AutoSize = true;
            this.checkBox3.Location = new System.Drawing.Point(181, 21);
            this.checkBox3.Name = "checkBox3";
            this.checkBox3.Size = new System.Drawing.Size(72, 16);
            this.checkBox3.TabIndex = 0;
            this.checkBox3.Text = "미래수익";
            this.checkBox3.UseVisualStyleBackColor = true;
            // 
            // checkBox2
            // 
            this.checkBox2.AutoSize = true;
            this.checkBox2.Checked = true;
            this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBox2.Location = new System.Drawing.Point(105, 21);
            this.checkBox2.Name = "checkBox2";
            this.checkBox2.Size = new System.Drawing.Size(72, 16);
            this.checkBox2.TabIndex = 0;
            this.checkBox2.Text = "당대리점";
            this.checkBox2.UseVisualStyleBackColor = true;
            // 
            // checkBox1
            // 
            this.checkBox1.AutoSize = true;
            this.checkBox1.Checked = true;
            this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBox1.Location = new System.Drawing.Point(32, 21);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(72, 16);
            this.checkBox1.TabIndex = 0;
            this.checkBox1.Text = "업계평균";
            this.checkBox1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
            this.checkBox1.UseVisualStyleBackColor = true;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(1181, 19);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(68, 29);
            this.button1.TabIndex = 24;
            this.button1.Text = "입력";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // radio최근업계평균
            // 
            this.radio최근업계평균.AutoSize = true;
            this.radio최근업계평균.Checked = true;
            this.radio최근업계평균.Location = new System.Drawing.Point(1033, 54);
            this.radio최근업계평균.Name = "radio최근업계평균";
            this.radio최근업계평균.Size = new System.Drawing.Size(103, 16);
            this.radio최근업계평균.TabIndex = 26;
            this.radio최근업계평균.TabStop = true;
            this.radio최근업계평균.Text = "최근 업계 평균";
            this.radio최근업계평균.UseVisualStyleBackColor = true;
            // 
            // radio기존업계평균
            // 
            this.radio기존업계평균.AutoSize = true;
            this.radio기존업계평균.Location = new System.Drawing.Point(1146, 54);
            this.radio기존업계평균.Name = "radio기존업계평균";
            this.radio기존업계평균.Size = new System.Drawing.Size(103, 16);
            this.radio기존업계평균.TabIndex = 25;
            this.radio기존업계평균.Text = "기존 업계 평균";
            this.radio기존업계평균.UseVisualStyleBackColor = true;
            this.radio기존업계평균.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
            // 
            // FormUserSimulateOutput
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1254, 729);
            this.Controls.Add(this.radio최근업계평균);
            this.Controls.Add(this.radio기존업계평균);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.tabControl1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "FormUserSimulateOutput";
            this.Text = "KIWI - 시뮬레이션 결과";
            this.Shown += new System.EventHandler(this.FormUserSimulateOutput_Shown);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.pnlChart.ResumeLayout(false);
            this.pnlChart.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.panel107.ResumeLayout(false);
            this.panel108.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
            this.panel139.ResumeLayout(false);
            this.panel140.ResumeLayout(false);
            this.panel78.ResumeLayout(false);
            this.panel143.ResumeLayout(false);
            this.panel144.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
            this.panel147.ResumeLayout(false);
            this.panel76.ResumeLayout(false);
            this.panel149.ResumeLayout(false);
            this.panel51.ResumeLayout(false);
            this.panel80.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel59.ResumeLayout(false);
            this.panel82.ResumeLayout(false);
            this.panel57.ResumeLayout(false);
            this.panel75.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            this.pnlChart2.ResumeLayout(false);
            this.pnlChart2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
            this.panel121.ResumeLayout(false);
            this.panel122.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.panel125.ResumeLayout(false);
            this.panel126.ResumeLayout(false);
            this.panel129.ResumeLayout(false);
            this.panel130.ResumeLayout(false);
            this.panel133.ResumeLayout(false);
            this.panel136.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.panel84.ResumeLayout(false);
            this.panel86.ResumeLayout(false);
            this.panel23.ResumeLayout(false);
            this.panel61.ResumeLayout(false);
            this.panel28.ResumeLayout(false);
            this.panel90.ResumeLayout(false);
            this.panel88.ResumeLayout(false);
            this.panel54.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.tabPage3.PerformLayout();
            this.pnlChart3.ResumeLayout(false);
            this.pnlChart3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart3)).EndInit();
            this.panel117.ResumeLayout(false);
            this.panel118.ResumeLayout(false);
            this.panel113.ResumeLayout(false);
            this.panel114.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
            this.panel109.ResumeLayout(false);
            this.panel110.ResumeLayout(false);
            this.panel105.ResumeLayout(false);
            this.panel102.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
            this.panel100.ResumeLayout(false);
            this.panel98.ResumeLayout(false);
            this.panel96.ResumeLayout(false);
            this.panel94.ResumeLayout(false);
            this.panel92.ResumeLayout(false);
            this.panel68.ResumeLayout(false);
            this.panel44.ResumeLayout(false);
            this.panel66.ResumeLayout(false);
            this.panel64.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.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.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();

            }
예제 #50
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.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            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.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            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.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.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.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, "10,14,16");
            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.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, "10,14,16");
            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.Series series9 = 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.Series series10 = 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.Series series11 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, "10,14,16");
            System.Windows.Forms.DataVisualization.Charting.Title title7 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea8 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Series series12 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title8 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
            this.tabSucursales = new System.Windows.Forms.TabControl();
            this.tbpPorFecha = new System.Windows.Forms.TabPage();
            this.dgvPorSemana = new System.Windows.Forms.DataGridView();
            this.sem_Semana = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc01_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc01_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc01_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc02_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc02_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc02_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc03_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc03_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.sem_Suc03_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.chrPorMes = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorSemana = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.dgvPorMes = new System.Windows.Forms.DataGridView();
            this.mes_Mes = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc01_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc01_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc01_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc02_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc02_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc02_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc03_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc03_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.mes_Suc03_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvPorDia = new System.Windows.Forms.DataGridView();
            this.dia_Fecha = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc01_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc01_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc01_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc02_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc02_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc02_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc03_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc03_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dia_Suc03_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tbpPorDiaYHora = new System.Windows.Forms.TabPage();
            this.chrPorHora3 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorHora2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorDiaSem3 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorDiaSem2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorHora1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.chrPorDiaSem1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.dgvPorHora = new System.Windows.Forms.DataGridView();
            this.hor_Hora = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc01_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc01_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc01_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc02_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc02_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc02_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc03_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc03_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.hor_Suc03_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dgvPorDiaSem = new System.Windows.Forms.DataGridView();
            this.dse_Dia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc01_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc01_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc01_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc02_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc02_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc02_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc03_Actual = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc03_Resultado = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dse_Suc03_Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tbpPorProveedor = new System.Windows.Forms.TabPage();
            this.tbpPorMarca = new System.Windows.Forms.TabPage();
            this.tbpPorLinea = new System.Windows.Forms.TabPage();
            this.nudDecimales = new System.Windows.Forms.NumericUpDown();
            this.label9 = new System.Windows.Forms.Label();
            this.cmbCalculo = new System.Windows.Forms.ComboBox();
            this.label8 = new System.Windows.Forms.Label();
            this.btnMostrar = new System.Windows.Forms.Button();
            this.chkOmitirDomingos = new System.Windows.Forms.CheckBox();
            this.chk9500 = new System.Windows.Forms.CheckBox();
            this.chkCobradas = new System.Windows.Forms.CheckBox();
            this.chkPagadas = new System.Windows.Forms.CheckBox();
            this.dtpHasta = new System.Windows.Forms.DateTimePicker();
            this.dtpDesde = new System.Windows.Forms.DateTimePicker();
            this.ctlPorProveedor = new Refaccionaria.App.CuadroMultipleSucursales();
            this.ctlPorMarca = new Refaccionaria.App.CuadroMultipleSucursales();
            this.ctlPorLinea = new Refaccionaria.App.CuadroMultipleSucursales();
            this.tabSucursales.SuspendLayout();
            this.tbpPorFecha.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorSemana)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorMes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorSemana)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorMes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDia)).BeginInit();
            this.tbpPorDiaYHora.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorHora)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDiaSem)).BeginInit();
            this.tbpPorProveedor.SuspendLayout();
            this.tbpPorMarca.SuspendLayout();
            this.tbpPorLinea.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nudDecimales)).BeginInit();
            this.SuspendLayout();
            // 
            // tabSucursales
            // 
            this.tabSucursales.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.tabSucursales.Controls.Add(this.tbpPorFecha);
            this.tabSucursales.Controls.Add(this.tbpPorDiaYHora);
            this.tabSucursales.Controls.Add(this.tbpPorProveedor);
            this.tabSucursales.Controls.Add(this.tbpPorMarca);
            this.tabSucursales.Controls.Add(this.tbpPorLinea);
            this.tabSucursales.Location = new System.Drawing.Point(3, 30);
            this.tabSucursales.Name = "tabSucursales";
            this.tabSucursales.SelectedIndex = 0;
            this.tabSucursales.Size = new System.Drawing.Size(1494, 582);
            this.tabSucursales.TabIndex = 10;
            // 
            // tbpPorFecha
            // 
            this.tbpPorFecha.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.tbpPorFecha.Controls.Add(this.dgvPorSemana);
            this.tbpPorFecha.Controls.Add(this.chrPorMes);
            this.tbpPorFecha.Controls.Add(this.chrPorSemana);
            this.tbpPorFecha.Controls.Add(this.dgvPorMes);
            this.tbpPorFecha.Controls.Add(this.dgvPorDia);
            this.tbpPorFecha.Location = new System.Drawing.Point(4, 22);
            this.tbpPorFecha.Name = "tbpPorFecha";
            this.tbpPorFecha.Padding = new System.Windows.Forms.Padding(3);
            this.tbpPorFecha.Size = new System.Drawing.Size(1486, 556);
            this.tbpPorFecha.TabIndex = 0;
            this.tbpPorFecha.Text = "Por fecha";
            // 
            // dgvPorSemana
            // 
            this.dgvPorSemana.AllowUserToAddRows = false;
            this.dgvPorSemana.AllowUserToDeleteRows = false;
            this.dgvPorSemana.AllowUserToResizeRows = false;
            this.dgvPorSemana.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorSemana.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorSemana.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorSemana.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorSemana.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorSemana.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.sem_Semana,
            this.sem_Suc01_Actual,
            this.sem_Suc01_Resultado,
            this.sem_Suc01_Porcentaje,
            this.sem_Suc02_Actual,
            this.sem_Suc02_Resultado,
            this.sem_Suc02_Porcentaje,
            this.sem_Suc03_Actual,
            this.sem_Suc03_Resultado,
            this.sem_Suc03_Porcentaje});
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle11.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorSemana.DefaultCellStyle = dataGridViewCellStyle11;
            this.dgvPorSemana.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorSemana.Location = new System.Drawing.Point(512, 3);
            this.dgvPorSemana.Name = "dgvPorSemana";
            this.dgvPorSemana.ReadOnly = true;
            this.dgvPorSemana.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorSemana.RowHeadersDefaultCellStyle = dataGridViewCellStyle12;
            this.dgvPorSemana.RowHeadersVisible = false;
            this.dgvPorSemana.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorSemana.Size = new System.Drawing.Size(488, 341);
            this.dgvPorSemana.TabIndex = 1;
            // 
            // sem_Semana
            // 
            dataGridViewCellStyle1.NullValue = null;
            this.sem_Semana.DefaultCellStyle = dataGridViewCellStyle1;
            this.sem_Semana.HeaderText = "Semana";
            this.sem_Semana.Name = "sem_Semana";
            this.sem_Semana.ReadOnly = true;
            this.sem_Semana.Width = 60;
            // 
            // sem_Suc01_Actual
            // 
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle2.Format = "C2";
            this.sem_Suc01_Actual.DefaultCellStyle = dataGridViewCellStyle2;
            this.sem_Suc01_Actual.HeaderText = "Matriz";
            this.sem_Suc01_Actual.Name = "sem_Suc01_Actual";
            this.sem_Suc01_Actual.ReadOnly = true;
            this.sem_Suc01_Actual.Width = 65;
            // 
            // sem_Suc01_Resultado
            // 
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle3.Format = "N2";
            this.sem_Suc01_Resultado.DefaultCellStyle = dataGridViewCellStyle3;
            this.sem_Suc01_Resultado.HeaderText = "R°";
            this.sem_Suc01_Resultado.Name = "sem_Suc01_Resultado";
            this.sem_Suc01_Resultado.ReadOnly = true;
            this.sem_Suc01_Resultado.Width = 35;
            // 
            // sem_Suc01_Porcentaje
            // 
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle4.Format = "N2";
            this.sem_Suc01_Porcentaje.DefaultCellStyle = dataGridViewCellStyle4;
            this.sem_Suc01_Porcentaje.HeaderText = "%";
            this.sem_Suc01_Porcentaje.Name = "sem_Suc01_Porcentaje";
            this.sem_Suc01_Porcentaje.ReadOnly = true;
            this.sem_Suc01_Porcentaje.Width = 35;
            // 
            // sem_Suc02_Actual
            // 
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle5.Format = "C2";
            this.sem_Suc02_Actual.DefaultCellStyle = dataGridViewCellStyle5;
            this.sem_Suc02_Actual.HeaderText = "Suc 02";
            this.sem_Suc02_Actual.Name = "sem_Suc02_Actual";
            this.sem_Suc02_Actual.ReadOnly = true;
            this.sem_Suc02_Actual.Width = 65;
            // 
            // sem_Suc02_Resultado
            // 
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle6.Format = "N2";
            this.sem_Suc02_Resultado.DefaultCellStyle = dataGridViewCellStyle6;
            this.sem_Suc02_Resultado.HeaderText = "R°";
            this.sem_Suc02_Resultado.Name = "sem_Suc02_Resultado";
            this.sem_Suc02_Resultado.ReadOnly = true;
            this.sem_Suc02_Resultado.Width = 35;
            // 
            // sem_Suc02_Porcentaje
            // 
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle7.Format = "N2";
            this.sem_Suc02_Porcentaje.DefaultCellStyle = dataGridViewCellStyle7;
            this.sem_Suc02_Porcentaje.HeaderText = "%";
            this.sem_Suc02_Porcentaje.Name = "sem_Suc02_Porcentaje";
            this.sem_Suc02_Porcentaje.ReadOnly = true;
            this.sem_Suc02_Porcentaje.Width = 35;
            // 
            // sem_Suc03_Actual
            // 
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle8.Format = "C2";
            this.sem_Suc03_Actual.DefaultCellStyle = dataGridViewCellStyle8;
            this.sem_Suc03_Actual.HeaderText = "Suc 03";
            this.sem_Suc03_Actual.Name = "sem_Suc03_Actual";
            this.sem_Suc03_Actual.ReadOnly = true;
            this.sem_Suc03_Actual.Width = 65;
            // 
            // sem_Suc03_Resultado
            // 
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle9.Format = "N2";
            this.sem_Suc03_Resultado.DefaultCellStyle = dataGridViewCellStyle9;
            this.sem_Suc03_Resultado.HeaderText = "R°";
            this.sem_Suc03_Resultado.Name = "sem_Suc03_Resultado";
            this.sem_Suc03_Resultado.ReadOnly = true;
            this.sem_Suc03_Resultado.Width = 35;
            // 
            // sem_Suc03_Porcentaje
            // 
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle10.Format = "N2";
            this.sem_Suc03_Porcentaje.DefaultCellStyle = dataGridViewCellStyle10;
            this.sem_Suc03_Porcentaje.HeaderText = "%";
            this.sem_Suc03_Porcentaje.Name = "sem_Suc03_Porcentaje";
            this.sem_Suc03_Porcentaje.ReadOnly = true;
            this.sem_Suc03_Porcentaje.Width = 35;
            // 
            // chrPorMes
            // 
            this.chrPorMes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorMes.BackColor = System.Drawing.Color.Transparent;
            chartArea1.Area3DStyle.Enable3D = true;
            chartArea1.Area3DStyle.PointDepth = 60;
            chartArea1.Area3DStyle.PointGapDepth = 60;
            chartArea1.Area3DStyle.WallWidth = 0;
            chartArea1.AxisX.IntervalOffset = 1D;
            chartArea1.AxisX.IsLabelAutoFit = false;
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea1.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea1.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea1.AxisX.ScaleView.Size = 11D;
            chartArea1.AxisY.IsLabelAutoFit = false;
            chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea1.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea1.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea1.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea1.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea1.BackColor = System.Drawing.Color.Transparent;
            chartArea1.Name = "ChartArea1";
            this.chrPorMes.ChartAreas.Add(chartArea1);
            this.chrPorMes.Location = new System.Drawing.Point(986, 281);
            this.chrPorMes.Name = "chrPorMes";
            series1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.HorizontalCenter;
            series1.BackSecondaryColor = System.Drawing.Color.Transparent;
            series1.BorderColor = System.Drawing.Color.Transparent;
            series1.BorderWidth = 0;
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Color = System.Drawing.Color.Gray;
            series1.CustomProperties = "PixelPointWidth=16";
            series1.Name = "Suc01";
            series1.ShadowColor = System.Drawing.Color.White;
            series2.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.HorizontalCenter;
            series2.BackSecondaryColor = System.Drawing.Color.Transparent;
            series2.BorderColor = System.Drawing.Color.Transparent;
            series2.BorderWidth = 0;
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.Color = System.Drawing.Color.White;
            series2.CustomProperties = "PixelPointWidth=16";
            series2.LabelToolTip = "#VAL{C}";
            series2.MarkerSize = 7;
            series2.Name = "Suc02";
            series2.ShadowColor = System.Drawing.Color.White;
            series3.BorderWidth = 0;
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series3.Name = "Suc03";
            this.chrPorMes.Series.Add(series1);
            this.chrPorMes.Series.Add(series2);
            this.chrPorMes.Series.Add(series3);
            this.chrPorMes.Size = new System.Drawing.Size(466, 269);
            this.chrPorMes.TabIndex = 4;
            this.chrPorMes.Text = "chart1";
            title1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title1.ForeColor = System.Drawing.Color.White;
            title1.IsDockedInsideChartArea = false;
            title1.Name = "Title1";
            title1.ShadowOffset = 2;
            title1.Text = "Gráfica anual";
            this.chrPorMes.Titles.Add(title1);
            // 
            // chrPorSemana
            // 
            this.chrPorSemana.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorSemana.BackColor = System.Drawing.Color.Transparent;
            chartArea2.AxisX.Interval = 5D;
            chartArea2.AxisX.IntervalOffset = 1D;
            chartArea2.AxisX.IsLabelAutoFit = false;
            chartArea2.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea2.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea2.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea2.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.AxisX.ScaleBreakStyle.LineColor = System.Drawing.Color.Maroon;
            chartArea2.AxisX.ScaleView.Size = 52D;
            chartArea2.AxisY.IsLabelAutoFit = false;
            chartArea2.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea2.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea2.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea2.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea2.BackColor = System.Drawing.Color.Transparent;
            chartArea2.Name = "ChartArea1";
            this.chrPorSemana.ChartAreas.Add(chartArea2);
            this.chrPorSemana.Location = new System.Drawing.Point(0, 350);
            this.chrPorSemana.Name = "chrPorSemana";
            series4.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series4.BackSecondaryColor = System.Drawing.Color.Red;
            series4.BorderColor = System.Drawing.Color.Silver;
            series4.BorderWidth = 2;
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series4.Color = System.Drawing.Color.White;
            series4.CustomProperties = "LabelStyle=Center";
            series4.EmptyPointStyle.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            series4.EmptyPointStyle.Label = "3213";
            series4.EmptyPointStyle.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            series4.EmptyPointStyle.LabelToolTip = "9879";
            series4.EmptyPointStyle.ToolTip = "pp";
            series4.Label = "o";
            series4.LabelForeColor = System.Drawing.Color.Transparent;
            series4.LabelToolTip = "Semana: #VALX\\nComisión: $#VAL";
            series4.MarkerSize = 4;
            series4.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series4.Name = "Suc01";
            series4.ShadowColor = System.Drawing.Color.Silver;
            series4.ShadowOffset = 1;
            series4.SmartLabelStyle.Enabled = false;
            series5.BorderColor = System.Drawing.Color.White;
            series5.ChartArea = "ChartArea1";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series5.Color = System.Drawing.Color.IndianRed;
            series5.CustomProperties = "LabelStyle=Center";
            series5.Label = "o";
            series5.LabelForeColor = System.Drawing.Color.Transparent;
            series5.LabelToolTip = "Semana: #VALX\\nComisión: $#VAL";
            series5.MarkerBorderColor = System.Drawing.Color.IndianRed;
            series5.MarkerColor = System.Drawing.Color.IndianRed;
            series5.MarkerSize = 4;
            series5.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series5.Name = "Suc02";
            series5.ShadowColor = System.Drawing.Color.Silver;
            series5.ShadowOffset = 1;
            series5.SmartLabelStyle.Enabled = false;
            series6.BorderWidth = 2;
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series6.CustomProperties = "LabelStyle=Center";
            series6.Label = "o";
            series6.LabelForeColor = System.Drawing.Color.Transparent;
            series6.LabelToolTip = "Semana: #VALX\\nComisión: $#VAL";
            series6.MarkerSize = 4;
            series6.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series6.Name = "Suc03";
            series6.ShadowOffset = 1;
            this.chrPorSemana.Series.Add(series4);
            this.chrPorSemana.Series.Add(series5);
            this.chrPorSemana.Series.Add(series6);
            this.chrPorSemana.Size = new System.Drawing.Size(1000, 200);
            this.chrPorSemana.TabIndex = 3;
            this.chrPorSemana.Text = "chart1";
            title2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title2.ForeColor = System.Drawing.Color.White;
            title2.IsDockedInsideChartArea = false;
            title2.Name = "Title1";
            title2.ShadowOffset = 2;
            title2.Text = "Gráfica semanal";
            this.chrPorSemana.Titles.Add(title2);
            // 
            // dgvPorMes
            // 
            this.dgvPorMes.AllowUserToAddRows = false;
            this.dgvPorMes.AllowUserToDeleteRows = false;
            this.dgvPorMes.AllowUserToResizeRows = false;
            this.dgvPorMes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorMes.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorMes.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorMes.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorMes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorMes.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.mes_Mes,
            this.mes_Suc01_Actual,
            this.mes_Suc01_Resultado,
            this.mes_Suc01_Porcentaje,
            this.mes_Suc02_Actual,
            this.mes_Suc02_Resultado,
            this.mes_Suc02_Porcentaje,
            this.mes_Suc03_Actual,
            this.mes_Suc03_Resultado,
            this.mes_Suc03_Porcentaje});
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle23.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle23.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle23.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorMes.DefaultCellStyle = dataGridViewCellStyle23;
            this.dgvPorMes.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorMes.Location = new System.Drawing.Point(1006, 3);
            this.dgvPorMes.Name = "dgvPorMes";
            this.dgvPorMes.ReadOnly = true;
            this.dgvPorMes.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle24.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle24.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle24.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorMes.RowHeadersDefaultCellStyle = dataGridViewCellStyle24;
            this.dgvPorMes.RowHeadersVisible = false;
            this.dgvPorMes.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorMes.Size = new System.Drawing.Size(491, 272);
            this.dgvPorMes.TabIndex = 2;
            // 
            // mes_Mes
            // 
            dataGridViewCellStyle13.NullValue = null;
            this.mes_Mes.DefaultCellStyle = dataGridViewCellStyle13;
            this.mes_Mes.HeaderText = "Mes";
            this.mes_Mes.Name = "mes_Mes";
            this.mes_Mes.ReadOnly = true;
            this.mes_Mes.Width = 60;
            // 
            // mes_Suc01_Actual
            // 
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle14.Format = "C2";
            this.mes_Suc01_Actual.DefaultCellStyle = dataGridViewCellStyle14;
            this.mes_Suc01_Actual.HeaderText = "Matriz";
            this.mes_Suc01_Actual.Name = "mes_Suc01_Actual";
            this.mes_Suc01_Actual.ReadOnly = true;
            this.mes_Suc01_Actual.Width = 65;
            // 
            // mes_Suc01_Resultado
            // 
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle15.Format = "N2";
            this.mes_Suc01_Resultado.DefaultCellStyle = dataGridViewCellStyle15;
            this.mes_Suc01_Resultado.HeaderText = "R°";
            this.mes_Suc01_Resultado.Name = "mes_Suc01_Resultado";
            this.mes_Suc01_Resultado.ReadOnly = true;
            this.mes_Suc01_Resultado.Width = 35;
            // 
            // mes_Suc01_Porcentaje
            // 
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle16.Format = "N2";
            this.mes_Suc01_Porcentaje.DefaultCellStyle = dataGridViewCellStyle16;
            this.mes_Suc01_Porcentaje.HeaderText = "%";
            this.mes_Suc01_Porcentaje.Name = "mes_Suc01_Porcentaje";
            this.mes_Suc01_Porcentaje.ReadOnly = true;
            this.mes_Suc01_Porcentaje.Width = 35;
            // 
            // mes_Suc02_Actual
            // 
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle17.Format = "C2";
            this.mes_Suc02_Actual.DefaultCellStyle = dataGridViewCellStyle17;
            this.mes_Suc02_Actual.HeaderText = "Suc 02";
            this.mes_Suc02_Actual.Name = "mes_Suc02_Actual";
            this.mes_Suc02_Actual.ReadOnly = true;
            this.mes_Suc02_Actual.Width = 65;
            // 
            // mes_Suc02_Resultado
            // 
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle18.Format = "N2";
            this.mes_Suc02_Resultado.DefaultCellStyle = dataGridViewCellStyle18;
            this.mes_Suc02_Resultado.HeaderText = "R°";
            this.mes_Suc02_Resultado.Name = "mes_Suc02_Resultado";
            this.mes_Suc02_Resultado.ReadOnly = true;
            this.mes_Suc02_Resultado.Width = 35;
            // 
            // mes_Suc02_Porcentaje
            // 
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle19.Format = "N2";
            this.mes_Suc02_Porcentaje.DefaultCellStyle = dataGridViewCellStyle19;
            this.mes_Suc02_Porcentaje.HeaderText = "%";
            this.mes_Suc02_Porcentaje.Name = "mes_Suc02_Porcentaje";
            this.mes_Suc02_Porcentaje.ReadOnly = true;
            this.mes_Suc02_Porcentaje.Width = 35;
            // 
            // mes_Suc03_Actual
            // 
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle20.Format = "C2";
            this.mes_Suc03_Actual.DefaultCellStyle = dataGridViewCellStyle20;
            this.mes_Suc03_Actual.HeaderText = "Suc 03";
            this.mes_Suc03_Actual.Name = "mes_Suc03_Actual";
            this.mes_Suc03_Actual.ReadOnly = true;
            this.mes_Suc03_Actual.Width = 65;
            // 
            // mes_Suc03_Resultado
            // 
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle21.Format = "N2";
            this.mes_Suc03_Resultado.DefaultCellStyle = dataGridViewCellStyle21;
            this.mes_Suc03_Resultado.HeaderText = "R°";
            this.mes_Suc03_Resultado.Name = "mes_Suc03_Resultado";
            this.mes_Suc03_Resultado.ReadOnly = true;
            this.mes_Suc03_Resultado.Width = 35;
            // 
            // mes_Suc03_Porcentaje
            // 
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle22.Format = "N2";
            this.mes_Suc03_Porcentaje.DefaultCellStyle = dataGridViewCellStyle22;
            this.mes_Suc03_Porcentaje.HeaderText = "%";
            this.mes_Suc03_Porcentaje.Name = "mes_Suc03_Porcentaje";
            this.mes_Suc03_Porcentaje.ReadOnly = true;
            this.mes_Suc03_Porcentaje.Width = 35;
            // 
            // dgvPorDia
            // 
            this.dgvPorDia.AllowUserToAddRows = false;
            this.dgvPorDia.AllowUserToDeleteRows = false;
            this.dgvPorDia.AllowUserToResizeRows = false;
            this.dgvPorDia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorDia.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorDia.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorDia.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorDia.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorDia.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dia_Fecha,
            this.dia_Suc01_Actual,
            this.dia_Suc01_Resultado,
            this.dia_Suc01_Porcentaje,
            this.dia_Suc02_Actual,
            this.dia_Suc02_Resultado,
            this.dia_Suc02_Porcentaje,
            this.dia_Suc03_Actual,
            this.dia_Suc03_Resultado,
            this.dia_Suc03_Porcentaje});
            dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle35.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle35.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle35.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle35.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorDia.DefaultCellStyle = dataGridViewCellStyle35;
            this.dgvPorDia.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorDia.Location = new System.Drawing.Point(3, 3);
            this.dgvPorDia.Name = "dgvPorDia";
            this.dgvPorDia.ReadOnly = true;
            this.dgvPorDia.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle36.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle36.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle36.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle36.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle36.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorDia.RowHeadersDefaultCellStyle = dataGridViewCellStyle36;
            this.dgvPorDia.RowHeadersVisible = false;
            this.dgvPorDia.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorDia.Size = new System.Drawing.Size(503, 341);
            this.dgvPorDia.TabIndex = 0;
            // 
            // dia_Fecha
            // 
            dataGridViewCellStyle25.Format = "M";
            dataGridViewCellStyle25.NullValue = null;
            this.dia_Fecha.DefaultCellStyle = dataGridViewCellStyle25;
            this.dia_Fecha.HeaderText = "Día";
            this.dia_Fecha.Name = "dia_Fecha";
            this.dia_Fecha.ReadOnly = true;
            this.dia_Fecha.Width = 60;
            // 
            // dia_Suc01_Actual
            // 
            dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle26.Format = "C2";
            this.dia_Suc01_Actual.DefaultCellStyle = dataGridViewCellStyle26;
            this.dia_Suc01_Actual.HeaderText = "Matriz";
            this.dia_Suc01_Actual.Name = "dia_Suc01_Actual";
            this.dia_Suc01_Actual.ReadOnly = true;
            this.dia_Suc01_Actual.Width = 70;
            // 
            // dia_Suc01_Resultado
            // 
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle27.Format = "N2";
            this.dia_Suc01_Resultado.DefaultCellStyle = dataGridViewCellStyle27;
            this.dia_Suc01_Resultado.HeaderText = "R°";
            this.dia_Suc01_Resultado.Name = "dia_Suc01_Resultado";
            this.dia_Suc01_Resultado.ReadOnly = true;
            this.dia_Suc01_Resultado.Width = 35;
            // 
            // dia_Suc01_Porcentaje
            // 
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle28.Format = "N2";
            this.dia_Suc01_Porcentaje.DefaultCellStyle = dataGridViewCellStyle28;
            this.dia_Suc01_Porcentaje.HeaderText = "%";
            this.dia_Suc01_Porcentaje.Name = "dia_Suc01_Porcentaje";
            this.dia_Suc01_Porcentaje.ReadOnly = true;
            this.dia_Suc01_Porcentaje.Width = 35;
            // 
            // dia_Suc02_Actual
            // 
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle29.Format = "C2";
            this.dia_Suc02_Actual.DefaultCellStyle = dataGridViewCellStyle29;
            this.dia_Suc02_Actual.HeaderText = "Suc 02";
            this.dia_Suc02_Actual.Name = "dia_Suc02_Actual";
            this.dia_Suc02_Actual.ReadOnly = true;
            this.dia_Suc02_Actual.Width = 70;
            // 
            // dia_Suc02_Resultado
            // 
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle30.Format = "N2";
            this.dia_Suc02_Resultado.DefaultCellStyle = dataGridViewCellStyle30;
            this.dia_Suc02_Resultado.HeaderText = "R°";
            this.dia_Suc02_Resultado.Name = "dia_Suc02_Resultado";
            this.dia_Suc02_Resultado.ReadOnly = true;
            this.dia_Suc02_Resultado.Width = 35;
            // 
            // dia_Suc02_Porcentaje
            // 
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle31.Format = "N2";
            this.dia_Suc02_Porcentaje.DefaultCellStyle = dataGridViewCellStyle31;
            this.dia_Suc02_Porcentaje.HeaderText = "%";
            this.dia_Suc02_Porcentaje.Name = "dia_Suc02_Porcentaje";
            this.dia_Suc02_Porcentaje.ReadOnly = true;
            this.dia_Suc02_Porcentaje.Width = 35;
            // 
            // dia_Suc03_Actual
            // 
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle32.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle32.Format = "C2";
            this.dia_Suc03_Actual.DefaultCellStyle = dataGridViewCellStyle32;
            this.dia_Suc03_Actual.HeaderText = "Suc 03";
            this.dia_Suc03_Actual.Name = "dia_Suc03_Actual";
            this.dia_Suc03_Actual.ReadOnly = true;
            this.dia_Suc03_Actual.Width = 70;
            // 
            // dia_Suc03_Resultado
            // 
            dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle33.Format = "N2";
            this.dia_Suc03_Resultado.DefaultCellStyle = dataGridViewCellStyle33;
            this.dia_Suc03_Resultado.HeaderText = "R°";
            this.dia_Suc03_Resultado.Name = "dia_Suc03_Resultado";
            this.dia_Suc03_Resultado.ReadOnly = true;
            this.dia_Suc03_Resultado.Width = 35;
            // 
            // dia_Suc03_Porcentaje
            // 
            dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle34.Format = "N2";
            this.dia_Suc03_Porcentaje.DefaultCellStyle = dataGridViewCellStyle34;
            this.dia_Suc03_Porcentaje.HeaderText = "%";
            this.dia_Suc03_Porcentaje.Name = "dia_Suc03_Porcentaje";
            this.dia_Suc03_Porcentaje.ReadOnly = true;
            this.dia_Suc03_Porcentaje.Width = 35;
            // 
            // tbpPorDiaYHora
            // 
            this.tbpPorDiaYHora.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.tbpPorDiaYHora.Controls.Add(this.chrPorHora3);
            this.tbpPorDiaYHora.Controls.Add(this.chrPorHora2);
            this.tbpPorDiaYHora.Controls.Add(this.chrPorDiaSem3);
            this.tbpPorDiaYHora.Controls.Add(this.chrPorDiaSem2);
            this.tbpPorDiaYHora.Controls.Add(this.chrPorHora1);
            this.tbpPorDiaYHora.Controls.Add(this.chrPorDiaSem1);
            this.tbpPorDiaYHora.Controls.Add(this.dgvPorHora);
            this.tbpPorDiaYHora.Controls.Add(this.dgvPorDiaSem);
            this.tbpPorDiaYHora.Location = new System.Drawing.Point(4, 22);
            this.tbpPorDiaYHora.Name = "tbpPorDiaYHora";
            this.tbpPorDiaYHora.Padding = new System.Windows.Forms.Padding(3);
            this.tbpPorDiaYHora.Size = new System.Drawing.Size(1486, 556);
            this.tbpPorDiaYHora.TabIndex = 1;
            this.tbpPorDiaYHora.Text = "Día y horario";
            // 
            // chrPorHora3
            // 
            this.chrPorHora3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorHora3.BackColor = System.Drawing.Color.Transparent;
            chartArea3.Area3DStyle.Enable3D = true;
            chartArea3.Area3DStyle.PointDepth = 20;
            chartArea3.Area3DStyle.PointGapDepth = 50;
            chartArea3.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea3.AxisX.LabelStyle.Enabled = false;
            chartArea3.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea3.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea3.AxisX.LineColor = System.Drawing.Color.White;
            chartArea3.AxisX.LineWidth = 2;
            chartArea3.AxisX.MajorGrid.Enabled = false;
            chartArea3.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea3.AxisX.MajorTickMark.Enabled = false;
            chartArea3.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea3.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea3.AxisY.ArrowStyle = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
            chartArea3.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea3.AxisY.Interval = 10D;
            chartArea3.AxisY.IsLabelAutoFit = false;
            chartArea3.AxisY.LabelStyle.Enabled = false;
            chartArea3.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea3.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea3.AxisY.LineColor = System.Drawing.Color.White;
            chartArea3.AxisY.LineWidth = 2;
            chartArea3.AxisY.MajorGrid.Enabled = false;
            chartArea3.AxisY.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea3.AxisY.MajorTickMark.Enabled = false;
            chartArea3.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
            chartArea3.AxisY.MajorTickMark.LineWidth = 2;
            chartArea3.AxisY.MajorTickMark.Size = 4F;
            chartArea3.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea3.AxisY.MinorTickMark.LineColor = System.Drawing.Color.White;
            chartArea3.AxisY.MinorTickMark.LineWidth = 2;
            chartArea3.AxisY.MinorTickMark.Size = 4F;
            chartArea3.AxisY.MinorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea3.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea3.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea3.BackColor = System.Drawing.Color.Transparent;
            chartArea3.BorderWidth = 0;
            chartArea3.Name = "ChartArea1";
            this.chrPorHora3.ChartAreas.Add(chartArea3);
            this.chrPorHora3.Location = new System.Drawing.Point(1368, 6);
            this.chrPorHora3.Name = "chrPorHora3";
            this.chrPorHora3.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series7.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
            series7.BackSecondaryColor = System.Drawing.Color.Transparent;
            series7.BorderColor = System.Drawing.Color.Transparent;
            series7.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            series7.BorderWidth = 0;
            series7.ChartArea = "ChartArea1";
            series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series7.CustomProperties = "PixelPointWidth=80";
            series7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series7.Label = "#AXISLABEL";
            series7.LabelBorderWidth = 0;
            series7.LabelForeColor = System.Drawing.Color.White;
            series7.Name = "Actual";
            dataPoint1.AxisLabel = "14";
            series7.Points.Add(dataPoint1);
            this.chrPorHora3.Series.Add(series7);
            this.chrPorHora3.Size = new System.Drawing.Size(88, 547);
            this.chrPorHora3.TabIndex = 26;
            this.chrPorHora3.Text = "chart1";
            title3.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title3.ForeColor = System.Drawing.Color.White;
            title3.Name = "Title1";
            title3.ShadowOffset = 2;
            title3.Text = "Suc 3";
            this.chrPorHora3.Titles.Add(title3);
            // 
            // chrPorHora2
            // 
            this.chrPorHora2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorHora2.BackColor = System.Drawing.Color.Transparent;
            chartArea4.Area3DStyle.Enable3D = true;
            chartArea4.Area3DStyle.PointDepth = 20;
            chartArea4.Area3DStyle.PointGapDepth = 50;
            chartArea4.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea4.AxisX.LabelStyle.Enabled = false;
            chartArea4.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea4.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea4.AxisX.LineColor = System.Drawing.Color.White;
            chartArea4.AxisX.LineWidth = 2;
            chartArea4.AxisX.MajorGrid.Enabled = false;
            chartArea4.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea4.AxisX.MajorTickMark.Enabled = false;
            chartArea4.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea4.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea4.AxisY.ArrowStyle = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
            chartArea4.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea4.AxisY.Interval = 10D;
            chartArea4.AxisY.IsLabelAutoFit = false;
            chartArea4.AxisY.LabelStyle.Enabled = false;
            chartArea4.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea4.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea4.AxisY.LineColor = System.Drawing.Color.White;
            chartArea4.AxisY.LineWidth = 2;
            chartArea4.AxisY.MajorGrid.Enabled = false;
            chartArea4.AxisY.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea4.AxisY.MajorTickMark.Enabled = false;
            chartArea4.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
            chartArea4.AxisY.MajorTickMark.LineWidth = 2;
            chartArea4.AxisY.MajorTickMark.Size = 4F;
            chartArea4.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea4.AxisY.MinorTickMark.LineColor = System.Drawing.Color.White;
            chartArea4.AxisY.MinorTickMark.LineWidth = 2;
            chartArea4.AxisY.MinorTickMark.Size = 4F;
            chartArea4.AxisY.MinorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea4.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea4.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea4.BackColor = System.Drawing.Color.Transparent;
            chartArea4.BorderWidth = 0;
            chartArea4.Name = "ChartArea1";
            this.chrPorHora2.ChartAreas.Add(chartArea4);
            this.chrPorHora2.Location = new System.Drawing.Point(1274, 6);
            this.chrPorHora2.Name = "chrPorHora2";
            this.chrPorHora2.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series8.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
            series8.BackSecondaryColor = System.Drawing.Color.Transparent;
            series8.BorderColor = System.Drawing.Color.Transparent;
            series8.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            series8.BorderWidth = 0;
            series8.ChartArea = "ChartArea1";
            series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series8.CustomProperties = "PixelPointWidth=80";
            series8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series8.Label = "#AXISLABEL";
            series8.LabelBorderWidth = 0;
            series8.LabelForeColor = System.Drawing.Color.White;
            series8.Name = "Actual";
            dataPoint2.AxisLabel = "14";
            series8.Points.Add(dataPoint2);
            this.chrPorHora2.Series.Add(series8);
            this.chrPorHora2.Size = new System.Drawing.Size(88, 547);
            this.chrPorHora2.TabIndex = 25;
            this.chrPorHora2.Text = "chart1";
            title4.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title4.ForeColor = System.Drawing.Color.White;
            title4.Name = "Title1";
            title4.ShadowOffset = 2;
            title4.Text = "Suc 2";
            this.chrPorHora2.Titles.Add(title4);
            // 
            // chrPorDiaSem3
            // 
            this.chrPorDiaSem3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorDiaSem3.BackColor = System.Drawing.Color.Transparent;
            this.chrPorDiaSem3.BorderSkin.BorderWidth = 0;
            chartArea5.Area3DStyle.Enable3D = true;
            chartArea5.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
            chartArea5.Area3DStyle.PointDepth = 60;
            chartArea5.Area3DStyle.PointGapDepth = 60;
            chartArea5.Area3DStyle.WallWidth = 0;
            chartArea5.AxisX.IntervalOffset = 1D;
            chartArea5.AxisX.IsLabelAutoFit = false;
            chartArea5.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea5.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea5.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea5.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.AxisX.ScaleView.Size = 11D;
            chartArea5.AxisY.IsLabelAutoFit = false;
            chartArea5.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea5.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea5.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea5.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea5.BackColor = System.Drawing.Color.Transparent;
            chartArea5.Name = "ChartArea1";
            this.chrPorDiaSem3.ChartAreas.Add(chartArea5);
            this.chrPorDiaSem3.Location = new System.Drawing.Point(772, 213);
            this.chrPorDiaSem3.Name = "chrPorDiaSem3";
            this.chrPorDiaSem3.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series9.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series9.BackSecondaryColor = System.Drawing.Color.Transparent;
            series9.BorderColor = System.Drawing.Color.White;
            series9.BorderWidth = 0;
            series9.ChartArea = "ChartArea1";
            series9.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series9.Color = System.Drawing.Color.White;
            series9.CustomProperties = "PieLineColor=White, PieDrawingStyle=Concave, PieLabelStyle=Outside";
            series9.EmptyPointStyle.CustomProperties = "Exploded=True";
            series9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series9.IsValueShownAsLabel = true;
            series9.Label = "#AXISLABEL (#PERCENT{P0})";
            series9.LabelForeColor = System.Drawing.Color.White;
            series9.MarkerColor = System.Drawing.Color.Green;
            series9.MarkerSize = 7;
            series9.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
            series9.Name = "Actual";
            series9.ShadowColor = System.Drawing.Color.White;
            series9.ShadowOffset = 3;
            series9.SmartLabelStyle.MovingDirection = ((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.Top | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.TopRight) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomLeft) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomRight)));
            this.chrPorDiaSem3.Series.Add(series9);
            this.chrPorDiaSem3.Size = new System.Drawing.Size(358, 340);
            this.chrPorDiaSem3.TabIndex = 24;
            this.chrPorDiaSem3.Text = "chart1";
            title5.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title5.ForeColor = System.Drawing.Color.White;
            title5.Name = "Title1";
            title5.ShadowOffset = 2;
            title5.Text = "Sucursal 3";
            this.chrPorDiaSem3.Titles.Add(title5);
            // 
            // chrPorDiaSem2
            // 
            this.chrPorDiaSem2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorDiaSem2.BackColor = System.Drawing.Color.Transparent;
            this.chrPorDiaSem2.BorderSkin.BorderWidth = 0;
            chartArea6.Area3DStyle.Enable3D = true;
            chartArea6.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
            chartArea6.Area3DStyle.PointDepth = 60;
            chartArea6.Area3DStyle.PointGapDepth = 60;
            chartArea6.Area3DStyle.WallWidth = 0;
            chartArea6.AxisX.IntervalOffset = 1D;
            chartArea6.AxisX.IsLabelAutoFit = false;
            chartArea6.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea6.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea6.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea6.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisX.ScaleView.Size = 11D;
            chartArea6.AxisY.IsLabelAutoFit = false;
            chartArea6.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea6.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea6.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea6.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea6.BackColor = System.Drawing.Color.Transparent;
            chartArea6.Name = "ChartArea1";
            this.chrPorDiaSem2.ChartAreas.Add(chartArea6);
            this.chrPorDiaSem2.Location = new System.Drawing.Point(389, 213);
            this.chrPorDiaSem2.Name = "chrPorDiaSem2";
            this.chrPorDiaSem2.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series10.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series10.BackSecondaryColor = System.Drawing.Color.Transparent;
            series10.BorderColor = System.Drawing.Color.White;
            series10.BorderWidth = 0;
            series10.ChartArea = "ChartArea1";
            series10.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series10.Color = System.Drawing.Color.White;
            series10.CustomProperties = "PieLineColor=White, PieDrawingStyle=Concave, PieLabelStyle=Outside";
            series10.EmptyPointStyle.CustomProperties = "Exploded=True";
            series10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series10.IsValueShownAsLabel = true;
            series10.Label = "#AXISLABEL (#PERCENT{P0})";
            series10.LabelForeColor = System.Drawing.Color.White;
            series10.MarkerColor = System.Drawing.Color.Green;
            series10.MarkerSize = 7;
            series10.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
            series10.Name = "Actual";
            series10.ShadowColor = System.Drawing.Color.White;
            series10.ShadowOffset = 3;
            series10.SmartLabelStyle.MovingDirection = ((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.Top | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.TopRight) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomLeft) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomRight)));
            this.chrPorDiaSem2.Series.Add(series10);
            this.chrPorDiaSem2.Size = new System.Drawing.Size(358, 340);
            this.chrPorDiaSem2.TabIndex = 23;
            this.chrPorDiaSem2.Text = "chart1";
            title6.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title6.ForeColor = System.Drawing.Color.White;
            title6.Name = "Title1";
            title6.ShadowOffset = 2;
            title6.Text = "Sucursal 2";
            this.chrPorDiaSem2.Titles.Add(title6);
            // 
            // chrPorHora1
            // 
            this.chrPorHora1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorHora1.BackColor = System.Drawing.Color.Transparent;
            chartArea7.Area3DStyle.Enable3D = true;
            chartArea7.Area3DStyle.PointDepth = 20;
            chartArea7.Area3DStyle.PointGapDepth = 50;
            chartArea7.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea7.AxisX.LabelStyle.Enabled = false;
            chartArea7.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea7.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea7.AxisX.LineColor = System.Drawing.Color.White;
            chartArea7.AxisX.LineWidth = 2;
            chartArea7.AxisX.MajorGrid.Enabled = false;
            chartArea7.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea7.AxisX.MajorTickMark.Enabled = false;
            chartArea7.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea7.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea7.AxisY.ArrowStyle = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
            chartArea7.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea7.AxisY.Interval = 10D;
            chartArea7.AxisY.IsLabelAutoFit = false;
            chartArea7.AxisY.LabelStyle.Enabled = false;
            chartArea7.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea7.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea7.AxisY.LineColor = System.Drawing.Color.White;
            chartArea7.AxisY.LineWidth = 2;
            chartArea7.AxisY.MajorGrid.Enabled = false;
            chartArea7.AxisY.MajorGrid.LineColor = System.Drawing.Color.White;
            chartArea7.AxisY.MajorTickMark.Enabled = false;
            chartArea7.AxisY.MajorTickMark.LineColor = System.Drawing.Color.White;
            chartArea7.AxisY.MajorTickMark.LineWidth = 2;
            chartArea7.AxisY.MajorTickMark.Size = 4F;
            chartArea7.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea7.AxisY.MinorTickMark.LineColor = System.Drawing.Color.White;
            chartArea7.AxisY.MinorTickMark.LineWidth = 2;
            chartArea7.AxisY.MinorTickMark.Size = 4F;
            chartArea7.AxisY.MinorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.InsideArea;
            chartArea7.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea7.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea7.BackColor = System.Drawing.Color.Transparent;
            chartArea7.BorderWidth = 0;
            chartArea7.Name = "ChartArea1";
            this.chrPorHora1.ChartAreas.Add(chartArea7);
            this.chrPorHora1.Location = new System.Drawing.Point(1180, 6);
            this.chrPorHora1.Name = "chrPorHora1";
            this.chrPorHora1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series11.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
            series11.BackSecondaryColor = System.Drawing.Color.Transparent;
            series11.BorderColor = System.Drawing.Color.Transparent;
            series11.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            series11.BorderWidth = 0;
            series11.ChartArea = "ChartArea1";
            series11.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StackedColumn100;
            series11.CustomProperties = "PixelPointWidth=80";
            series11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series11.Label = "#AXISLABEL";
            series11.LabelBorderWidth = 0;
            series11.LabelForeColor = System.Drawing.Color.White;
            series11.Name = "Actual";
            dataPoint3.AxisLabel = "14";
            series11.Points.Add(dataPoint3);
            this.chrPorHora1.Series.Add(series11);
            this.chrPorHora1.Size = new System.Drawing.Size(88, 547);
            this.chrPorHora1.TabIndex = 22;
            this.chrPorHora1.Text = "chart1";
            title7.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title7.ForeColor = System.Drawing.Color.White;
            title7.Name = "Title1";
            title7.ShadowOffset = 2;
            title7.Text = "Matriz";
            this.chrPorHora1.Titles.Add(title7);
            // 
            // chrPorDiaSem1
            // 
            this.chrPorDiaSem1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chrPorDiaSem1.BackColor = System.Drawing.Color.Transparent;
            this.chrPorDiaSem1.BorderSkin.BorderWidth = 0;
            chartArea8.Area3DStyle.Enable3D = true;
            chartArea8.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
            chartArea8.Area3DStyle.PointDepth = 60;
            chartArea8.Area3DStyle.PointGapDepth = 60;
            chartArea8.Area3DStyle.WallWidth = 0;
            chartArea8.AxisX.IntervalOffset = 1D;
            chartArea8.AxisX.IsLabelAutoFit = false;
            chartArea8.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea8.AxisX.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea8.AxisX.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisX.MajorGrid.LineColor = System.Drawing.Color.Empty;
            chartArea8.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisX.ScaleView.Size = 11D;
            chartArea8.AxisY.IsLabelAutoFit = false;
            chartArea8.AxisY.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea8.AxisY.LabelStyle.ForeColor = System.Drawing.Color.White;
            chartArea8.AxisY.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisY.MajorTickMark.LineColor = System.Drawing.Color.DarkGray;
            chartArea8.AxisY.TitleForeColor = System.Drawing.Color.Empty;
            chartArea8.BackColor = System.Drawing.Color.Transparent;
            chartArea8.Name = "ChartArea1";
            this.chrPorDiaSem1.ChartAreas.Add(chartArea8);
            this.chrPorDiaSem1.Location = new System.Drawing.Point(6, 213);
            this.chrPorDiaSem1.Name = "chrPorDiaSem1";
            this.chrPorDiaSem1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.SemiTransparent;
            series12.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.DiagonalLeft;
            series12.BackSecondaryColor = System.Drawing.Color.Transparent;
            series12.BorderColor = System.Drawing.Color.White;
            series12.BorderWidth = 0;
            series12.ChartArea = "ChartArea1";
            series12.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series12.Color = System.Drawing.Color.White;
            series12.CustomProperties = "PieLineColor=White, PieDrawingStyle=Concave, PieLabelStyle=Outside";
            series12.EmptyPointStyle.CustomProperties = "Exploded=True";
            series12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series12.IsValueShownAsLabel = true;
            series12.Label = "#AXISLABEL (#PERCENT{P0})";
            series12.LabelForeColor = System.Drawing.Color.White;
            series12.MarkerColor = System.Drawing.Color.Green;
            series12.MarkerSize = 7;
            series12.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
            series12.Name = "Actual";
            series12.ShadowColor = System.Drawing.Color.White;
            series12.ShadowOffset = 3;
            series12.SmartLabelStyle.MovingDirection = ((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.Top | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.TopRight) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomLeft) 
            | System.Windows.Forms.DataVisualization.Charting.LabelAlignmentStyles.BottomRight)));
            this.chrPorDiaSem1.Series.Add(series12);
            this.chrPorDiaSem1.Size = new System.Drawing.Size(358, 340);
            this.chrPorDiaSem1.TabIndex = 21;
            this.chrPorDiaSem1.Text = "chart1";
            title8.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
            title8.ForeColor = System.Drawing.Color.White;
            title8.Name = "Title1";
            title8.ShadowOffset = 2;
            title8.Text = "Matriz";
            this.chrPorDiaSem1.Titles.Add(title8);
            // 
            // dgvPorHora
            // 
            this.dgvPorHora.AllowUserToAddRows = false;
            this.dgvPorHora.AllowUserToDeleteRows = false;
            this.dgvPorHora.AllowUserToResizeRows = false;
            this.dgvPorHora.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorHora.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorHora.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorHora.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorHora.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorHora.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.hor_Hora,
            this.hor_Suc01_Actual,
            this.hor_Suc01_Resultado,
            this.hor_Suc01_Porcentaje,
            this.hor_Suc02_Actual,
            this.hor_Suc02_Resultado,
            this.hor_Suc02_Porcentaje,
            this.hor_Suc03_Actual,
            this.hor_Suc03_Resultado,
            this.hor_Suc03_Porcentaje});
            dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle47.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle47.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle47.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle47.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle47.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorHora.DefaultCellStyle = dataGridViewCellStyle47;
            this.dgvPorHora.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorHora.Location = new System.Drawing.Point(574, 3);
            this.dgvPorHora.Name = "dgvPorHora";
            this.dgvPorHora.ReadOnly = true;
            this.dgvPorHora.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle48.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle48.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle48.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle48.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle48.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorHora.RowHeadersDefaultCellStyle = dataGridViewCellStyle48;
            this.dgvPorHora.RowHeadersVisible = false;
            this.dgvPorHora.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorHora.Size = new System.Drawing.Size(565, 304);
            this.dgvPorHora.TabIndex = 3;
            // 
            // hor_Hora
            // 
            dataGridViewCellStyle37.NullValue = null;
            this.hor_Hora.DefaultCellStyle = dataGridViewCellStyle37;
            this.hor_Hora.HeaderText = "Hora";
            this.hor_Hora.Name = "hor_Hora";
            this.hor_Hora.ReadOnly = true;
            this.hor_Hora.Width = 60;
            // 
            // hor_Suc01_Actual
            // 
            dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle38.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle38.Format = "C2";
            this.hor_Suc01_Actual.DefaultCellStyle = dataGridViewCellStyle38;
            this.hor_Suc01_Actual.HeaderText = "Matriz";
            this.hor_Suc01_Actual.Name = "hor_Suc01_Actual";
            this.hor_Suc01_Actual.ReadOnly = true;
            this.hor_Suc01_Actual.Width = 80;
            // 
            // hor_Suc01_Resultado
            // 
            dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle39.Format = "N2";
            this.hor_Suc01_Resultado.DefaultCellStyle = dataGridViewCellStyle39;
            this.hor_Suc01_Resultado.HeaderText = "R°";
            this.hor_Suc01_Resultado.Name = "hor_Suc01_Resultado";
            this.hor_Suc01_Resultado.ReadOnly = true;
            this.hor_Suc01_Resultado.Width = 40;
            // 
            // hor_Suc01_Porcentaje
            // 
            dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle40.Format = "N2";
            this.hor_Suc01_Porcentaje.DefaultCellStyle = dataGridViewCellStyle40;
            this.hor_Suc01_Porcentaje.HeaderText = "%";
            this.hor_Suc01_Porcentaje.Name = "hor_Suc01_Porcentaje";
            this.hor_Suc01_Porcentaje.ReadOnly = true;
            this.hor_Suc01_Porcentaje.Width = 40;
            // 
            // hor_Suc02_Actual
            // 
            dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle41.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle41.Format = "C2";
            this.hor_Suc02_Actual.DefaultCellStyle = dataGridViewCellStyle41;
            this.hor_Suc02_Actual.HeaderText = "Suc 02";
            this.hor_Suc02_Actual.Name = "hor_Suc02_Actual";
            this.hor_Suc02_Actual.ReadOnly = true;
            this.hor_Suc02_Actual.Width = 80;
            // 
            // hor_Suc02_Resultado
            // 
            dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle42.Format = "N2";
            this.hor_Suc02_Resultado.DefaultCellStyle = dataGridViewCellStyle42;
            this.hor_Suc02_Resultado.HeaderText = "R°";
            this.hor_Suc02_Resultado.Name = "hor_Suc02_Resultado";
            this.hor_Suc02_Resultado.ReadOnly = true;
            this.hor_Suc02_Resultado.Width = 40;
            // 
            // hor_Suc02_Porcentaje
            // 
            dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle43.Format = "N2";
            this.hor_Suc02_Porcentaje.DefaultCellStyle = dataGridViewCellStyle43;
            this.hor_Suc02_Porcentaje.HeaderText = "%";
            this.hor_Suc02_Porcentaje.Name = "hor_Suc02_Porcentaje";
            this.hor_Suc02_Porcentaje.ReadOnly = true;
            this.hor_Suc02_Porcentaje.Width = 40;
            // 
            // hor_Suc03_Actual
            // 
            dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle44.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle44.Format = "C2";
            this.hor_Suc03_Actual.DefaultCellStyle = dataGridViewCellStyle44;
            this.hor_Suc03_Actual.HeaderText = "Suc 03";
            this.hor_Suc03_Actual.Name = "hor_Suc03_Actual";
            this.hor_Suc03_Actual.ReadOnly = true;
            this.hor_Suc03_Actual.Width = 80;
            // 
            // hor_Suc03_Resultado
            // 
            dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle45.Format = "N2";
            this.hor_Suc03_Resultado.DefaultCellStyle = dataGridViewCellStyle45;
            this.hor_Suc03_Resultado.HeaderText = "R°";
            this.hor_Suc03_Resultado.Name = "hor_Suc03_Resultado";
            this.hor_Suc03_Resultado.ReadOnly = true;
            this.hor_Suc03_Resultado.Width = 40;
            // 
            // hor_Suc03_Porcentaje
            // 
            dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle46.Format = "N2";
            this.hor_Suc03_Porcentaje.DefaultCellStyle = dataGridViewCellStyle46;
            this.hor_Suc03_Porcentaje.HeaderText = "%";
            this.hor_Suc03_Porcentaje.Name = "hor_Suc03_Porcentaje";
            this.hor_Suc03_Porcentaje.ReadOnly = true;
            this.hor_Suc03_Porcentaje.Width = 40;
            // 
            // dgvPorDiaSem
            // 
            this.dgvPorDiaSem.AllowUserToAddRows = false;
            this.dgvPorDiaSem.AllowUserToDeleteRows = false;
            this.dgvPorDiaSem.AllowUserToResizeRows = false;
            this.dgvPorDiaSem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dgvPorDiaSem.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.dgvPorDiaSem.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgvPorDiaSem.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
            this.dgvPorDiaSem.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvPorDiaSem.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dse_Dia,
            this.dse_Suc01_Actual,
            this.dse_Suc01_Resultado,
            this.dse_Suc01_Porcentaje,
            this.dse_Suc02_Actual,
            this.dse_Suc02_Resultado,
            this.dse_Suc02_Porcentaje,
            this.dse_Suc03_Actual,
            this.dse_Suc03_Resultado,
            this.dse_Suc03_Porcentaje});
            dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle59.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            dataGridViewCellStyle59.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle59.ForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle59.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle59.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle59.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvPorDiaSem.DefaultCellStyle = dataGridViewCellStyle59;
            this.dgvPorDiaSem.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            this.dgvPorDiaSem.Location = new System.Drawing.Point(3, 3);
            this.dgvPorDiaSem.Name = "dgvPorDiaSem";
            this.dgvPorDiaSem.ReadOnly = true;
            this.dgvPorDiaSem.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle60.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(199)))), ((int)(((byte)(216)))));
            dataGridViewCellStyle60.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle60.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle60.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle60.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle60.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgvPorDiaSem.RowHeadersDefaultCellStyle = dataGridViewCellStyle60;
            this.dgvPorDiaSem.RowHeadersVisible = false;
            this.dgvPorDiaSem.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvPorDiaSem.Size = new System.Drawing.Size(565, 370);
            this.dgvPorDiaSem.TabIndex = 2;
            // 
            // dse_Dia
            // 
            dataGridViewCellStyle49.NullValue = null;
            this.dse_Dia.DefaultCellStyle = dataGridViewCellStyle49;
            this.dse_Dia.HeaderText = "Día";
            this.dse_Dia.Name = "dse_Dia";
            this.dse_Dia.ReadOnly = true;
            this.dse_Dia.Width = 60;
            // 
            // dse_Suc01_Actual
            // 
            dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle50.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle50.Format = "C2";
            this.dse_Suc01_Actual.DefaultCellStyle = dataGridViewCellStyle50;
            this.dse_Suc01_Actual.HeaderText = "Matriz";
            this.dse_Suc01_Actual.Name = "dse_Suc01_Actual";
            this.dse_Suc01_Actual.ReadOnly = true;
            this.dse_Suc01_Actual.Width = 80;
            // 
            // dse_Suc01_Resultado
            // 
            dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle51.Format = "N2";
            this.dse_Suc01_Resultado.DefaultCellStyle = dataGridViewCellStyle51;
            this.dse_Suc01_Resultado.HeaderText = "R°";
            this.dse_Suc01_Resultado.Name = "dse_Suc01_Resultado";
            this.dse_Suc01_Resultado.ReadOnly = true;
            this.dse_Suc01_Resultado.Width = 40;
            // 
            // dse_Suc01_Porcentaje
            // 
            dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle52.Format = "N2";
            this.dse_Suc01_Porcentaje.DefaultCellStyle = dataGridViewCellStyle52;
            this.dse_Suc01_Porcentaje.HeaderText = "%";
            this.dse_Suc01_Porcentaje.Name = "dse_Suc01_Porcentaje";
            this.dse_Suc01_Porcentaje.ReadOnly = true;
            this.dse_Suc01_Porcentaje.Width = 40;
            // 
            // dse_Suc02_Actual
            // 
            dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle53.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle53.Format = "C2";
            this.dse_Suc02_Actual.DefaultCellStyle = dataGridViewCellStyle53;
            this.dse_Suc02_Actual.HeaderText = "Suc 02";
            this.dse_Suc02_Actual.Name = "dse_Suc02_Actual";
            this.dse_Suc02_Actual.ReadOnly = true;
            this.dse_Suc02_Actual.Width = 80;
            // 
            // dse_Suc02_Resultado
            // 
            dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle54.Format = "N2";
            this.dse_Suc02_Resultado.DefaultCellStyle = dataGridViewCellStyle54;
            this.dse_Suc02_Resultado.HeaderText = "R°";
            this.dse_Suc02_Resultado.Name = "dse_Suc02_Resultado";
            this.dse_Suc02_Resultado.ReadOnly = true;
            this.dse_Suc02_Resultado.Width = 40;
            // 
            // dse_Suc02_Porcentaje
            // 
            dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle55.Format = "N2";
            this.dse_Suc02_Porcentaje.DefaultCellStyle = dataGridViewCellStyle55;
            this.dse_Suc02_Porcentaje.HeaderText = "%";
            this.dse_Suc02_Porcentaje.Name = "dse_Suc02_Porcentaje";
            this.dse_Suc02_Porcentaje.ReadOnly = true;
            this.dse_Suc02_Porcentaje.Width = 40;
            // 
            // dse_Suc03_Actual
            // 
            dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle56.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle56.Format = "C2";
            this.dse_Suc03_Actual.DefaultCellStyle = dataGridViewCellStyle56;
            this.dse_Suc03_Actual.HeaderText = "Suc 03";
            this.dse_Suc03_Actual.Name = "dse_Suc03_Actual";
            this.dse_Suc03_Actual.ReadOnly = true;
            this.dse_Suc03_Actual.Width = 80;
            // 
            // dse_Suc03_Resultado
            // 
            dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle57.Format = "N2";
            this.dse_Suc03_Resultado.DefaultCellStyle = dataGridViewCellStyle57;
            this.dse_Suc03_Resultado.HeaderText = "R°";
            this.dse_Suc03_Resultado.Name = "dse_Suc03_Resultado";
            this.dse_Suc03_Resultado.ReadOnly = true;
            this.dse_Suc03_Resultado.Width = 40;
            // 
            // dse_Suc03_Porcentaje
            // 
            dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle58.Format = "N2";
            this.dse_Suc03_Porcentaje.DefaultCellStyle = dataGridViewCellStyle58;
            this.dse_Suc03_Porcentaje.HeaderText = "%";
            this.dse_Suc03_Porcentaje.Name = "dse_Suc03_Porcentaje";
            this.dse_Suc03_Porcentaje.ReadOnly = true;
            this.dse_Suc03_Porcentaje.Width = 40;
            // 
            // tbpPorProveedor
            // 
            this.tbpPorProveedor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.tbpPorProveedor.Controls.Add(this.ctlPorProveedor);
            this.tbpPorProveedor.Location = new System.Drawing.Point(4, 22);
            this.tbpPorProveedor.Name = "tbpPorProveedor";
            this.tbpPorProveedor.Size = new System.Drawing.Size(1486, 556);
            this.tbpPorProveedor.TabIndex = 2;
            this.tbpPorProveedor.Text = "Proveedor";
            // 
            // tbpPorMarca
            // 
            this.tbpPorMarca.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.tbpPorMarca.Controls.Add(this.ctlPorMarca);
            this.tbpPorMarca.Location = new System.Drawing.Point(4, 22);
            this.tbpPorMarca.Name = "tbpPorMarca";
            this.tbpPorMarca.Size = new System.Drawing.Size(1486, 556);
            this.tbpPorMarca.TabIndex = 3;
            this.tbpPorMarca.Text = "Marca";
            // 
            // tbpPorLinea
            // 
            this.tbpPorLinea.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.tbpPorLinea.Controls.Add(this.ctlPorLinea);
            this.tbpPorLinea.Location = new System.Drawing.Point(4, 22);
            this.tbpPorLinea.Name = "tbpPorLinea";
            this.tbpPorLinea.Size = new System.Drawing.Size(1486, 556);
            this.tbpPorLinea.TabIndex = 4;
            this.tbpPorLinea.Text = "Línea";
            // 
            // nudDecimales
            // 
            this.nudDecimales.Location = new System.Drawing.Point(763, 4);
            this.nudDecimales.Maximum = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.nudDecimales.Name = "nudDecimales";
            this.nudDecimales.Size = new System.Drawing.Size(40, 20);
            this.nudDecimales.TabIndex = 8;
            this.nudDecimales.ValueChanged += new System.EventHandler(this.nudDecimales_ValueChanged);
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.ForeColor = System.Drawing.Color.White;
            this.label9.Location = new System.Drawing.Point(701, 6);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(56, 13);
            this.label9.TabIndex = 7;
            this.label9.Text = "Decimales";
            // 
            // cmbCalculo
            // 
            this.cmbCalculo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbCalculo.FormattingEnabled = true;
            this.cmbCalculo.Location = new System.Drawing.Point(52, 3);
            this.cmbCalculo.Name = "cmbCalculo";
            this.cmbCalculo.Size = new System.Drawing.Size(100, 21);
            this.cmbCalculo.TabIndex = 0;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.ForeColor = System.Drawing.Color.White;
            this.label8.Location = new System.Drawing.Point(4, 6);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(42, 13);
            this.label8.TabIndex = 190;
            this.label8.Text = "Cálculo";
            // 
            // btnMostrar
            // 
            this.btnMostrar.Location = new System.Drawing.Point(837, 3);
            this.btnMostrar.Name = "btnMostrar";
            this.btnMostrar.Size = new System.Drawing.Size(75, 23);
            this.btnMostrar.TabIndex = 9;
            this.btnMostrar.Text = "Mostrar";
            this.btnMostrar.UseVisualStyleBackColor = true;
            this.btnMostrar.Click += new System.EventHandler(this.btnMostrar_Click);
            // 
            // chkOmitirDomingos
            // 
            this.chkOmitirDomingos.AutoSize = true;
            this.chkOmitirDomingos.ForeColor = System.Drawing.Color.White;
            this.chkOmitirDomingos.Location = new System.Drawing.Point(389, 5);
            this.chkOmitirDomingos.Name = "chkOmitirDomingos";
            this.chkOmitirDomingos.Size = new System.Drawing.Size(102, 17);
            this.chkOmitirDomingos.TabIndex = 4;
            this.chkOmitirDomingos.Text = "Omitir Domingos";
            this.chkOmitirDomingos.UseVisualStyleBackColor = true;
            // 
            // chk9500
            // 
            this.chk9500.AutoSize = true;
            this.chk9500.ForeColor = System.Drawing.Color.White;
            this.chk9500.Location = new System.Drawing.Point(309, 5);
            this.chk9500.Name = "chk9500";
            this.chk9500.Size = new System.Drawing.Size(74, 17);
            this.chk9500.TabIndex = 3;
            this.chk9500.Text = "Sólo 9500";
            this.chk9500.UseVisualStyleBackColor = true;
            // 
            // chkCobradas
            // 
            this.chkCobradas.AutoSize = true;
            this.chkCobradas.ForeColor = System.Drawing.Color.White;
            this.chkCobradas.Location = new System.Drawing.Point(232, 5);
            this.chkCobradas.Name = "chkCobradas";
            this.chkCobradas.Size = new System.Drawing.Size(71, 17);
            this.chkCobradas.TabIndex = 2;
            this.chkCobradas.Text = "Cobradas";
            this.chkCobradas.UseVisualStyleBackColor = true;
            // 
            // chkPagadas
            // 
            this.chkPagadas.AutoSize = true;
            this.chkPagadas.ForeColor = System.Drawing.Color.White;
            this.chkPagadas.Location = new System.Drawing.Point(158, 5);
            this.chkPagadas.Name = "chkPagadas";
            this.chkPagadas.Size = new System.Drawing.Size(68, 17);
            this.chkPagadas.TabIndex = 1;
            this.chkPagadas.Text = "Pagadas";
            this.chkPagadas.UseVisualStyleBackColor = true;
            // 
            // dtpHasta
            // 
            this.dtpHasta.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpHasta.Location = new System.Drawing.Point(599, 2);
            this.dtpHasta.Name = "dtpHasta";
            this.dtpHasta.Size = new System.Drawing.Size(96, 20);
            this.dtpHasta.TabIndex = 6;
            // 
            // dtpDesde
            // 
            this.dtpDesde.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpDesde.Location = new System.Drawing.Point(497, 2);
            this.dtpDesde.Name = "dtpDesde";
            this.dtpDesde.Size = new System.Drawing.Size(96, 20);
            this.dtpDesde.TabIndex = 5;
            // 
            // ctlPorProveedor
            // 
            this.ctlPorProveedor.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.ctlPorProveedor.Location = new System.Drawing.Point(3, 3);
            this.ctlPorProveedor.Name = "ctlPorProveedor";
            this.ctlPorProveedor.Size = new System.Drawing.Size(1480, 550);
            this.ctlPorProveedor.TabIndex = 0;
            // 
            // ctlPorMarca
            // 
            this.ctlPorMarca.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.ctlPorMarca.Location = new System.Drawing.Point(3, 3);
            this.ctlPorMarca.Name = "ctlPorMarca";
            this.ctlPorMarca.Size = new System.Drawing.Size(1480, 550);
            this.ctlPorMarca.TabIndex = 1;
            // 
            // ctlPorLinea
            // 
            this.ctlPorLinea.Location = new System.Drawing.Point(3, 3);
            this.ctlPorLinea.Name = "ctlPorLinea";
            this.ctlPorLinea.Size = new System.Drawing.Size(1253, 550);
            this.ctlPorLinea.TabIndex = 2;
            // 
            // CuadroSucursales
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(87)))), ((int)(((byte)(123)))));
            this.Controls.Add(this.dtpHasta);
            this.Controls.Add(this.dtpDesde);
            this.Controls.Add(this.nudDecimales);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.cmbCalculo);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.btnMostrar);
            this.Controls.Add(this.chkOmitirDomingos);
            this.Controls.Add(this.chk9500);
            this.Controls.Add(this.chkCobradas);
            this.Controls.Add(this.chkPagadas);
            this.Controls.Add(this.tabSucursales);
            this.Name = "CuadroSucursales";
            this.Size = new System.Drawing.Size(1500, 615);
            this.Load += new System.EventHandler(this.CuadroSucursales_Load);
            this.tabSucursales.ResumeLayout(false);
            this.tbpPorFecha.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorSemana)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorMes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorSemana)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorMes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDia)).EndInit();
            this.tbpPorDiaYHora.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorHora1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chrPorDiaSem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorHora)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvPorDiaSem)).EndInit();
            this.tbpPorProveedor.ResumeLayout(false);
            this.tbpPorMarca.ResumeLayout(false);
            this.tbpPorLinea.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.nudDecimales)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #51
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(Form1));
            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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 500D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(30D, 0D);
            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(0D, 500D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 480D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6D, 400D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9D, 400D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(12D, 380D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(15D, 310D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(18D, 270D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(21D, 240D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(24D, 200D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(27D, 140D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint13 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(30D, 50D);
            this.database1DataSet1 = new WindowsFormsApplication13.Database1DataSet1();
            this.storyBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.storyTableAdapter = new WindowsFormsApplication13.Database1DataSet1TableAdapters.StoryTableAdapter();
            this.tableAdapterManager = new WindowsFormsApplication13.Database1DataSet1TableAdapters.TableAdapterManager();
            this.storyBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
            this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
            this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
            this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.storyBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
            this.programmerBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.programmerTableAdapter = new WindowsFormsApplication13.Database1DataSet1TableAdapters.ProgrammerTableAdapter();
            this.sprintBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.sprintTableAdapter = new WindowsFormsApplication13.Database1DataSet1TableAdapters.SprintTableAdapter();
            this.storyDataGridView = new System.Windows.Forms.DataGridView();
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabControl = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.taskDataGridView = new System.Windows.Forms.DataGridView();
            this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.taskBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.tabPage5 = new System.Windows.Forms.TabPage();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.ColumnProgramerId = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColumnProgramerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColumnExpectedWorkingHouers = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColumnActualWorkingHours = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColumnRisk = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.teamToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.addMemberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeMamberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.teamSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sprintToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newSprintToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editSprintToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.windowOptionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.taskTableAdapter = new WindowsFormsApplication13.Database1DataSet1TableAdapters.TaskTableAdapter();
            ((System.ComponentModel.ISupportInitialize)(this.database1DataSet1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.storyBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.storyBindingNavigator)).BeginInit();
            this.storyBindingNavigator.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.programmerBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sprintBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.storyDataGridView)).BeginInit();
            this.tabControl.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.taskDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.taskBindingSource)).BeginInit();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.tabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // database1DataSet1
            // 
            this.database1DataSet1.DataSetName = "Database1DataSet1";
            this.database1DataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // storyBindingSource
            // 
            this.storyBindingSource.DataMember = "Story";
            this.storyBindingSource.DataSource = this.database1DataSet1;
            // 
            // storyTableAdapter
            // 
            this.storyTableAdapter.ClearBeforeFill = true;
            // 
            // tableAdapterManager
            // 
            this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
            this.tableAdapterManager.DateTableAdapter = null;
            this.tableAdapterManager.ProgrammerTableAdapter = null;
            this.tableAdapterManager.SprintTableAdapter = null;
            this.tableAdapterManager.Story_In_SprintTableAdapter = null;
            this.tableAdapterManager.StoryTableAdapter = this.storyTableAdapter;
            this.tableAdapterManager.TaskTableAdapter = null;
            this.tableAdapterManager.UpdateOrder = WindowsFormsApplication13.Database1DataSet1TableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
            this.tableAdapterManager.Work_hoursTableAdapter = null;
            // 
            // storyBindingNavigator
            // 
            this.storyBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
            this.storyBindingNavigator.BindingSource = this.storyBindingSource;
            this.storyBindingNavigator.CountItem = this.bindingNavigatorCountItem;
            this.storyBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
            this.storyBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bindingNavigatorMoveFirstItem,
            this.bindingNavigatorMovePreviousItem,
            this.bindingNavigatorSeparator,
            this.bindingNavigatorPositionItem,
            this.bindingNavigatorCountItem,
            this.bindingNavigatorSeparator1,
            this.bindingNavigatorMoveNextItem,
            this.bindingNavigatorMoveLastItem,
            this.bindingNavigatorSeparator2,
            this.bindingNavigatorAddNewItem,
            this.bindingNavigatorDeleteItem,
            this.storyBindingNavigatorSaveItem});
            this.storyBindingNavigator.Location = new System.Drawing.Point(0, 24);
            this.storyBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
            this.storyBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
            this.storyBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
            this.storyBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
            this.storyBindingNavigator.Name = "storyBindingNavigator";
            this.storyBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
            this.storyBindingNavigator.Size = new System.Drawing.Size(1055, 25);
            this.storyBindingNavigator.TabIndex = 0;
            this.storyBindingNavigator.Text = "bindingNavigator1";
            this.storyBindingNavigator.RefreshItems += new System.EventHandler(this.storyBindingNavigator_RefreshItems);
            // 
            // bindingNavigatorAddNewItem
            // 
            this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
            this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
            this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorAddNewItem.Text = "Add new";
            // 
            // bindingNavigatorCountItem
            // 
            this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
            this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
            this.bindingNavigatorCountItem.Text = "of {0}";
            this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
            // 
            // bindingNavigatorDeleteItem
            // 
            this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
            this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
            this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorDeleteItem.Text = "Delete";
            // 
            // bindingNavigatorMoveFirstItem
            // 
            this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
            this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
            this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMoveFirstItem.Text = "Move first";
            // 
            // bindingNavigatorMovePreviousItem
            // 
            this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
            this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
            this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMovePreviousItem.Text = "Move previous";
            // 
            // bindingNavigatorSeparator
            // 
            this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
            this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
            // 
            // bindingNavigatorPositionItem
            // 
            this.bindingNavigatorPositionItem.AccessibleName = "Position";
            this.bindingNavigatorPositionItem.AutoSize = false;
            this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
            this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
            this.bindingNavigatorPositionItem.Text = "0";
            this.bindingNavigatorPositionItem.ToolTipText = "Current position";
            // 
            // bindingNavigatorSeparator1
            // 
            this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
            this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // bindingNavigatorMoveNextItem
            // 
            this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
            this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
            this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMoveNextItem.Text = "Move next";
            // 
            // bindingNavigatorMoveLastItem
            // 
            this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
            this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
            this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMoveLastItem.Text = "Move last";
            // 
            // bindingNavigatorSeparator2
            // 
            this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
            this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // storyBindingNavigatorSaveItem
            // 
            this.storyBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.storyBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("storyBindingNavigatorSaveItem.Image")));
            this.storyBindingNavigatorSaveItem.Name = "storyBindingNavigatorSaveItem";
            this.storyBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
            this.storyBindingNavigatorSaveItem.Text = "Save Data";
            this.storyBindingNavigatorSaveItem.Click += new System.EventHandler(this.storyBindingNavigatorSaveItem_Click);
            // 
            // programmerBindingSource
            // 
            this.programmerBindingSource.DataMember = "Programmer";
            this.programmerBindingSource.DataSource = this.database1DataSet1;
            // 
            // programmerTableAdapter
            // 
            this.programmerTableAdapter.ClearBeforeFill = true;
            // 
            // sprintBindingSource
            // 
            this.sprintBindingSource.DataMember = "Sprint";
            this.sprintBindingSource.DataSource = this.database1DataSet1;
            // 
            // sprintTableAdapter
            // 
            this.sprintTableAdapter.ClearBeforeFill = true;
            // 
            // storyDataGridView
            // 
            this.storyDataGridView.AutoGenerateColumns = false;
            this.storyDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.storyDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn1,
            this.dataGridViewTextBoxColumn2,
            this.dataGridViewTextBoxColumn3,
            this.dataGridViewTextBoxColumn4,
            this.dataGridViewTextBoxColumn5,
            this.dataGridViewTextBoxColumn6,
            this.dataGridViewTextBoxColumn7});
            this.storyDataGridView.DataSource = this.storyBindingSource;
            this.storyDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.storyDataGridView.Location = new System.Drawing.Point(3, 3);
            this.storyDataGridView.Name = "storyDataGridView";
            this.storyDataGridView.Size = new System.Drawing.Size(1041, 485);
            this.storyDataGridView.TabIndex = 1;
            // 
            // dataGridViewTextBoxColumn1
            // 
            this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
            this.dataGridViewTextBoxColumn1.DataPropertyName = "Story_ID";
            this.dataGridViewTextBoxColumn1.HeaderText = "Story_ID";
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
            this.dataGridViewTextBoxColumn1.ReadOnly = true;
            this.dataGridViewTextBoxColumn1.Width = 73;
            // 
            // dataGridViewTextBoxColumn2
            // 
            this.dataGridViewTextBoxColumn2.DataPropertyName = "Story_Owner";
            this.dataGridViewTextBoxColumn2.HeaderText = "Story_Owner";
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
            // 
            // dataGridViewTextBoxColumn3
            // 
            this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
            this.dataGridViewTextBoxColumn3.DataPropertyName = "Story_Current_Sprint";
            this.dataGridViewTextBoxColumn3.HeaderText = "Story_Current_Sprint";
            this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
            this.dataGridViewTextBoxColumn3.Width = 129;
            // 
            // dataGridViewTextBoxColumn4
            // 
            this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
            this.dataGridViewTextBoxColumn4.DataPropertyName = "Story_Demo_DES";
            this.dataGridViewTextBoxColumn4.HeaderText = "Story_Demo_DES";
            this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
            this.dataGridViewTextBoxColumn4.Width = 118;
            // 
            // dataGridViewTextBoxColumn5
            // 
            this.dataGridViewTextBoxColumn5.DataPropertyName = "Story_Description";
            this.dataGridViewTextBoxColumn5.HeaderText = "Story_Description";
            this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
            // 
            // dataGridViewTextBoxColumn6
            // 
            this.dataGridViewTextBoxColumn6.DataPropertyName = "Story_Priority";
            this.dataGridViewTextBoxColumn6.HeaderText = "Story_Priority";
            this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
            // 
            // dataGridViewTextBoxColumn7
            // 
            this.dataGridViewTextBoxColumn7.DataPropertyName = "Story_Work_Status";
            this.dataGridViewTextBoxColumn7.HeaderText = "Story_Work_Status";
            this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
            // 
            // tabControl
            // 
            this.tabControl.Controls.Add(this.tabPage1);
            this.tabControl.Controls.Add(this.tabPage2);
            this.tabControl.Controls.Add(this.tabPage3);
            this.tabControl.Controls.Add(this.tabPage4);
            this.tabControl.Controls.Add(this.tabPage5);
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 49);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedIndex = 0;
            this.tabControl.Size = new System.Drawing.Size(1055, 517);
            this.tabControl.TabIndex = 2;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.storyDataGridView);
            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(1047, 491);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Stories";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.taskDataGridView);
            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(1047, 491);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Tasks";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // taskDataGridView
            // 
            this.taskDataGridView.AutoGenerateColumns = false;
            this.taskDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.taskDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn8,
            this.dataGridViewTextBoxColumn9,
            this.dataGridViewTextBoxColumn10,
            this.dataGridViewTextBoxColumn11,
            this.dataGridViewTextBoxColumn12});
            this.taskDataGridView.DataSource = this.taskBindingSource;
            this.taskDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.taskDataGridView.Location = new System.Drawing.Point(3, 3);
            this.taskDataGridView.Name = "taskDataGridView";
            this.taskDataGridView.Size = new System.Drawing.Size(1041, 485);
            this.taskDataGridView.TabIndex = 0;
            // 
            // dataGridViewTextBoxColumn8
            // 
            this.dataGridViewTextBoxColumn8.DataPropertyName = "Task_ID";
            this.dataGridViewTextBoxColumn8.HeaderText = "Task_ID";
            this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
            this.dataGridViewTextBoxColumn8.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn9
            // 
            this.dataGridViewTextBoxColumn9.DataPropertyName = "Task_Story_ID";
            this.dataGridViewTextBoxColumn9.HeaderText = "Task_Story_ID";
            this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
            // 
            // dataGridViewTextBoxColumn10
            // 
            this.dataGridViewTextBoxColumn10.DataPropertyName = "Task_Priority";
            this.dataGridViewTextBoxColumn10.HeaderText = "Task_Priority";
            this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
            // 
            // dataGridViewTextBoxColumn11
            // 
            this.dataGridViewTextBoxColumn11.DataPropertyName = "Task_Description";
            this.dataGridViewTextBoxColumn11.HeaderText = "Task_Description";
            this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
            // 
            // dataGridViewTextBoxColumn12
            // 
            this.dataGridViewTextBoxColumn12.DataPropertyName = "Task_Ovner";
            this.dataGridViewTextBoxColumn12.HeaderText = "Task_Ovner";
            this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
            // 
            // taskBindingSource
            // 
            this.taskBindingSource.DataMember = "Task";
            this.taskBindingSource.DataSource = this.database1DataSet1;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.chart1);
            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(1047, 491);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Sprint Proggress";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // chart1
            // 
            chartArea1.Area3DStyle.Enable3D = true;
            chartArea1.Area3DStyle.Inclination = 20;
            chartArea1.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
            chartArea1.Area3DStyle.PointDepth = 30;
            chartArea1.Area3DStyle.PointGapDepth = 10;
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(40, 22);
            this.chart1.Name = "chart1";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Legend = "Legend1";
            series1.Name = "Expected";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series2.ChartArea = "ChartArea1";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.Legend = "Legend1";
            series2.Name = "Real";
            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.Points.Add(dataPoint9);
            series2.Points.Add(dataPoint10);
            series2.Points.Add(dataPoint11);
            series2.Points.Add(dataPoint12);
            series2.Points.Add(dataPoint13);
            this.chart1.Series.Add(series1);
            this.chart1.Series.Add(series2);
            this.chart1.Size = new System.Drawing.Size(896, 401);
            this.chart1.TabIndex = 0;
            this.chart1.Text = "chart1";
            this.chart1.Click += new System.EventHandler(this.chart1_Click);
            // 
            // tabPage4
            // 
            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(1047, 491);
            this.tabPage4.TabIndex = 3;
            this.tabPage4.Text = "Story Proggress";
            this.tabPage4.UseVisualStyleBackColor = true;
            // 
            // tabPage5
            // 
            this.tabPage5.Controls.Add(this.dataGridView1);
            this.tabPage5.Location = new System.Drawing.Point(4, 22);
            this.tabPage5.Name = "tabPage5";
            this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage5.Size = new System.Drawing.Size(1047, 491);
            this.tabPage5.TabIndex = 4;
            this.tabPage5.Text = "Summery";
            this.tabPage5.UseVisualStyleBackColor = true;
            // 
            // dataGridView1
            // 
            this.dataGridView1.AllowUserToAddRows = false;
            this.dataGridView1.AllowUserToDeleteRows = false;
            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.ColumnProgramerId,
            this.ColumnProgramerName,
            this.ColumnExpectedWorkingHouers,
            this.ColumnActualWorkingHours,
            this.ColumnRisk});
            this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridView1.Location = new System.Drawing.Point(3, 3);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.ReadOnly = true;
            this.dataGridView1.Size = new System.Drawing.Size(1041, 485);
            this.dataGridView1.TabIndex = 0;
            // 
            // ColumnProgramerId
            // 
            this.ColumnProgramerId.HeaderText = "Column1";
            this.ColumnProgramerId.Name = "ColumnProgramerId";
            this.ColumnProgramerId.ReadOnly = true;
            this.ColumnProgramerId.Visible = false;
            // 
            // ColumnProgramerName
            // 
            this.ColumnProgramerName.HeaderText = "Name";
            this.ColumnProgramerName.Name = "ColumnProgramerName";
            this.ColumnProgramerName.ReadOnly = true;
            // 
            // ColumnExpectedWorkingHouers
            // 
            this.ColumnExpectedWorkingHouers.HeaderText = "Expected Working Houers";
            this.ColumnExpectedWorkingHouers.Name = "ColumnExpectedWorkingHouers";
            this.ColumnExpectedWorkingHouers.ReadOnly = true;
            // 
            // ColumnActualWorkingHours
            // 
            this.ColumnActualWorkingHours.HeaderText = "Actual Working Hours";
            this.ColumnActualWorkingHours.Name = "ColumnActualWorkingHours";
            this.ColumnActualWorkingHours.ReadOnly = true;
            // 
            // ColumnRisk
            // 
            this.ColumnRisk.HeaderText = "Risk";
            this.ColumnRisk.Name = "ColumnRisk";
            this.ColumnRisk.ReadOnly = true;
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.teamToolStripMenuItem,
            this.sprintToolStripMenuItem,
            this.optionsToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(1055, 24);
            this.menuStrip1.TabIndex = 3;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // teamToolStripMenuItem
            // 
            this.teamToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addMemberToolStripMenuItem,
            this.removeMamberToolStripMenuItem,
            this.teamSettingsToolStripMenuItem});
            this.teamToolStripMenuItem.Name = "teamToolStripMenuItem";
            this.teamToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
            this.teamToolStripMenuItem.Text = "Team";
            // 
            // addMemberToolStripMenuItem
            // 
            this.addMemberToolStripMenuItem.Name = "addMemberToolStripMenuItem";
            this.addMemberToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
            this.addMemberToolStripMenuItem.Text = "Add member";
            this.addMemberToolStripMenuItem.Click += new System.EventHandler(this.addMemberToolStripMenuItem_Click);
            // 
            // removeMamberToolStripMenuItem
            // 
            this.removeMamberToolStripMenuItem.Name = "removeMamberToolStripMenuItem";
            this.removeMamberToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
            this.removeMamberToolStripMenuItem.Text = "Remove mamber";
            // 
            // teamSettingsToolStripMenuItem
            // 
            this.teamSettingsToolStripMenuItem.Name = "teamSettingsToolStripMenuItem";
            this.teamSettingsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
            this.teamSettingsToolStripMenuItem.Text = "Team settings";
            this.teamSettingsToolStripMenuItem.Click += new System.EventHandler(this.teamSettingsToolStripMenuItem_Click);
            // 
            // sprintToolStripMenuItem
            // 
            this.sprintToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newSprintToolStripMenuItem,
            this.editSprintToolStripMenuItem});
            this.sprintToolStripMenuItem.Name = "sprintToolStripMenuItem";
            this.sprintToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
            this.sprintToolStripMenuItem.Text = "Sprint";
            // 
            // newSprintToolStripMenuItem
            // 
            this.newSprintToolStripMenuItem.Name = "newSprintToolStripMenuItem";
            this.newSprintToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
            this.newSprintToolStripMenuItem.Text = "New Sprint";
            this.newSprintToolStripMenuItem.Click += new System.EventHandler(this.newSprintToolStripMenuItem_Click);
            // 
            // editSprintToolStripMenuItem
            // 
            this.editSprintToolStripMenuItem.Name = "editSprintToolStripMenuItem";
            this.editSprintToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
            this.editSprintToolStripMenuItem.Text = "Edit Sprint";
            // 
            // optionsToolStripMenuItem
            // 
            this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.windowOptionsToolStripMenuItem});
            this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
            this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
            this.optionsToolStripMenuItem.Text = "Options";
            // 
            // windowOptionsToolStripMenuItem
            // 
            this.windowOptionsToolStripMenuItem.Name = "windowOptionsToolStripMenuItem";
            this.windowOptionsToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.windowOptionsToolStripMenuItem.Text = "Window options";
            // 
            // taskTableAdapter
            // 
            this.taskTableAdapter.ClearBeforeFill = true;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1055, 566);
            this.Controls.Add(this.tabControl);
            this.Controls.Add(this.storyBindingNavigator);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "Form1";
            this.Text = "2";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.database1DataSet1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.storyBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.storyBindingNavigator)).EndInit();
            this.storyBindingNavigator.ResumeLayout(false);
            this.storyBindingNavigator.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.programmerBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sprintBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.storyDataGridView)).EndInit();
            this.tabControl.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.taskDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.taskBindingSource)).EndInit();
            this.tabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.tabPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.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.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 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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(50D, 0D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(100D, 50D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(50D, 100D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 50D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(50D, 0D);
            this.timer = new System.Windows.Forms.Timer(this.components);
            this.chart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.numMeasurementNoise = new System.Windows.Forms.NumericUpDown();
            this.label3 = new System.Windows.Forms.Label();
            this.numProcessNoise = new System.Windows.Forms.NumericUpDown();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMeasurementNoise)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numProcessNoise)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // timer
            // 
            this.timer.Interval = 30;
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // chart
            // 
            this.chart.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.Name = "ChartArea1";
            this.chart.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chart.Legends.Add(legend1);
            this.chart.Location = new System.Drawing.Point(151, 12);
            this.chart.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.chart.Name = "chart";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            dataPoint5.Color = System.Drawing.Color.Cyan;
            dataPoint5.Label = "";
            dataPoint5.LabelBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
            dataPoint5.MarkerBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
            dataPoint5.MarkerColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
            dataPoint5.MarkerSize = 15;
            dataPoint5.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            this.chart.Series.Add(series1);
            this.chart.Size = new System.Drawing.Size(844, 603);
            this.chart.TabIndex = 2;
            this.chart.Text = "chart1";
            // 
            // numMeasurementNoise
            // 
            this.numMeasurementNoise.DecimalPlaces = 1;
            this.numMeasurementNoise.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.numMeasurementNoise.Location = new System.Drawing.Point(15, 357);
            this.numMeasurementNoise.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.numMeasurementNoise.Name = "numMeasurementNoise";
            this.numMeasurementNoise.Size = new System.Drawing.Size(120, 22);
            this.numMeasurementNoise.TabIndex = 10;
            this.numMeasurementNoise.Value = new decimal(new int[] {
            25,
            0,
            0,
            0});
            this.numMeasurementNoise.ValueChanged += new System.EventHandler(this.num_ValueChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(9, 336);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(136, 17);
            this.label3.TabIndex = 9;
            this.label3.Text = "Measurement noise:";
            // 
            // numProcessNoise
            // 
            this.numProcessNoise.DecimalPlaces = 1;
            this.numProcessNoise.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.numProcessNoise.Location = new System.Drawing.Point(8, 21);
            this.numProcessNoise.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.numProcessNoise.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.numProcessNoise.Name = "numProcessNoise";
            this.numProcessNoise.Size = new System.Drawing.Size(120, 22);
            this.numProcessNoise.TabIndex = 8;
            this.numProcessNoise.Value = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.numProcessNoise.ValueChanged += new System.EventHandler(this.num_ValueChanged);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(15, 32);
            this.button1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(117, 27);
            this.button1.TabIndex = 11;
            this.button1.Text = "Stop / Resume";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.stopResumeTicker_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.numProcessNoise);
            this.groupBox1.Location = new System.Drawing.Point(7, 101);
            this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.groupBox1.Size = new System.Drawing.Size(137, 50);
            this.groupBox1.TabIndex = 12;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Process noise";
            // 
            // Kalman2dDemo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1007, 626);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.numMeasurementNoise);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.chart);
            this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.Name = "Kalman2dDemo";
            this.Text = "Discrete Kalman 2D Filter Demo";
            ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMeasurementNoise)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numProcessNoise)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #54
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.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, 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.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.settingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.registration = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.InputBox = new System.Windows.Forms.GroupBox();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.fixedCost = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.fixedCostMoney = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridView2 = new System.Windows.Forms.DataGridView();
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.menuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.InputBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
            this.SuspendLayout();
            // 
            // monthCalendar1
            // 
            this.monthCalendar1.Location = new System.Drawing.Point(397, 33);
            this.monthCalendar1.Name = "monthCalendar1";
            this.monthCalendar1.TabIndex = 0;
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(16, 37);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(121, 19);
            this.textBox1.TabIndex = 1;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(14, 22);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(29, 12);
            this.label1.TabIndex = 3;
            this.label1.Text = "金額";
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.settingToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(1065, 24);
            this.menuStrip1.TabIndex = 5;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // settingToolStripMenuItem
            // 
            this.settingToolStripMenuItem.Name = "settingToolStripMenuItem";
            this.settingToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
            this.settingToolStripMenuItem.Text = "設定";
            this.settingToolStripMenuItem.Click += new System.EventHandler(this.settingToolStripMenuItem_Click);
            // 
            // registration
            // 
            this.registration.Location = new System.Drawing.Point(84, 128);
            this.registration.Name = "registration";
            this.registration.Size = new System.Drawing.Size(75, 23);
            this.registration.TabIndex = 7;
            this.registration.Text = "登録";
            this.registration.UseVisualStyleBackColor = true;
            this.registration.Click += new System.EventHandler(this.registration_Click);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(14, 71);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(39, 12);
            this.label2.TabIndex = 8;
            this.label2.Text = "カテゴリ";
            // 
            // listBox1
            // 
            this.listBox1.FormattingEnabled = true;
            this.listBox1.ItemHeight = 12;
            this.listBox1.Location = new System.Drawing.Point(623, 33);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(220, 256);
            this.listBox1.TabIndex = 9;
            // 
            // comboBox1
            // 
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Location = new System.Drawing.Point(16, 86);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(121, 20);
            this.comboBox1.TabIndex = 10;
            // 
            // chart1
            // 
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(222, 202);
            this.chart1.Name = "chart1";
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(395, 366);
            this.chart1.TabIndex = 14;
            this.chart1.Text = "chart1";
            title1.Name = "カテゴリ別金額";
            this.chart1.Titles.Add(title1);
            // 
            // InputBox
            // 
            this.InputBox.Controls.Add(this.textBox1);
            this.InputBox.Controls.Add(this.label1);
            this.InputBox.Controls.Add(this.registration);
            this.InputBox.Controls.Add(this.comboBox1);
            this.InputBox.Controls.Add(this.label2);
            this.InputBox.Location = new System.Drawing.Point(222, 33);
            this.InputBox.Name = "InputBox";
            this.InputBox.Size = new System.Drawing.Size(165, 157);
            this.InputBox.TabIndex = 15;
            this.InputBox.TabStop = false;
            this.InputBox.Text = "入力欄";
            // 
            // dataGridView1
            // 
            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.fixedCost,
            this.fixedCostMoney});
            this.dataGridView1.Location = new System.Drawing.Point(12, 33);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.RowHeadersVisible = false;
            this.dataGridView1.RowTemplate.Height = 21;
            this.dataGridView1.Size = new System.Drawing.Size(204, 476);
            this.dataGridView1.TabIndex = 16;
            // 
            // fixedCost
            // 
            this.fixedCost.HeaderText = "固定支出名";
            this.fixedCost.Name = "fixedCost";
            this.fixedCost.Width = 90;
            // 
            // fixedCostMoney
            // 
            this.fixedCostMoney.HeaderText = "固定支出金額";
            this.fixedCostMoney.Name = "fixedCostMoney";
            this.fixedCostMoney.Width = 110;
            // 
            // dataGridView2
            // 
            this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn1,
            this.dataGridViewTextBoxColumn2});
            this.dataGridView2.Location = new System.Drawing.Point(12, 515);
            this.dataGridView2.Name = "dataGridView2";
            this.dataGridView2.RowHeadersVisible = false;
            this.dataGridView2.RowTemplate.Height = 21;
            this.dataGridView2.Size = new System.Drawing.Size(204, 53);
            this.dataGridView2.TabIndex = 17;
            // 
            // dataGridViewTextBoxColumn1
            // 
            this.dataGridViewTextBoxColumn1.HeaderText = "固定支出名";
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
            this.dataGridViewTextBoxColumn1.Width = 90;
            // 
            // dataGridViewTextBoxColumn2
            // 
            this.dataGridViewTextBoxColumn2.HeaderText = "固定支出金額合計";
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
            this.dataGridViewTextBoxColumn2.Width = 110;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1065, 575);
            this.Controls.Add(this.dataGridView2);
            this.Controls.Add(this.dataGridView1);
            this.Controls.Add(this.InputBox);
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.listBox1);
            this.Controls.Add(this.menuStrip1);
            this.Controls.Add(this.monthCalendar1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "MainForm";
            this.Text = "Form1";
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.InputBox.ResumeLayout(false);
            this.InputBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #55
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.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(0, 6);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 9);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 5);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 7.5);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 5.6999998092651367);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 3.2000000476837158);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 8.5);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 7.5);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 6.5);
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.panel1 = new System.Windows.Forms.Panel();
            this.buttonCopy = new System.Windows.Forms.Button();
            this.checkBoxRotate = new System.Windows.Forms.CheckBox();
            this.buttonSave = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.checkClustered = new System.Windows.Forms.CheckBox();
            this.Inclination = new System.Windows.Forms.NumericUpDown();
            this.label2 = new System.Windows.Forms.Label();
            this.RightAngleAxis = new System.Windows.Forms.CheckBox();
            this.checkBoxShowMargin = new System.Windows.Forms.CheckBox();
            this.radioButtonColumn = new System.Windows.Forms.RadioButton();
            this.radioButtonBar = new System.Windows.Forms.RadioButton();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.Rotation = new System.Windows.Forms.NumericUpDown();
            this.panel3 = new System.Windows.Forms.Panel();
            this.buttonPrint = new System.Windows.Forms.Button();
            this.comboBoxResolution = new System.Windows.Forms.ComboBox();
            this.label7 = new System.Windows.Forms.Label();
            this.comboBoxMargin = new System.Windows.Forms.ComboBox();
            this.label8 = new System.Windows.Forms.Label();
            this.comboBoxOrientation = new System.Windows.Forms.ComboBox();
            this.label9 = new System.Windows.Forms.Label();
            this.buttonPreview = new System.Windows.Forms.Button();
            this.buttonResetZoom = new System.Windows.Forms.Button();
            this.checkBoxZoomUI = new System.Windows.Forms.CheckBox();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Inclination)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Rotation)).BeginInit();
            this.panel3.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.buttonCopy);
            this.panel1.Controls.Add(this.checkBoxRotate);
            this.panel1.Controls.Add(this.buttonSave);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.checkClustered);
            this.panel1.Controls.Add(this.Inclination);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.RightAngleAxis);
            this.panel1.Controls.Add(this.checkBoxShowMargin);
            this.panel1.Controls.Add(this.radioButtonColumn);
            this.panel1.Controls.Add(this.radioButtonBar);
            this.panel1.Location = new System.Drawing.Point(414, 55);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(292, 288);
            this.panel1.TabIndex = 3;
            // 
            // buttonCopy
            // 
            this.buttonCopy.Location = new System.Drawing.Point(156, 250);
            this.buttonCopy.Name = "buttonCopy";
            this.buttonCopy.Size = new System.Drawing.Size(75, 23);
            this.buttonCopy.TabIndex = 14;
            this.buttonCopy.Text = "Copy Chart";
            this.buttonCopy.UseVisualStyleBackColor = true;
            this.buttonCopy.Click += new System.EventHandler(this.buttonCopy_Click);
            // 
            // checkBoxRotate
            // 
            this.checkBoxRotate.AutoSize = true;
            this.checkBoxRotate.Location = new System.Drawing.Point(171, 173);
            this.checkBoxRotate.Name = "checkBoxRotate";
            this.checkBoxRotate.Size = new System.Drawing.Size(15, 14);
            this.checkBoxRotate.TabIndex = 12;
            this.checkBoxRotate.UseVisualStyleBackColor = true;
            // 
            // buttonSave
            // 
            this.buttonSave.Location = new System.Drawing.Point(30, 250);
            this.buttonSave.Name = "buttonSave";
            this.buttonSave.Size = new System.Drawing.Size(75, 23);
            this.buttonSave.TabIndex = 13;
            this.buttonSave.Text = "Save Chart";
            this.buttonSave.UseVisualStyleBackColor = true;
            this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(98, 174);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(67, 13);
            this.label3.TabIndex = 11;
            this.label3.Text = "Rotate Chart";
            this.label3.Click += new System.EventHandler(this.label3_Click);
            // 
            // checkClustered
            // 
            this.checkClustered.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.checkClustered.Checked = true;
            this.checkClustered.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkClustered.Location = new System.Drawing.Point(38, 137);
            this.checkClustered.Name = "checkClustered";
            this.checkClustered.Size = new System.Drawing.Size(144, 24);
            this.checkClustered.TabIndex = 4;
            this.checkClustered.Text = "&Clustered:";
            this.checkClustered.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.checkClustered.CheckedChanged += new System.EventHandler(this.checkClustered_CheckedChanged);
            // 
            // Inclination
            // 
            this.Inclination.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.Inclination.Location = new System.Drawing.Point(171, 200);
            this.Inclination.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.Inclination.Minimum = new decimal(new int[] {
            1000,
            0,
            0,
            -2147483648});
            this.Inclination.Name = "Inclination";
            this.Inclination.Size = new System.Drawing.Size(56, 20);
            this.Inclination.TabIndex = 6;
            this.Inclination.Value = new decimal(new int[] {
            15,
            0,
            0,
            0});
            this.Inclination.ValueChanged += new System.EventHandler(this.Inclination_ValueChanged);
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(61, 200);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(104, 23);
            this.label2.TabIndex = 7;
            this.label2.Text = "Rotate &Y:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // RightAngleAxis
            // 
            this.RightAngleAxis.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.RightAngleAxis.Location = new System.Drawing.Point(37, 106);
            this.RightAngleAxis.Name = "RightAngleAxis";
            this.RightAngleAxis.Size = new System.Drawing.Size(144, 24);
            this.RightAngleAxis.TabIndex = 3;
            this.RightAngleAxis.Text = "&Right Angle Axes:";
            this.RightAngleAxis.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.RightAngleAxis.CheckedChanged += new System.EventHandler(this.RightAngleAxis_CheckedChanged);
            // 
            // checkBoxShowMargin
            // 
            this.checkBoxShowMargin.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.checkBoxShowMargin.Checked = true;
            this.checkBoxShowMargin.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxShowMargin.Location = new System.Drawing.Point(5, 72);
            this.checkBoxShowMargin.Name = "checkBoxShowMargin";
            this.checkBoxShowMargin.Size = new System.Drawing.Size(176, 24);
            this.checkBoxShowMargin.TabIndex = 2;
            this.checkBoxShowMargin.Text = "Show X Axis &Margin:";
            this.checkBoxShowMargin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.checkBoxShowMargin.CheckedChanged += new System.EventHandler(this.checkBoxShowMargin_CheckedChanged);
            // 
            // radioButtonColumn
            // 
            this.radioButtonColumn.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.radioButtonColumn.Checked = true;
            this.radioButtonColumn.Location = new System.Drawing.Point(30, 42);
            this.radioButtonColumn.Name = "radioButtonColumn";
            this.radioButtonColumn.Size = new System.Drawing.Size(152, 24);
            this.radioButtonColumn.TabIndex = 1;
            this.radioButtonColumn.TabStop = true;
            this.radioButtonColumn.Text = "3D C&olumn Chart:";
            this.radioButtonColumn.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // radioButtonBar
            // 
            this.radioButtonBar.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.radioButtonBar.Location = new System.Drawing.Point(45, 12);
            this.radioButtonBar.Name = "radioButtonBar";
            this.radioButtonBar.Size = new System.Drawing.Size(136, 24);
            this.radioButtonBar.TabIndex = 0;
            this.radioButtonBar.Text = "            3D Bar Chart:";
            this.radioButtonBar.CheckedChanged += new System.EventHandler(this.radioButtonBar_CheckedChanged);
            // 
            // chart1
            // 
            this.chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chart1.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((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.Enable3D = true;
            chartArea1.Area3DStyle.Inclination = 15;
            chartArea1.Area3DStyle.IsClustered = true;
            chartArea1.Area3DStyle.IsRightAngleAxes = false;
            chartArea1.Area3DStyle.Perspective = 10;
            chartArea1.Area3DStyle.WallWidth = 0;
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.ScrollBar.BackColor = System.Drawing.Color.White;
            chartArea1.AxisX.ScrollBar.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            chartArea1.AxisX.ScrollBar.LineColor = System.Drawing.Color.Black;
            chartArea1.AxisX.ScrollBar.Size = 12;
            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.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.ScrollBar.BackColor = System.Drawing.Color.White;
            chartArea1.AxisY.ScrollBar.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            chartArea1.AxisY.ScrollBar.LineColor = System.Drawing.Color.Black;
            chartArea1.AxisY.ScrollBar.Size = 12;
            chartArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
            chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea1.BackSecondaryColor = System.Drawing.Color.Transparent;
            chartArea1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.CursorX.IsUserEnabled = true;
            chartArea1.CursorX.IsUserSelectionEnabled = true;
            chartArea1.CursorX.SelectionColor = System.Drawing.Color.Black;
            chartArea1.CursorY.IsUserEnabled = true;
            chartArea1.CursorY.IsUserSelectionEnabled = true;
            chartArea1.CursorY.SelectionColor = System.Drawing.Color.DarkGray;
            chartArea1.Name = "Default";
            chartArea1.ShadowColor = System.Drawing.Color.Transparent;
            this.chart1.ChartAreas.Add(chartArea1);
            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.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(-4, 47);
            this.chart1.Name = "chart1";
            series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            series1.ChartArea = "Default";
            series1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))));
            series1.Legend = "Default";
            series1.Name = "Default";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.Points.Add(dataPoint5);
            series1.Points.Add(dataPoint6);
            series1.Points.Add(dataPoint7);
            series1.Points.Add(dataPoint8);
            series1.Points.Add(dataPoint9);
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(417, 288);
            this.chart1.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 = "Title1";
            title1.ShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            title1.ShadowOffset = 3;
            title1.Text = "3D Bar and Column charts.";
            this.chart1.Titles.Add(title1);
            this.chart1.Click += new System.EventHandler(this.chart1_Click);
            // 
            // timer1
            // 
            this.timer1.Enabled = true;
            this.timer1.Interval = 90;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // Rotation
            // 
            this.Rotation.Location = new System.Drawing.Point(0, 0);
            this.Rotation.Name = "Rotation";
            this.Rotation.Size = new System.Drawing.Size(120, 20);
            this.Rotation.TabIndex = 0;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.buttonPrint);
            this.panel3.Controls.Add(this.comboBoxResolution);
            this.panel3.Controls.Add(this.label7);
            this.panel3.Controls.Add(this.comboBoxMargin);
            this.panel3.Controls.Add(this.label8);
            this.panel3.Controls.Add(this.comboBoxOrientation);
            this.panel3.Controls.Add(this.label9);
            this.panel3.Controls.Add(this.buttonPreview);
            this.panel3.Location = new System.Drawing.Point(-4, 327);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(417, 181);
            this.panel3.TabIndex = 16;
            // 
            // buttonPrint
            // 
            this.buttonPrint.BackColor = System.Drawing.SystemColors.Control;
            this.buttonPrint.Location = new System.Drawing.Point(215, 128);
            this.buttonPrint.Name = "buttonPrint";
            this.buttonPrint.Size = new System.Drawing.Size(120, 23);
            this.buttonPrint.TabIndex = 7;
            this.buttonPrint.Text = "&Print";
            this.buttonPrint.UseVisualStyleBackColor = false;
            this.buttonPrint.Click += new System.EventHandler(this.buttonPrint_Click);
            // 
            // comboBoxResolution
            // 
            this.comboBoxResolution.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxResolution.Items.AddRange(new object[] {
            "Low",
            "Medium",
            "High"});
            this.comboBoxResolution.Location = new System.Drawing.Point(168, 72);
            this.comboBoxResolution.Name = "comboBoxResolution";
            this.comboBoxResolution.Size = new System.Drawing.Size(120, 21);
            this.comboBoxResolution.TabIndex = 5;
            // 
            // label7
            // 
            this.label7.Location = new System.Drawing.Point(10, 72);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(152, 23);
            this.label7.TabIndex = 4;
            this.label7.Text = "&Resolution:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // comboBoxMargin
            // 
            this.comboBoxMargin.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMargin.Items.AddRange(new object[] {
            "0.5",
            "1",
            "1.5",
            "2"});
            this.comboBoxMargin.Location = new System.Drawing.Point(168, 40);
            this.comboBoxMargin.Name = "comboBoxMargin";
            this.comboBoxMargin.Size = new System.Drawing.Size(120, 21);
            this.comboBoxMargin.TabIndex = 3;
            // 
            // label8
            // 
            this.label8.Location = new System.Drawing.Point(8, 40);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(152, 23);
            this.label8.TabIndex = 2;
            this.label8.Text = "All Side &Margin (inch):";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // comboBoxOrientation
            // 
            this.comboBoxOrientation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxOrientation.Items.AddRange(new object[] {
            "Portrait",
            "Landscape"});
            this.comboBoxOrientation.Location = new System.Drawing.Point(168, 8);
            this.comboBoxOrientation.Name = "comboBoxOrientation";
            this.comboBoxOrientation.Size = new System.Drawing.Size(120, 21);
            this.comboBoxOrientation.TabIndex = 1;
            // 
            // label9
            // 
            this.label9.Location = new System.Drawing.Point(8, 8);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(152, 23);
            this.label9.TabIndex = 0;
            this.label9.Text = "Page &Orientation:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // buttonPreview
            // 
            this.buttonPreview.BackColor = System.Drawing.SystemColors.Control;
            this.buttonPreview.Location = new System.Drawing.Point(73, 128);
            this.buttonPreview.Name = "buttonPreview";
            this.buttonPreview.Size = new System.Drawing.Size(120, 23);
            this.buttonPreview.TabIndex = 6;
            this.buttonPreview.Text = "Print Previe&w";
            this.buttonPreview.UseVisualStyleBackColor = false;
            this.buttonPreview.Click += new System.EventHandler(this.buttonPreview_Click);
            // 
            // buttonResetZoom
            // 
            this.buttonResetZoom.BackColor = System.Drawing.SystemColors.Control;
            this.buttonResetZoom.Location = new System.Drawing.Point(501, 415);
            this.buttonResetZoom.Name = "buttonResetZoom";
            this.buttonResetZoom.Size = new System.Drawing.Size(112, 23);
            this.buttonResetZoom.TabIndex = 9;
            this.buttonResetZoom.Text = "&Reset Zoom";
            this.buttonResetZoom.UseVisualStyleBackColor = false;
            this.buttonResetZoom.Click += new System.EventHandler(this.buttonResetZoom_Click);
            // 
            // checkBoxZoomUI
            // 
            this.checkBoxZoomUI.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.checkBoxZoomUI.Location = new System.Drawing.Point(428, 374);
            this.checkBoxZoomUI.Name = "checkBoxZoomUI";
            this.checkBoxZoomUI.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.checkBoxZoomUI.Size = new System.Drawing.Size(168, 16);
            this.checkBoxZoomUI.TabIndex = 17;
            this.checkBoxZoomUI.Text = "&Enable Zooming UI:";
            this.checkBoxZoomUI.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.checkBoxZoomUI.CheckedChanged += new System.EventHandler(this.checkBoxZoomUI_CheckedChanged);
            // 
            // BarChart
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(704, 483);
            this.Controls.Add(this.checkBoxZoomUI);
            this.Controls.Add(this.buttonResetZoom);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.panel1);
            this.Name = "BarChart";
            this.Text = "BarChart";
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Inclination)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Rotation)).EndInit();
            this.panel3.ResumeLayout(false);
            this.ResumeLayout(false);

        }
예제 #56
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 chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend6 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 9D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 19D);
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.sStripBalanLab = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.displBalanceStatStripLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
            this.sStripFiltLab = new System.Windows.Forms.ToolStripStatusLabel();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.listViewItems = new System.Windows.Forms.ListView();
            this.Type = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.Date = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.Category = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.Value = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.Description = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.displayedBalanceLabel = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.txtDescription = new System.Windows.Forms.TextBox();
            this.labelDescription = new System.Windows.Forms.Label();
            this.menuStrip = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.filterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.graphOfBalanceByCategory = new System.Windows.Forms.ToolStripMenuItem();
            this.graphOfBalanceByTime = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.tStripBtnNew = new System.Windows.Forms.ToolStripButton();
            this.tStripBtnEdit = new System.Windows.Forms.ToolStripButton();
            this.tStripBtnRemove = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbtnFilter = new System.Windows.Forms.ToolStripButton();
            this.tsbtnViewAll = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.tstripTextBoxFilter = new System.Windows.Forms.ToolStripTextBox();
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.statusStrip.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.menuStrip.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.BottomToolStripPanel
            // 
            this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStrip);
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.Controls.Add(this.splitContainer1);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(724, 329);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(724, 402);
            this.toolStripContainer1.TabIndex = 0;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStripContainer1.TopToolStripPanel
            // 
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStrip);
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
            // 
            // statusStrip
            // 
            this.statusStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.sStripBalanLab,
            this.toolStripStatusLabel1,
            this.displBalanceStatStripLabel,
            this.toolStripStatusLabel3,
            this.sStripFiltLab});
            this.statusStrip.Location = new System.Drawing.Point(0, 0);
            this.statusStrip.Name = "statusStrip";
            this.statusStrip.Size = new System.Drawing.Size(724, 24);
            this.statusStrip.TabIndex = 0;
            // 
            // sStripBalanLab
            // 
            this.sStripBalanLab.Name = "sStripBalanLab";
            this.sStripBalanLab.Size = new System.Drawing.Size(210, 19);
            this.sStripBalanLab.Text = "Account balance: 0,00 - 0,00 = 0,00 Eur";
            // 
            // toolStripStatusLabel1
            // 
            this.toolStripStatusLabel1.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(14, 19);
            this.toolStripStatusLabel1.Text = " ";
            // 
            // displBalanceStatStripLabel
            // 
            this.displBalanceStatStripLabel.Name = "displBalanceStatStripLabel";
            this.displBalanceStatStripLabel.Size = new System.Drawing.Size(216, 19);
            this.displBalanceStatStripLabel.Text = "Displayed balance: 0,00 - 0,00 = 0,00 Eur";
            // 
            // toolStripStatusLabel3
            // 
            this.toolStripStatusLabel3.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
            this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
            this.toolStripStatusLabel3.Size = new System.Drawing.Size(14, 19);
            this.toolStripStatusLabel3.Text = " ";
            // 
            // sStripFiltLab
            // 
            this.sStripFiltLab.Name = "sStripFiltLab";
            this.sStripFiltLab.Size = new System.Drawing.Size(80, 19);
            this.sStripFiltLab.Text = "Filter: inactive";
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.listViewItems);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.displayedBalanceLabel);
            this.splitContainer1.Panel2.Controls.Add(this.panel1);
            this.splitContainer1.Panel2.Controls.Add(this.txtDescription);
            this.splitContainer1.Panel2.Controls.Add(this.labelDescription);
            this.splitContainer1.Size = new System.Drawing.Size(724, 329);
            this.splitContainer1.SplitterDistance = 533;
            this.splitContainer1.TabIndex = 0;
            // 
            // listViewItems
            // 
            this.listViewItems.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.listViewItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.Type,
            this.Date,
            this.Category,
            this.Value,
            this.Description});
            this.listViewItems.FullRowSelect = true;
            this.listViewItems.Location = new System.Drawing.Point(12, 19);
            this.listViewItems.MultiSelect = false;
            this.listViewItems.Name = "listViewItems";
            this.listViewItems.Size = new System.Drawing.Size(518, 307);
            this.listViewItems.TabIndex = 0;
            this.listViewItems.UseCompatibleStateImageBehavior = false;
            this.listViewItems.View = System.Windows.Forms.View.Details;
            this.listViewItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewItems_ColumnClick);
            this.listViewItems.SelectedIndexChanged += new System.EventHandler(this.listViewItems_SelectedIndexChanged);
            // 
            // Type
            // 
            this.Type.Text = "Type";
            this.Type.Width = 53;
            // 
            // Date
            // 
            this.Date.Text = "Date";
            this.Date.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.Date.Width = 111;
            // 
            // Category
            // 
            this.Category.Text = "Category";
            this.Category.Width = 116;
            // 
            // Value
            // 
            this.Value.Text = "Value [Eur]";
            this.Value.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.Value.Width = 92;
            // 
            // Description
            // 
            this.Description.Text = "Description";
            this.Description.Width = 142;
            // 
            // displayedBalanceLabel
            // 
            this.displayedBalanceLabel.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.displayedBalanceLabel.AutoSize = true;
            this.displayedBalanceLabel.Location = new System.Drawing.Point(6, 127);
            this.displayedBalanceLabel.Name = "displayedBalanceLabel";
            this.displayedBalanceLabel.Size = new System.Drawing.Size(138, 13);
            this.displayedBalanceLabel.TabIndex = 3;
            this.displayedBalanceLabel.Text = "Balance of displayed items: ";
            // 
            // panel1
            // 
            this.panel1.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.panel1.Controls.Add(this.chart1);
            this.panel1.Location = new System.Drawing.Point(6, 143);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(169, 183);
            this.panel1.TabIndex = 2;
            // 
            // 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)));
            this.chart1.BackColor = System.Drawing.SystemColors.ButtonFace;
            chartArea6.Area3DStyle.Inclination = 50;
            chartArea6.BackColor = System.Drawing.SystemColors.ButtonFace;
            chartArea6.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea6);
            legend6.Alignment = System.Drawing.StringAlignment.Center;
            legend6.BackColor = System.Drawing.SystemColors.ButtonFace;
            legend6.DockedToChartArea = "ChartArea1";
            legend6.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            legend6.IsDockedInsideChartArea = false;
            legend6.ItemColumnSpacing = 0;
            legend6.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
            legend6.MaximumAutoSize = 40F;
            legend6.Name = "Legend1";
            this.chart1.Legends.Add(legend6);
            this.chart1.Location = new System.Drawing.Point(3, 3);
            this.chart1.Name = "chart1";
            series6.ChartArea = "ChartArea1";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series6.Legend = "Legend1";
            series6.Name = "Balance";
            dataPoint11.Color = System.Drawing.Color.Green;
            dataPoint11.IsValueShownAsLabel = false;
            dataPoint11.LegendText = "Incomes";
            dataPoint12.Color = System.Drawing.Color.DarkRed;
            dataPoint12.LegendText = "Outgoes";
            series6.Points.Add(dataPoint11);
            series6.Points.Add(dataPoint12);
            this.chart1.Series.Add(series6);
            this.chart1.Size = new System.Drawing.Size(163, 177);
            this.chart1.TabIndex = 2;
            this.chart1.Visible = false;
            // 
            // txtDescription
            // 
            this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDescription.Location = new System.Drawing.Point(6, 19);
            this.txtDescription.Multiline = true;
            this.txtDescription.Name = "txtDescription";
            this.txtDescription.ReadOnly = true;
            this.txtDescription.Size = new System.Drawing.Size(169, 89);
            this.txtDescription.TabIndex = 1;
            // 
            // labelDescription
            // 
            this.labelDescription.AutoSize = true;
            this.labelDescription.Location = new System.Drawing.Point(3, 3);
            this.labelDescription.Name = "labelDescription";
            this.labelDescription.Size = new System.Drawing.Size(60, 13);
            this.labelDescription.TabIndex = 0;
            this.labelDescription.Text = "Description";
            // 
            // menuStrip
            // 
            this.menuStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.toolStripMenuItem2,
            this.viewToolStripMenuItem});
            this.menuStrip.Location = new System.Drawing.Point(0, 0);
            this.menuStrip.Name = "menuStrip";
            this.menuStrip.Size = new System.Drawing.Size(724, 24);
            this.menuStrip.TabIndex = 0;
            this.menuStrip.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openToolStripMenuItem,
            this.toolStripSeparator,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.toolStripSeparator2,
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "&File";
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripMenuItem.Image")));
            this.newToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
            this.newToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.newToolStripMenuItem.Text = "&New";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem.Image")));
            this.openToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.openToolStripMenuItem.Text = "&Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // toolStripSeparator
            // 
            this.toolStripSeparator.Name = "toolStripSeparator";
            this.toolStripSeparator.Size = new System.Drawing.Size(149, 6);
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
            this.saveToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
            this.saveToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.saveToolStripMenuItem.Text = "&Save";
            this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
            // 
            // saveAsToolStripMenuItem
            // 
            this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
            this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.saveAsToolStripMenuItem.Text = "Save &As";
            this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6);
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.exitToolStripMenuItem.Text = "E&xit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem1,
            this.editToolStripMenuItem,
            this.removeToolStripMenuItem});
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(48, 20);
            this.toolStripMenuItem2.Text = "Items";
            // 
            // newToolStripMenuItem1
            // 
            this.newToolStripMenuItem1.Name = "newToolStripMenuItem1";
            this.newToolStripMenuItem1.Size = new System.Drawing.Size(117, 22);
            this.newToolStripMenuItem1.Text = "New";
            this.newToolStripMenuItem1.Click += new System.EventHandler(this.newToolStripMenuItem1_Click);
            // 
            // editToolStripMenuItem
            // 
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.editToolStripMenuItem.Text = "Edit";
            this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
            // 
            // removeToolStripMenuItem
            // 
            this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
            this.removeToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.removeToolStripMenuItem.Text = "Remove";
            this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.filterToolStripMenuItem,
            this.viewAllToolStripMenuItem,
            this.toolStripSeparator5,
            this.graphOfBalanceByCategory,
            this.graphOfBalanceByTime});
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
            this.viewToolStripMenuItem.Text = "View";
            // 
            // filterToolStripMenuItem
            // 
            this.filterToolStripMenuItem.Name = "filterToolStripMenuItem";
            this.filterToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3;
            this.filterToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
            this.filterToolStripMenuItem.Text = "Filter";
            this.filterToolStripMenuItem.Click += new System.EventHandler(this.filterToolStripMenuItem_Click);
            // 
            // viewAllToolStripMenuItem
            // 
            this.viewAllToolStripMenuItem.Enabled = false;
            this.viewAllToolStripMenuItem.Name = "viewAllToolStripMenuItem";
            this.viewAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F3)));
            this.viewAllToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
            this.viewAllToolStripMenuItem.Text = "View all";
            this.viewAllToolStripMenuItem.Click += new System.EventHandler(this.viewAllToolStripMenuItem_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(228, 6);
            // 
            // graphOfBalanceByCategory
            // 
            this.graphOfBalanceByCategory.Enabled = false;
            this.graphOfBalanceByCategory.Name = "graphOfBalanceByCategory";
            this.graphOfBalanceByCategory.Size = new System.Drawing.Size(231, 22);
            this.graphOfBalanceByCategory.Text = "Graph of balance by Category";
            this.graphOfBalanceByCategory.Click += new System.EventHandler(this.graphOfBalanceByCategoryToolStripMenuItem_Click);
            // 
            // graphOfBalanceByTime
            // 
            this.graphOfBalanceByTime.Enabled = false;
            this.graphOfBalanceByTime.Name = "graphOfBalanceByTime";
            this.graphOfBalanceByTime.Size = new System.Drawing.Size(231, 22);
            this.graphOfBalanceByTime.Text = "Graph of balance by Time";
            this.graphOfBalanceByTime.Click += new System.EventHandler(this.graphOfBalanceByTime_Click);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripButton,
            this.openToolStripButton,
            this.saveToolStripButton,
            this.toolStripSeparator1,
            this.tStripBtnNew,
            this.tStripBtnEdit,
            this.tStripBtnRemove,
            this.toolStripSeparator3,
            this.tsbtnFilter,
            this.tsbtnViewAll,
            this.toolStripSeparator4,
            this.toolStripLabel1,
            this.tstripTextBoxFilter});
            this.toolStrip1.Location = new System.Drawing.Point(3, 24);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(477, 25);
            this.toolStrip1.TabIndex = 1;
            // 
            // newToolStripButton
            // 
            this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
            this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.newToolStripButton.Name = "newToolStripButton";
            this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.newToolStripButton.Text = "&New";
            this.newToolStripButton.Click += new System.EventHandler(this.newToolStripButton_Click);
            // 
            // openToolStripButton
            // 
            this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
            this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.openToolStripButton.Name = "openToolStripButton";
            this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.openToolStripButton.Text = "&Open";
            this.openToolStripButton.Click += new System.EventHandler(this.openToolStripButton_Click);
            // 
            // saveToolStripButton
            // 
            this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
            this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.saveToolStripButton.Name = "saveToolStripButton";
            this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.saveToolStripButton.Text = "&Save";
            this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // tStripBtnNew
            // 
            this.tStripBtnNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.tStripBtnNew.Image = ((System.Drawing.Image)(resources.GetObject("tStripBtnNew.Image")));
            this.tStripBtnNew.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tStripBtnNew.Name = "tStripBtnNew";
            this.tStripBtnNew.Size = new System.Drawing.Size(35, 22);
            this.tStripBtnNew.Text = "&New";
            this.tStripBtnNew.Click += new System.EventHandler(this.tStripBtnNew_Click);
            // 
            // tStripBtnEdit
            // 
            this.tStripBtnEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.tStripBtnEdit.Enabled = false;
            this.tStripBtnEdit.Image = ((System.Drawing.Image)(resources.GetObject("tStripBtnEdit.Image")));
            this.tStripBtnEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tStripBtnEdit.Name = "tStripBtnEdit";
            this.tStripBtnEdit.Size = new System.Drawing.Size(31, 22);
            this.tStripBtnEdit.Text = "&Edit";
            this.tStripBtnEdit.Click += new System.EventHandler(this.tStripBtnEdit_Click);
            // 
            // tStripBtnRemove
            // 
            this.tStripBtnRemove.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.tStripBtnRemove.Enabled = false;
            this.tStripBtnRemove.Image = ((System.Drawing.Image)(resources.GetObject("tStripBtnRemove.Image")));
            this.tStripBtnRemove.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tStripBtnRemove.Name = "tStripBtnRemove";
            this.tStripBtnRemove.Size = new System.Drawing.Size(54, 22);
            this.tStripBtnRemove.Text = "&Remove";
            this.tStripBtnRemove.Click += new System.EventHandler(this.tStripBtnRemove_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            // 
            // tsbtnFilter
            // 
            this.tsbtnFilter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.tsbtnFilter.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnFilter.Image")));
            this.tsbtnFilter.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbtnFilter.Name = "tsbtnFilter";
            this.tsbtnFilter.Size = new System.Drawing.Size(37, 22);
            this.tsbtnFilter.Text = "Filter";
            this.tsbtnFilter.Click += new System.EventHandler(this.tsbtnFilter_Click);
            // 
            // tsbtnViewAll
            // 
            this.tsbtnViewAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.tsbtnViewAll.Enabled = false;
            this.tsbtnViewAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnViewAll.Image")));
            this.tsbtnViewAll.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbtnViewAll.Name = "tsbtnViewAll";
            this.tsbtnViewAll.Size = new System.Drawing.Size(51, 22);
            this.tsbtnViewAll.Text = "View all";
            this.tsbtnViewAll.Click += new System.EventHandler(this.tsbtnViewAll_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(68, 22);
            this.toolStripLabel1.Text = "Quick filter:";
            // 
            // tstripTextBoxFilter
            // 
            this.tstripTextBoxFilter.Name = "tstripTextBoxFilter";
            this.tstripTextBoxFilter.Size = new System.Drawing.Size(100, 25);
            this.tstripTextBoxFilter.TextChanged += new System.EventHandler(this.toolStripTextBox1_TextChanged);
            // 
            // saveFileDialog
            // 
            this.saveFileDialog.DefaultExt = "xml";
            this.saveFileDialog.FileName = "user.xml";
            this.saveFileDialog.Filter = "(*.xml)|*.xml";
            // 
            // openFileDialog
            // 
            this.openFileDialog.DefaultExt = "xml";
            this.openFileDialog.Filter = "(*.xml)|*.xml";
            // 
            // timer1
            // 
            this.timer1.Interval = 350;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // MainWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(724, 402);
            this.Controls.Add(this.toolStripContainer1);
            this.MinimumSize = new System.Drawing.Size(740, 440);
            this.Name = "MainWindow";
            this.Text = "Finance Manager *";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
            this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
            this.toolStripContainer1.ContentPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.PerformLayout();
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.statusStrip.ResumeLayout(false);
            this.statusStrip.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.Panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.menuStrip.ResumeLayout(false);
            this.menuStrip.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);

        }
예제 #57
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.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.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, 2274223D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint21 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 1719385D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint22 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 5262966D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint23 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 40537500D);
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint24 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 3000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint25 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint26 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 2000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint27 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 21000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint28 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 50000000D);
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint29 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 43200000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint30 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 1000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint31 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 2000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint32 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 21000000D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint33 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 50000000D);
            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.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.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.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.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.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(13, 12);
            this.chart7.Name = "chart7";
            series4.ChartArea = "ChartArea1";
            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";
            series4.Points.Add(dataPoint19);
            series4.Points.Add(dataPoint20);
            series4.Points.Add(dataPoint21);
            series4.Points.Add(dataPoint22);
            series4.Points.Add(dataPoint23);
            series5.ChartArea = "ChartArea1";
            series5.Color = System.Drawing.Color.Red;
            series5.LabelForeColor = System.Drawing.Color.White;
            series5.Legend = "Legend1";
            series5.LegendText = "당대리점";
            series5.Name = "Series2";
            dataPoint24.MarkerColor = System.Drawing.Color.White;
            series5.Points.Add(dataPoint24);
            series5.Points.Add(dataPoint25);
            series5.Points.Add(dataPoint26);
            series5.Points.Add(dataPoint27);
            series5.Points.Add(dataPoint28);
            series6.ChartArea = "ChartArea1";
            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(dataPoint29);
            series6.Points.Add(dataPoint30);
            series6.Points.Add(dataPoint31);
            series6.Points.Add(dataPoint32);
            series6.Points.Add(dataPoint33);
            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);
            // 
            // FormPopupRetail
            // 
            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 = "FormPopupRetail";
            this.Text = "KIWI - 대리점 월단위 손익점검(소매)";
            ((System.ComponentModel.ISupportInitialize)(this.chart8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart7)).EndInit();
            this.ResumeLayout(false);

        }
예제 #58
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.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 3D);
            this.btn_zoek = new System.Windows.Forms.Button();
            this.txbx_zoek = new System.Windows.Forms.TextBox();
            this.lbl_name = new System.Windows.Forms.Label();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.chrt_ = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.dgv_toets = new System.Windows.Forms.DataGridView();
            this.lbl_behaald = new System.Windows.Forms.Label();
            this.lbl_nietbehaald = new System.Windows.Forms.Label();
            this.lbl_perc = new System.Windows.Forms.Label();
            this.cb_Zoek = new System.Windows.Forms.ComboBox();
            this.lbl_gem = new System.Windows.Forms.Label();
            this.lbl_type = new System.Windows.Forms.Label();
            this.lbl_err = new System.Windows.Forms.Label();
            this.cb_datum = new System.Windows.Forms.ComboBox();
            this.cb_jaar = new System.Windows.Forms.ComboBox();
            ((System.ComponentModel.ISupportInitialize)(this.chrt_)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_toets)).BeginInit();
            this.SuspendLayout();
            // 
            // btn_zoek
            // 
            this.btn_zoek.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btn_zoek.Location = new System.Drawing.Point(671, 3);
            this.btn_zoek.Name = "btn_zoek";
            this.btn_zoek.Size = new System.Drawing.Size(75, 46);
            this.btn_zoek.TabIndex = 0;
            this.btn_zoek.Text = "Zoek!";
            this.btn_zoek.UseVisualStyleBackColor = true;
            this.btn_zoek.Click += new System.EventHandler(this.Zk_Btn_Click);
            // 
            // txbx_zoek
            // 
            this.txbx_zoek.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txbx_zoek.Location = new System.Drawing.Point(247, 9);
            this.txbx_zoek.Name = "txbx_zoek";
            this.txbx_zoek.Size = new System.Drawing.Size(418, 35);
            this.txbx_zoek.TabIndex = 1;
            this.txbx_zoek.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txbx_zoek_KeyPress);
            // 
            // lbl_name
            // 
            this.lbl_name.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lbl_name.AutoSize = true;
            this.lbl_name.Location = new System.Drawing.Point(362, 81);
            this.lbl_name.Name = "lbl_name";
            this.lbl_name.Size = new System.Drawing.Size(77, 29);
            this.lbl_name.TabIndex = 2;
            this.lbl_name.Text = "Naam";
            // 
            // progressBar1
            // 
            this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.progressBar1.Location = new System.Drawing.Point(55, 153);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(691, 29);
            this.progressBar1.TabIndex = 3;
            // 
            // chrt_
            // 
            this.chrt_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            chartArea1.Name = "ChartArea1";
            this.chrt_.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chrt_.Legends.Add(legend1);
            this.chrt_.Location = new System.Drawing.Point(55, 235);
            this.chrt_.Name = "chrt_";
            series1.ChartArea = "ChartArea1";
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            this.chrt_.Series.Add(series1);
            this.chrt_.Size = new System.Drawing.Size(691, 233);
            this.chrt_.TabIndex = 4;
            this.chrt_.Text = "chart1";
            // 
            // dgv_toets
            // 
            this.dgv_toets.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.dgv_toets.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgv_toets.Location = new System.Drawing.Point(55, 474);
            this.dgv_toets.Name = "dgv_toets";
            this.dgv_toets.RowTemplate.Height = 28;
            this.dgv_toets.Size = new System.Drawing.Size(691, 103);
            this.dgv_toets.TabIndex = 5;
            this.dgv_toets.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_toets_CellDoubleClick);
            // 
            // lbl_behaald
            // 
            this.lbl_behaald.AutoSize = true;
            this.lbl_behaald.Location = new System.Drawing.Point(50, 121);
            this.lbl_behaald.Name = "lbl_behaald";
            this.lbl_behaald.Size = new System.Drawing.Size(208, 29);
            this.lbl_behaald.TabIndex = 6;
            this.lbl_behaald.Text = "BEHAALDERROR";
            // 
            // lbl_nietbehaald
            // 
            this.lbl_nietbehaald.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lbl_nietbehaald.AutoSize = true;
            this.lbl_nietbehaald.Location = new System.Drawing.Point(299, 121);
            this.lbl_nietbehaald.Name = "lbl_nietbehaald";
            this.lbl_nietbehaald.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lbl_nietbehaald.Size = new System.Drawing.Size(226, 29);
            this.lbl_nietbehaald.TabIndex = 7;
            this.lbl_nietbehaald.Text = "NBEHAALDERROR";
            // 
            // lbl_perc
            // 
            this.lbl_perc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lbl_perc.AutoSize = true;
            this.lbl_perc.Location = new System.Drawing.Point(581, 121);
            this.lbl_perc.Name = "lbl_perc";
            this.lbl_perc.Size = new System.Drawing.Size(165, 29);
            this.lbl_perc.TabIndex = 8;
            this.lbl_perc.Text = "PERCERROR";
            // 
            // cb_Zoek
            // 
            this.cb_Zoek.FormattingEnabled = true;
            this.cb_Zoek.Items.AddRange(new object[] {
            "ToetsID"});
            this.cb_Zoek.Location = new System.Drawing.Point(55, 9);
            this.cb_Zoek.Name = "cb_Zoek";
            this.cb_Zoek.Size = new System.Drawing.Size(186, 37);
            this.cb_Zoek.TabIndex = 9;
            this.cb_Zoek.Text = "ToetsID";
            this.cb_Zoek.Visible = false;
            // 
            // lbl_gem
            // 
            this.lbl_gem.AutoSize = true;
            this.lbl_gem.Location = new System.Drawing.Point(55, 189);
            this.lbl_gem.Name = "lbl_gem";
            this.lbl_gem.Size = new System.Drawing.Size(172, 29);
            this.lbl_gem.TabIndex = 10;
            this.lbl_gem.Text = "LABELERROR";
            // 
            // lbl_type
            // 
            this.lbl_type.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lbl_type.AutoSize = true;
            this.lbl_type.Location = new System.Drawing.Point(247, 185);
            this.lbl_type.Name = "lbl_type";
            this.lbl_type.Size = new System.Drawing.Size(147, 29);
            this.lbl_type.TabIndex = 11;
            this.lbl_type.Text = "TYPERROR";
            // 
            // lbl_err
            // 
            this.lbl_err.AutoSize = true;
            this.lbl_err.ForeColor = System.Drawing.Color.OrangeRed;
            this.lbl_err.Location = new System.Drawing.Point(247, 51);
            this.lbl_err.Name = "lbl_err";
            this.lbl_err.Size = new System.Drawing.Size(99, 29);
            this.lbl_err.TabIndex = 12;
            this.lbl_err.Text = "ERROR";
            // 
            // cb_datum
            // 
            this.cb_datum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cb_datum.FormattingEnabled = true;
            this.cb_datum.Location = new System.Drawing.Point(425, 189);
            this.cb_datum.Name = "cb_datum";
            this.cb_datum.Size = new System.Drawing.Size(155, 37);
            this.cb_datum.TabIndex = 13;
            this.cb_datum.SelectionChangeCommitted += new System.EventHandler(this.cb_datum_SelectionChangeCommitted);
            // 
            // cb_jaar
            // 
            this.cb_jaar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cb_jaar.FormattingEnabled = true;
            this.cb_jaar.Location = new System.Drawing.Point(586, 188);
            this.cb_jaar.Name = "cb_jaar";
            this.cb_jaar.Size = new System.Drawing.Size(160, 37);
            this.cb_jaar.TabIndex = 14;
            this.cb_jaar.SelectionChangeCommitted += new System.EventHandler(this.cb_jaar_SelectionChangeCommitted);
            // 
            // MainWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(14F, 29F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.cb_jaar);
            this.Controls.Add(this.cb_datum);
            this.Controls.Add(this.lbl_err);
            this.Controls.Add(this.lbl_type);
            this.Controls.Add(this.lbl_gem);
            this.Controls.Add(this.cb_Zoek);
            this.Controls.Add(this.lbl_perc);
            this.Controls.Add(this.lbl_nietbehaald);
            this.Controls.Add(this.lbl_behaald);
            this.Controls.Add(this.dgv_toets);
            this.Controls.Add(this.chrt_);
            this.Controls.Add(this.progressBar1);
            this.Controls.Add(this.lbl_name);
            this.Controls.Add(this.txbx_zoek);
            this.Controls.Add(this.btn_zoek);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
            this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
            this.Name = "MainWindow";
            this.Size = new System.Drawing.Size(800, 600);
            ((System.ComponentModel.ISupportInitialize)(this.chrt_)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_toets)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
예제 #59
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.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(40177D, "23,0,0");
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(40542D, "80,0,0");
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(40907D, "65,0,0");
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(41273D, "87,0,0");
            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 chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            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(1D, 80D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 95D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3D, 60D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4D, 45D);
            System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5D, 15D);
            System.Windows.Forms.DataVisualization.Charting.Title title4 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.Title title5 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.Title title6 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.panel1 = new System.Windows.Forms.Panel();
            this.button16 = new System.Windows.Forms.Button();
            this.button15 = new System.Windows.Forms.Button();
            this.button14 = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.comboBox3 = new System.Windows.Forms.ComboBox();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.label3 = new System.Windows.Forms.Label();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.chart2 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.button17 = new System.Windows.Forms.Button();
            this.panel1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.button17);
            this.panel1.Controls.Add(this.button16);
            this.panel1.Controls.Add(this.button15);
            this.panel1.Controls.Add(this.button14);
            this.panel1.Controls.Add(this.button1);
            this.panel1.Controls.Add(this.button2);
            this.panel1.Location = new System.Drawing.Point(3, 2);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(778, 29);
            this.panel1.TabIndex = 2;
            // 
            // button16
            // 
            this.button16.Location = new System.Drawing.Point(541, 3);
            this.button16.Name = "button16";
            this.button16.Size = new System.Drawing.Size(107, 23);
            this.button16.TabIndex = 7;
            this.button16.Text = "Test Results";
            this.button16.UseCompatibleTextRendering = true;
            this.button16.UseVisualStyleBackColor = true;
            this.button16.Click += new System.EventHandler(this.button16_Click);
            // 
            // button15
            // 
            this.button15.Location = new System.Drawing.Point(315, 3);
            this.button15.Name = "button15";
            this.button15.Size = new System.Drawing.Size(107, 23);
            this.button15.TabIndex = 6;
            this.button15.Text = "Make Test";
            this.button15.UseCompatibleTextRendering = true;
            this.button15.UseVisualStyleBackColor = true;
            this.button15.Click += new System.EventHandler(this.button15_Click);
            // 
            // button14
            // 
            this.button14.Location = new System.Drawing.Point(428, 3);
            this.button14.Name = "button14";
            this.button14.Size = new System.Drawing.Size(107, 23);
            this.button14.TabIndex = 5;
            this.button14.Text = "Set Test";
            this.button14.UseCompatibleTextRendering = true;
            this.button14.UseVisualStyleBackColor = true;
            this.button14.Click += new System.EventHandler(this.button14_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(13, 3);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(107, 23);
            this.button1.TabIndex = 3;
            this.button1.Text = "Logout";
            this.button1.UseCompatibleTextRendering = true;
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(654, 3);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(107, 23);
            this.button2.TabIndex = 4;
            this.button2.Text = "Play Game";
            this.button2.UseCompatibleTextRendering = true;
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Location = new System.Drawing.Point(3, 37);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(778, 522);
            this.tabControl1.TabIndex = 19;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.comboBox3);
            this.tabPage1.Controls.Add(this.chart1);
            this.tabPage1.Controls.Add(this.label2);
            this.tabPage1.Controls.Add(this.label1);
            this.tabPage1.Controls.Add(this.comboBox1);
            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(770, 496);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Pupil Tracking";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // comboBox3
            // 
            this.comboBox3.FormattingEnabled = true;
            this.comboBox3.Items.AddRange(new object[] {
            "Erin"});
            this.comboBox3.Location = new System.Drawing.Point(59, 6);
            this.comboBox3.Name = "comboBox3";
            this.comboBox3.Size = new System.Drawing.Size(227, 21);
            this.comboBox3.TabIndex = 16;
            // 
            // chart1
            // 
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            this.chart1.Location = new System.Drawing.Point(9, 34);
            this.chart1.Name = "chart1";
            this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
            series1.ChartArea = "ChartArea1";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
            series1.IsXValueIndexed = true;
            series1.LegendText = "Erin";
            series1.Name = "Series1";
            series1.Points.Add(dataPoint1);
            series1.Points.Add(dataPoint2);
            series1.Points.Add(dataPoint3);
            series1.Points.Add(dataPoint4);
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Date;
            series1.YValuesPerPoint = 3;
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(748, 459);
            this.chart1.TabIndex = 3;
            this.chart1.Text = "chart1";
            title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F);
            title1.Name = "Title1";
            title1.Text = "French Test Level 4";
            title2.Alignment = System.Drawing.ContentAlignment.BottomCenter;
            title2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title2.Name = "X Axis";
            title2.Text = "Date Tested";
            title3.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Left;
            title3.Name = "Y Axis";
            title3.Text = "Percentage Mark";
            this.chart1.Titles.Add(title1);
            this.chart1.Titles.Add(title2);
            this.chart1.Titles.Add(title3);
            this.chart1.Click += new System.EventHandler(this.chart1_Click);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(424, 11);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(26, 17);
            this.label2.TabIndex = 18;
            this.label2.Text = "Test";
            this.label2.UseCompatibleTextRendering = true;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(9, 11);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(29, 17);
            this.label1.TabIndex = 5;
            this.label1.Text = "Pupil";
            this.label1.UseCompatibleTextRendering = true;
            // 
            // comboBox1
            // 
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "French Test Level 4"});
            this.comboBox1.Location = new System.Drawing.Point(530, 7);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(227, 21);
            this.comboBox1.TabIndex = 17;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.listBox1);
            this.tabPage2.Controls.Add(this.label3);
            this.tabPage2.Controls.Add(this.comboBox2);
            this.tabPage2.Controls.Add(this.chart2);
            this.tabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            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(770, 496);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Test Analysis";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // listBox1
            // 
            this.listBox1.FormattingEnabled = true;
            this.listBox1.Items.AddRange(new object[] {
            "1 - Which of these puts out fires?"});
            this.listBox1.Location = new System.Drawing.Point(6, 33);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(292, 459);
            this.listBox1.TabIndex = 21;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(9, 10);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(26, 17);
            this.label3.TabIndex = 20;
            this.label3.Text = "Test";
            this.label3.UseCompatibleTextRendering = true;
            // 
            // comboBox2
            // 
            this.comboBox2.FormattingEnabled = true;
            this.comboBox2.Items.AddRange(new object[] {
            "French Test Level 4"});
            this.comboBox2.Location = new System.Drawing.Point(71, 6);
            this.comboBox2.Name = "comboBox2";
            this.comboBox2.Size = new System.Drawing.Size(227, 21);
            this.comboBox2.TabIndex = 19;
            // 
            // chart2
            // 
            chartArea2.Name = "ChartArea1";
            this.chart2.ChartAreas.Add(chartArea2);
            this.chart2.Location = new System.Drawing.Point(311, 33);
            this.chart2.Name = "chart2";
            this.chart2.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
            series2.ChartArea = "ChartArea1";
            series2.Name = "Series1";
            series2.Points.Add(dataPoint5);
            series2.Points.Add(dataPoint6);
            series2.Points.Add(dataPoint7);
            series2.Points.Add(dataPoint8);
            series2.Points.Add(dataPoint9);
            series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            series2.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            this.chart2.Series.Add(series2);
            this.chart2.Size = new System.Drawing.Size(446, 457);
            this.chart2.TabIndex = 0;
            this.chart2.TabStop = false;
            this.chart2.Text = "chart2";
            title4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F);
            title4.Name = "Title1";
            title4.Text = "French Test Level 4";
            title5.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
            title5.Name = "X Axis";
            title5.Text = "Question Number";
            title6.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Left;
            title6.Name = "Y Axis";
            title6.Text = "Percentage Correct";
            this.chart2.Titles.Add(title4);
            this.chart2.Titles.Add(title5);
            this.chart2.Titles.Add(title6);
            // 
            // button17
            // 
            this.button17.Location = new System.Drawing.Point(202, 3);
            this.button17.Name = "button17";
            this.button17.Size = new System.Drawing.Size(107, 23);
            this.button17.TabIndex = 20;
            this.button17.Text = "Configuration";
            this.button17.UseCompatibleTextRendering = true;
            this.button17.UseVisualStyleBackColor = true;
            this.button17.Click += new System.EventHandler(this.button17_Click);
            // 
            // frm_testResults
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.panel1);
            this.Name = "frm_testResults";
            this.Text = "Language & Roles";
            this.panel1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
            this.ResumeLayout(false);

        }
예제 #60
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.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();
            this.chart8 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            ((System.ComponentModel.ISupportInitialize)(this.chart8)).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.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(12, 12);
            this.chart8.Name = "chart8";
            series1.ChartArea = "ChartArea1";
            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.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.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(1360, 808);
            this.chart8.TabIndex = 6;
            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);
            // 
            // FormPopupChartBar2
            // 
            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.MaximizeBox = false;
            this.Name = "FormPopupChartBar2";
            this.Text = "KIWI";
            ((System.ComponentModel.ISupportInitialize)(this.chart8)).EndInit();
            this.ResumeLayout(false);

        }