public void InitializeComponent_DistributionResults(string[] engineResults)
        {
            int n = Convert.ToInt32(engineResults[2]); //Number of points
            int j = 3;

            this.doubleX = new double[n];
            this.doubleY = new double[n];
            for (int i = 0; i < n; i++)
            {
                doubleX[i] = Math.Round(Double.Parse(engineResults[j++]), 2);
                doubleY[i] = Double.Parse(engineResults[j++]);
            }


            this.MC_histogram.LB_Mean.Text   = engineResults[j]; j++;
            this.MC_histogram.LB_Median.Text = engineResults[j]; j++;
            this.MC_histogram.LB_Mode.Text   = engineResults[j];
            j++;
            this.MC_histogram.LB_Var.Text = engineResults[j];
            this.MC_histogram.CH_histogram.Series["Series1"].Points.Clear();
            this.MC_histogram.CH_histogram.Series["Series1"].Points.DataBindXY(doubleX, doubleY);
            for (int i = 0; i < n; i++)
            {
                System.Windows.Forms.DataVisualization.Charting.StripLine stripLine = new System.Windows.Forms.DataVisualization.Charting.StripLine();
                stripLine.BackColor      = System.Drawing.Color.Gray;
                stripLine.StripWidth     = 0.001D;
                stripLine.IntervalOffset = doubleX[i];
                this.MC_histogram.CH_histogram.ChartAreas[0].AxisX.StripLines.Add(stripLine);
            }

            this.x = ElicitationHelper.unDoubleXVector(doubleX);
        }
Beispiel #2
0
        private void RegressionDataGridView_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
            {
                System.Windows.Forms.DataVisualization.Charting.Chart     TabPageChart = (System.Windows.Forms.DataVisualization.Charting.Chart) this.tabControl1.TabPages[this.tabControl1.SelectedIndex].Controls.Find("chart1", true)[0];
                System.Windows.Forms.DataVisualization.Charting.StripLine sl1          = new System.Windows.Forms.DataVisualization.Charting.StripLine();
                System.Windows.Forms.DataGridView RegressionDataGridView = (System.Windows.Forms.DataGridView) this.tabControl1.TabPages[this.tabControl1.SelectedIndex].Controls.Find("RegressionDataGridView", true)[0];


                sl1.BackColor  = System.Drawing.Color.Red;
                sl1.StripWidth = 0.0005;
                int No = (int)RegressionDataGridView.Rows[e.RowIndex].Cells[0].Value;
                for (int i = 0; i < RegressionIndex.Count; i++)
                {
                    if (RegressionIndex[i] == No)
                    {
                        sl1.IntervalOffset = GroupDataBox[this.tabControl1.SelectedIndex - 1].VisionPixel[i];
                        break;
                    }
                }

                TabPageChart.ChartAreas[0].AxisX.StripLines.Clear();
                TabPageChart.ChartAreas[0].AxisX.StripLines.Add(sl1);
            }
        }
 private void change_peak_acceptance()
 {
     Parallel.ForEach(Sweet.lollipop.et_peaks, p =>
     {
         p.Accepted = p.peak_relation_group_count >= Sweet.lollipop.min_peak_count_et;
         Parallel.ForEach(p.grouped_relations, r => r.Accepted = p.Accepted);
     });
     Parallel.ForEach(Sweet.lollipop.ed_relations.Values.SelectMany(v => v).Where(r => r.peak != null), pRelation => pRelation.Accepted = pRelation.peak.Accepted);
     dgv_ET_Relations.Refresh();
     dgv_ET_Peak_List.Refresh();
     ct_ET_Histogram.ChartAreas[0].AxisY.StripLines.Clear();
     System.Windows.Forms.DataVisualization.Charting.StripLine lowerCountBound_stripline = new System.Windows.Forms.DataVisualization.Charting.StripLine()
     {
         BorderColor = Color.Red, IntervalOffset = Sweet.lollipop.min_peak_count_et
     };
     ct_ET_Histogram.ChartAreas[0].AxisY.StripLines.Add(lowerCountBound_stripline);
     update_figures_of_merit();
     (this.MDIParent).proteoformFamilies.ClearListsTablesFigures(true);
 }
Beispiel #4
0
        private void Begining_Config()
        {
            MaximizeBox = false;                                                                                                   //desabilitar botão de maximizar
            this.Text   = "Graph";                                                                                                 //Nome no titulo do form
            this.Icon   = Properties.Resources.Blackvariant_Button_Ui_Requests_9_Wire;                                             //Icone

            cpuChart.Size = new Size(this.Size.Width - 40, this.Size.Height - 60);                                                 //O "-40" e "-60" representam as bordas entre as paredes do Form2
            cpuChart.Legends.Clear();
            cpuChart.Series["Series1"].XValueType          = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32; //Apenas valores inteiros na legenda do eixo X
            cpuChart.ChartAreas[0].AxisY.LabelStyle.Format = "0.00E00";                                                            //Valores representados em notação exponencial
            cpuChart.ChartAreas[0].AxisY.Title             = "Voltage";
            cpuChart.ChartAreas[0].AxisX.Title             = "Temperature";

            System.Windows.Forms.DataVisualization.Charting.StripLine stripline = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            stripline.Interval       = 0;
            stripline.IntervalOffset = 0;
            stripline.StripWidth     = 1E-07; //1E-07 é um tamanho muito inferior à variação de tensão que ocorrerá e ainda deixa visivel a linha
            stripline.BackColor      = Color.Blue;
            cpuChart.ChartAreas[0].AxisY.StripLines.Add(stripline);
        }
        /// <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.StripLine stripLine4 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine5 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine6 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.Legend 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.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.lvSite = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.panel2 = new System.Windows.Forms.Panel();
            this.lbtRemovesite = new System.Windows.Forms.LinkLabel();
            this.lbtAddsite = new System.Windows.Forms.LinkLabel();
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.lvTest = new LQT.GUI.LQTListView();
            this.splitContainer3 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.lvNrSite = new System.Windows.Forms.ListView();
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.panel4 = new System.Windows.Forms.Panel();
            this.panel8 = new System.Windows.Forms.Panel();
            this.lbtAddnrsite = new System.Windows.Forms.LinkLabel();
            this.lbtRemoveNrsite = new System.Windows.Forms.LinkLabel();
            this.splitter3 = new System.Windows.Forms.Splitter();
            this.panel3 = new System.Windows.Forms.Panel();
            this.label4 = new System.Windows.Forms.Label();
            this.panel6 = new System.Windows.Forms.Panel();
            this.lbtAddmselect = new System.Windows.Forms.LinkLabel();
            this.lbtImport = new System.Windows.Forms.LinkLabel();
            this.lbtRemovetest = new System.Windows.Forms.LinkLabel();
            this.lbtAddtest = new System.Windows.Forms.LinkLabel();
            this.lbtAddduration = new System.Windows.Forms.LinkLabel();
            this.panel5 = new System.Windows.Forms.Panel();
            this.txtPcount = new System.Windows.Forms.TextBox();
            this.txtSitename = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.panel7 = new System.Windows.Forms.Panel();
            this.txtTotalpcount = new System.Windows.Forms.TextBox();
            this.txttotalsite = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.columnHeader11 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.lblMedian = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.lblDeviation = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.lblMean = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.splitContainer3.Panel2.SuspendLayout();
            this.splitContainer3.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.panel4.SuspendLayout();
            this.panel8.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel6.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.lvSite);
            this.splitContainer1.Panel1.Controls.Add(this.splitter1);
            this.splitContainer1.Panel1.Controls.Add(this.panel2);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
            this.splitContainer1.Size = new System.Drawing.Size(925, 538);
            this.splitContainer1.SplitterDistance = 214;
            this.splitContainer1.TabIndex = 0;
            // 
            // lvSite
            // 
            this.lvSite.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1});
            this.lvSite.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvSite.FullRowSelect = true;
            this.lvSite.GridLines = true;
            this.lvSite.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lvSite.HideSelection = false;
            this.lvSite.Location = new System.Drawing.Point(0, 27);
            this.lvSite.MultiSelect = false;
            this.lvSite.Name = "lvSite";
            this.lvSite.Size = new System.Drawing.Size(214, 511);
            this.lvSite.TabIndex = 6;
            this.lvSite.UseCompatibleStateImageBehavior = false;
            this.lvSite.View = System.Windows.Forms.View.Details;
            this.lvSite.SelectedIndexChanged += new System.EventHandler(this.lvSite_SelectedIndexChanged);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "List of Reported Sites";
            this.columnHeader1.Width = 200;
            // 
            // splitter1
            // 
            this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitter1.Location = new System.Drawing.Point(0, 24);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(214, 3);
            this.splitter1.TabIndex = 2;
            this.splitter1.TabStop = false;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.lbtRemovesite);
            this.panel2.Controls.Add(this.lbtAddsite);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(214, 24);
            this.panel2.TabIndex = 1;
            // 
            // lbtRemovesite
            // 
            this.lbtRemovesite.AutoSize = true;
            this.lbtRemovesite.Enabled = false;
            this.lbtRemovesite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemovesite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemovesite.Location = new System.Drawing.Point(125, 8);
            this.lbtRemovesite.Name = "lbtRemovesite";
            this.lbtRemovesite.Size = new System.Drawing.Size(79, 13);
            this.lbtRemovesite.TabIndex = 1;
            this.lbtRemovesite.TabStop = true;
            this.lbtRemovesite.Text = "Remove Site";
            this.lbtRemovesite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemovesite_LinkClicked);
            // 
            // lbtAddsite
            // 
            this.lbtAddsite.AutoSize = true;
            this.lbtAddsite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddsite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddsite.Location = new System.Drawing.Point(58, 8);
            this.lbtAddsite.Name = "lbtAddsite";
            this.lbtAddsite.Size = new System.Drawing.Size(69, 13);
            this.lbtAddsite.TabIndex = 0;
            this.lbtAddsite.TabStop = true;
            this.lbtAddsite.Text = "Select Site";
            this.lbtAddsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddsite_LinkClicked);
            // 
            // splitContainer2
            // 
            this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer2.IsSplitterFixed = true;
            this.splitContainer2.Location = new System.Drawing.Point(0, 0);
            this.splitContainer2.Name = "splitContainer2";
            this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer2.Panel1
            // 
            this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel1);
            this.splitContainer2.Panel1.Controls.Add(this.splitter3);
            this.splitContainer2.Panel1.Controls.Add(this.panel3);
            // 
            // splitContainer2.Panel2
            // 
            this.splitContainer2.Panel2.Controls.Add(this.panel5);
            this.splitContainer2.Panel2.Controls.Add(this.panel7);
            this.splitContainer2.Size = new System.Drawing.Size(707, 538);
            this.splitContainer2.SplitterDistance = 477;
            this.splitContainer2.TabIndex = 10;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 2;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
            this.tableLayoutPanel1.Controls.Add(this.lvTest, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.splitContainer3, 1, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 28);
            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(707, 449);
            this.tableLayoutPanel1.TabIndex = 12;
            // 
            // lvTest
            // 
            this.lvTest.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvTest.FullRowSelect = true;
            this.lvTest.GridLines = true;
            this.lvTest.Location = new System.Drawing.Point(3, 3);
            this.lvTest.Name = "lvTest";
            this.lvTest.Size = new System.Drawing.Size(418, 443);
            this.lvTest.TabIndex = 7;
            this.lvTest.UseCompatibleStateImageBehavior = false;
            this.lvTest.View = System.Windows.Forms.View.Details;
            this.lvTest.SelectedIndexChanged += new System.EventHandler(this.lvTest_SelectedIndexChanged);
            // 
            // splitContainer3
            // 
            this.splitContainer3.BackColor = System.Drawing.Color.White;
            this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer3.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer3.IsSplitterFixed = true;
            this.splitContainer3.Location = new System.Drawing.Point(427, 3);
            this.splitContainer3.Name = "splitContainer3";
            this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer3.Panel2
            // 
            this.splitContainer3.Panel2.Controls.Add(this.tableLayoutPanel2);
            this.splitContainer3.Size = new System.Drawing.Size(277, 443);
            this.splitContainer3.SplitterDistance = 257;
            this.splitContainer3.TabIndex = 8;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.tableLayoutPanel2.ColumnCount = 1;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Controls.Add(this.lvNrSite, 0, 1);
            this.tableLayoutPanel2.Controls.Add(this.panel4, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 2;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel2.Size = new System.Drawing.Size(277, 182);
            this.tableLayoutPanel2.TabIndex = 2;
            // 
            // lvNrSite
            // 
            this.lvNrSite.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2});
            this.lvNrSite.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvNrSite.FullRowSelect = true;
            this.lvNrSite.GridLines = true;
            this.lvNrSite.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lvNrSite.HideSelection = false;
            this.lvNrSite.Location = new System.Drawing.Point(0, 28);
            this.lvNrSite.Margin = new System.Windows.Forms.Padding(0);
            this.lvNrSite.MultiSelect = false;
            this.lvNrSite.Name = "lvNrSite";
            this.lvNrSite.Size = new System.Drawing.Size(277, 275);
            this.lvNrSite.TabIndex = 6;
            this.lvNrSite.UseCompatibleStateImageBehavior = false;
            this.lvNrSite.View = System.Windows.Forms.View.Details;
            this.lvNrSite.SelectedIndexChanged += new System.EventHandler(this.lvNrSite_SelectedIndexChanged);
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "None-Reported Site";
            this.columnHeader2.Width = 210;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.panel8);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(3, 3);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(271, 22);
            this.panel4.TabIndex = 1;
            // 
            // panel8
            // 
            this.panel8.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.panel8.Controls.Add(this.lbtAddnrsite);
            this.panel8.Controls.Add(this.lbtRemoveNrsite);
            this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel8.Location = new System.Drawing.Point(0, 0);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(271, 22);
            this.panel8.TabIndex = 3;
            // 
            // lbtAddnrsite
            // 
            this.lbtAddnrsite.AutoSize = true;
            this.lbtAddnrsite.Enabled = false;
            this.lbtAddnrsite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddnrsite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddnrsite.Location = new System.Drawing.Point(111, 5);
            this.lbtAddnrsite.Name = "lbtAddnrsite";
            this.lbtAddnrsite.Size = new System.Drawing.Size(69, 13);
            this.lbtAddnrsite.TabIndex = 0;
            this.lbtAddnrsite.TabStop = true;
            this.lbtAddnrsite.Text = "Select Site";
            this.lbtAddnrsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddnrsite_LinkClicked);
            // 
            // lbtRemoveNrsite
            // 
            this.lbtRemoveNrsite.AutoSize = true;
            this.lbtRemoveNrsite.Enabled = false;
            this.lbtRemoveNrsite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemoveNrsite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemoveNrsite.Location = new System.Drawing.Point(186, 5);
            this.lbtRemoveNrsite.Name = "lbtRemoveNrsite";
            this.lbtRemoveNrsite.Size = new System.Drawing.Size(79, 13);
            this.lbtRemoveNrsite.TabIndex = 1;
            this.lbtRemoveNrsite.TabStop = true;
            this.lbtRemoveNrsite.Text = "Remove Site";
            this.lbtRemoveNrsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemoveNrsite_LinkClicked);
            // 
            // splitter3
            // 
            this.splitter3.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitter3.Location = new System.Drawing.Point(0, 25);
            this.splitter3.Name = "splitter3";
            this.splitter3.Size = new System.Drawing.Size(707, 3);
            this.splitter3.TabIndex = 11;
            this.splitter3.TabStop = false;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.label4);
            this.panel3.Controls.Add(this.panel6);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(707, 25);
            this.panel3.TabIndex = 10;
            // 
            // 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.Location = new System.Drawing.Point(3, 6);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(151, 13);
            this.label4.TabIndex = 1;
            this.label4.Text = "Historical Testing Volume";
            // 
            // panel6
            // 
            this.panel6.Controls.Add(this.lbtAddmselect);
            this.panel6.Controls.Add(this.lbtImport);
            this.panel6.Controls.Add(this.lbtRemovetest);
            this.panel6.Controls.Add(this.lbtAddtest);
            this.panel6.Controls.Add(this.lbtAddduration);
            this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel6.Location = new System.Drawing.Point(180, 0);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(527, 25);
            this.panel6.TabIndex = 4;
            // 
            // lbtAddmselect
            // 
            this.lbtAddmselect.AutoSize = true;
            this.lbtAddmselect.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddmselect.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddmselect.Location = new System.Drawing.Point(157, 6);
            this.lbtAddmselect.Name = "lbtAddmselect";
            this.lbtAddmselect.Size = new System.Drawing.Size(115, 13);
            this.lbtAddmselect.TabIndex = 2;
            this.lbtAddmselect.TabStop = true;
            this.lbtAddmselect.Text = "Add Test and Sites";
            this.lbtAddmselect.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddmselect_LinkClicked);
            // 
            // lbtImport
            // 
            this.lbtImport.AutoSize = true;
            this.lbtImport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtImport.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtImport.Location = new System.Drawing.Point(22, 6);
            this.lbtImport.Name = "lbtImport";
            this.lbtImport.Size = new System.Drawing.Size(133, 13);
            this.lbtImport.TabIndex = 5;
            this.lbtImport.TabStop = true;
            this.lbtImport.Text = "Import Testing Volume";
            this.lbtImport.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtImport_LinkClicked);
            // 
            // lbtRemovetest
            // 
            this.lbtRemovetest.AutoSize = true;
            this.lbtRemovetest.Enabled = false;
            this.lbtRemovetest.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemovetest.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemovetest.Location = new System.Drawing.Point(425, 6);
            this.lbtRemovetest.Name = "lbtRemovetest";
            this.lbtRemovetest.Size = new System.Drawing.Size(98, 13);
            this.lbtRemovetest.TabIndex = 0;
            this.lbtRemovetest.TabStop = true;
            this.lbtRemovetest.Text = "Remove Test V.";
            this.lbtRemovetest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemovetest_LinkClicked);
            // 
            // lbtAddtest
            // 
            this.lbtAddtest.AutoSize = true;
            this.lbtAddtest.Enabled = false;
            this.lbtAddtest.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddtest.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddtest.Location = new System.Drawing.Point(274, 6);
            this.lbtAddtest.Name = "lbtAddtest";
            this.lbtAddtest.Size = new System.Drawing.Size(76, 13);
            this.lbtAddtest.TabIndex = 0;
            this.lbtAddtest.TabStop = true;
            this.lbtAddtest.Text = "Add By Test";
            this.lbtAddtest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddtest_LinkClicked);
            // 
            // lbtAddduration
            // 
            this.lbtAddduration.AutoSize = true;
            this.lbtAddduration.Enabled = false;
            this.lbtAddduration.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddduration.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddduration.Location = new System.Drawing.Point(350, 6);
            this.lbtAddduration.Name = "lbtAddduration";
            this.lbtAddduration.Size = new System.Drawing.Size(74, 13);
            this.lbtAddduration.TabIndex = 2;
            this.lbtAddduration.TabStop = true;
            this.lbtAddduration.Text = "Add Test V.";
            this.lbtAddduration.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddduration_LinkClicked);
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.txtPcount);
            this.panel5.Controls.Add(this.txtSitename);
            this.panel5.Controls.Add(this.label2);
            this.panel5.Controls.Add(this.label6);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel5.Location = new System.Drawing.Point(0, 0);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(363, 57);
            this.panel5.TabIndex = 7;
            // 
            // txtPcount
            // 
            this.txtPcount.BackColor = System.Drawing.SystemColors.Info;
            this.txtPcount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPcount.Enabled = false;
            this.txtPcount.Location = new System.Drawing.Point(110, 30);
            this.txtPcount.Name = "txtPcount";
            this.txtPcount.ReadOnly = true;
            this.txtPcount.Size = new System.Drawing.Size(100, 20);
            this.txtPcount.TabIndex = 4;
            // 
            // txtSitename
            // 
            this.txtSitename.BackColor = System.Drawing.SystemColors.Info;
            this.txtSitename.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSitename.Enabled = false;
            this.txtSitename.Location = new System.Drawing.Point(110, 7);
            this.txtSitename.Name = "txtSitename";
            this.txtSitename.ReadOnly = true;
            this.txtSitename.Size = new System.Drawing.Size(230, 20);
            this.txtSitename.TabIndex = 3;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(5, 13);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(68, 14);
            this.label2.TabIndex = 0;
            this.label2.Text = "Active Site:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(5, 36);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(70, 14);
            this.label6.TabIndex = 2;
            this.label6.Text = "Test Count:";
            // 
            // panel7
            // 
            this.panel7.Controls.Add(this.txtTotalpcount);
            this.panel7.Controls.Add(this.txttotalsite);
            this.panel7.Controls.Add(this.label9);
            this.panel7.Controls.Add(this.label8);
            this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel7.Location = new System.Drawing.Point(463, 0);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(244, 57);
            this.panel7.TabIndex = 6;
            // 
            // txtTotalpcount
            // 
            this.txtTotalpcount.BackColor = System.Drawing.SystemColors.Info;
            this.txtTotalpcount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTotalpcount.Enabled = false;
            this.txtTotalpcount.Location = new System.Drawing.Point(133, 31);
            this.txtTotalpcount.Name = "txtTotalpcount";
            this.txtTotalpcount.ReadOnly = true;
            this.txtTotalpcount.Size = new System.Drawing.Size(100, 20);
            this.txtTotalpcount.TabIndex = 8;
            // 
            // txttotalsite
            // 
            this.txttotalsite.BackColor = System.Drawing.SystemColors.Info;
            this.txttotalsite.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txttotalsite.Enabled = false;
            this.txttotalsite.Location = new System.Drawing.Point(133, 8);
            this.txttotalsite.Name = "txttotalsite";
            this.txttotalsite.ReadOnly = true;
            this.txttotalsite.Size = new System.Drawing.Size(100, 20);
            this.txttotalsite.TabIndex = 7;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(5, 36);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(99, 14);
            this.label9.TabIndex = 5;
            this.label9.Text = "Total Test Count:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(5, 13);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(67, 14);
            this.label8.TabIndex = 4;
            this.label8.Text = "Total Sites:";
            // 
            // columnHeader11
            // 
            this.columnHeader11.Text = "Reporting Period";
            this.columnHeader11.Width = 115;
            // 
            // columnHeader10
            // 
            this.columnHeader10.Text = "Tests Performed";
            this.columnHeader10.Width = 80;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Stock Out";
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Adjusted";
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "Note";
            this.columnHeader6.Width = 80;
            // 
            // chart1
            // 
            this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(223)))), ((int)(((byte)(193)))));
            this.chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chart1.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(64)))), ((int)(((byte)(1)))));
            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;
            chartArea2.Area3DStyle.Inclination = 15;
            chartArea2.Area3DStyle.IsClustered = true;
            chartArea2.Area3DStyle.IsRightAngleAxes = false;
            chartArea2.Area3DStyle.Perspective = 10;
            chartArea2.Area3DStyle.Rotation = 10;
            chartArea2.Area3DStyle.WallWidth = 0;
            chartArea2.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea2.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea2.AxisX.LabelStyle.Interval = 0D;
            chartArea2.AxisX.LabelStyle.IntervalOffset = 0D;
            chartArea2.AxisX.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea2.AxisX.MajorGrid.Interval = 0D;
            chartArea2.AxisX.MajorGrid.IntervalOffset = 0D;
            chartArea2.AxisX.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea2.AxisX.MajorTickMark.Interval = 0D;
            chartArea2.AxisX.MajorTickMark.IntervalOffset = 0D;
            chartArea2.AxisX.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX2.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea2.AxisX2.LabelStyle.Interval = 0D;
            chartArea2.AxisX2.LabelStyle.IntervalOffset = 0D;
            chartArea2.AxisX2.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX2.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX2.MajorGrid.Interval = 0D;
            chartArea2.AxisX2.MajorGrid.IntervalOffset = 0D;
            chartArea2.AxisX2.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX2.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX2.MajorTickMark.Interval = 0D;
            chartArea2.AxisX2.MajorTickMark.IntervalOffset = 0D;
            chartArea2.AxisX2.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisX2.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea2.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea2.AxisY.LabelStyle.Interval = 0D;
            chartArea2.AxisY.LabelStyle.IntervalOffset = 0D;
            chartArea2.AxisY.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea2.AxisY.MajorGrid.Enabled = false;
            chartArea2.AxisY.MajorGrid.Interval = 0D;
            chartArea2.AxisY.MajorGrid.IntervalOffset = 0D;
            chartArea2.AxisY.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea2.AxisY.MajorTickMark.Interval = 0D;
            chartArea2.AxisY.MajorTickMark.IntervalOffset = 0D;
            chartArea2.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            stripLine4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(241)))), ((int)(((byte)(185)))), ((int)(((byte)(168)))));
            stripLine4.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine4.IntervalOffset = 20D;
            stripLine4.StripWidth = 50D;
            stripLine4.Text = "Standard Deviation";
            stripLine4.TextLineAlignment = System.Drawing.StringAlignment.Far;
            stripLine5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65)))));
            stripLine5.BorderWidth = 2;
            stripLine5.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine5.IntervalOffset = 40D;
            stripLine5.Text = "Mean";
            stripLine5.TextLineAlignment = System.Drawing.StringAlignment.Far;
            stripLine6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(64)))), ((int)(((byte)(10)))));
            stripLine6.BorderWidth = 2;
            stripLine6.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine6.IntervalOffset = 50D;
            stripLine6.Text = "Median";
            stripLine6.TextAlignment = System.Drawing.StringAlignment.Near;
            stripLine6.TextLineAlignment = System.Drawing.StringAlignment.Far;
            chartArea2.AxisY.StripLines.Add(stripLine4);
            chartArea2.AxisY.StripLines.Add(stripLine5);
            chartArea2.AxisY.StripLines.Add(stripLine6);
            chartArea2.AxisY2.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea2.AxisY2.LabelStyle.Interval = 0D;
            chartArea2.AxisY2.LabelStyle.IntervalOffset = 0D;
            chartArea2.AxisY2.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY2.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY2.MajorGrid.Interval = 0D;
            chartArea2.AxisY2.MajorGrid.IntervalOffset = 0D;
            chartArea2.AxisY2.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY2.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY2.MajorTickMark.Interval = 0D;
            chartArea2.AxisY2.MajorTickMark.IntervalOffset = 0D;
            chartArea2.AxisY2.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.AxisY2.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea2.BackColor = System.Drawing.Color.Ivory;
            chartArea2.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea2.BackSecondaryColor = System.Drawing.Color.White;
            chartArea2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea2.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea2.Name = "Default";
            chartArea2.ShadowColor = System.Drawing.Color.Transparent;
            this.chart1.ChartAreas.Add(chartArea2);
            this.chart1.Dock = System.Windows.Forms.DockStyle.Top;
            legend2.Alignment = System.Drawing.StringAlignment.Far;
            legend2.BackColor = System.Drawing.Color.Transparent;
            legend2.Enabled = false;
            legend2.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            legend2.IsTextAutoFit = false;
            legend2.Name = "Default";
            legend2.Position.Auto = false;
            legend2.Position.Height = 15F;
            legend2.Position.Width = 30F;
            legend2.Position.X = 63F;
            legend2.Position.Y = 5F;
            this.chart1.Legends.Add(legend2);
            this.chart1.Location = new System.Drawing.Point(0, 0);
            this.chart1.Name = "chart1";
            series2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
            series2.BorderWidth = 2;
            series2.ChartArea = "Default";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.CustomProperties = "LabelStyle=\"down\"";
            series2.Legend = "Default";
            series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series2.Name = "Series1";
            series2.ShadowOffset = 1;
            this.chart1.Series.Add(series2);
            this.chart1.Size = new System.Drawing.Size(277, 207);
            this.chart1.TabIndex = 40;
            title2.Name = "Title1";
            title2.Text = "Title";
            this.chart1.Titles.Add(title2);
            // 
            // lblMedian
            // 
            this.lblMedian.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblMedian.Location = new System.Drawing.Point(53, 233);
            this.lblMedian.Name = "lblMedian";
            this.lblMedian.Size = new System.Drawing.Size(60, 20);
            this.lblMedian.TabIndex = 39;
            this.lblMedian.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.Black;
            this.label7.Location = new System.Drawing.Point(5, 232);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(47, 23);
            this.label7.TabIndex = 38;
            this.label7.Text = "Median:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblDeviation
            // 
            this.lblDeviation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblDeviation.Location = new System.Drawing.Point(216, 219);
            this.lblDeviation.Name = "lblDeviation";
            this.lblDeviation.Size = new System.Drawing.Size(53, 20);
            this.lblDeviation.TabIndex = 37;
            this.lblDeviation.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.Black;
            this.label11.Location = new System.Drawing.Point(114, 218);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(101, 23);
            this.label11.TabIndex = 36;
            this.label11.Text = "Standard Deviation:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblMean
            // 
            this.lblMean.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblMean.Location = new System.Drawing.Point(53, 210);
            this.lblMean.Name = "lblMean";
            this.lblMean.Size = new System.Drawing.Size(60, 20);
            this.lblMean.TabIndex = 35;
            this.lblMean.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.Black;
            this.label13.Location = new System.Drawing.Point(6, 209);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(46, 23);
            this.label13.TabIndex = 34;
            this.label13.Text = "Mean:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Instrument Downtime";
            this.columnHeader3.Width = 117;
            // 
            // SReported
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Name = "SReported";
            this.Size = new System.Drawing.Size(925, 538);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel2.ResumeLayout(false);
            this.splitContainer2.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.splitContainer3.Panel2.ResumeLayout(false);
            this.splitContainer3.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.panel8.ResumeLayout(false);
            this.panel8.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel6.ResumeLayout(false);
            this.panel6.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            this.panel7.ResumeLayout(false);
            this.panel7.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);

        }
Beispiel #6
0
        private void get_results()
        {
            string board_response;

            string[] temp;
            int[]    spot_formation_detected = new int[5];
            string[] targets = new string[4];
            TV_call      = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            NG_call      = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            CT_call      = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            Control_call = new System.Windows.Forms.DataVisualization.Charting.StripLine();

            targets[0] = "TV";
            targets[1] = "NG";
            targets[2] = "CT";
            targets[3] = "Control";

            port.DiscardInBuffer();
            port.DiscardOutBuffer();

            port.WriteLine("sendResults");
            board_response = port.ReadLine();

            // parse data from board and store in string array
            temp = board_response.Split(',');

            // convert to integers
            for (int b = 0; b < 5; b++)
            {
                spot_formation_detected[b] = Convert.ToInt16(temp[b]);
            }

            // display values to Console
            for (int i = 0; i < 5; i++)
            {
                // target was detected. ignore first response because its inlet
                if ((spot_formation_detected[i] != -1) && (i > 0))
                {
                    Console.WriteLine(targets[i - 1]);
                }
            }

            if (spot_formation_detected[1] != -1)
            {
                TV_call.StripWidth     = 2;
                TV_call.BackColor      = Color.FromArgb(255, Color.Orange);
                TV_call.Interval       = 0;
                TV_call.IntervalOffset = spot_formation_detected[1];
                chart1.ChartAreas[0].AxisX.StripLines.Add(TV_call);
                TV_displayed_result.Text = "TV: POSITIVE";
            }
            if (spot_formation_detected[2] != -1)
            {
                NG_call.StripWidth     = 2;
                NG_call.BackColor      = Color.FromArgb(255, Color.Green);
                NG_call.Interval       = 0;
                NG_call.IntervalOffset = spot_formation_detected[2];
                chart1.ChartAreas[0].AxisX.StripLines.Add(NG_call);
                NG_displayed_result.Text = "NG: POSITIVE";
            }
            if (spot_formation_detected[3] != -1)
            {
                CT_call.StripWidth     = 2;
                CT_call.BackColor      = Color.FromArgb(255, Color.Blue);
                CT_call.Interval       = 0;
                CT_call.IntervalOffset = spot_formation_detected[3];
                chart1.ChartAreas[0].AxisX.StripLines.Add(CT_call);
                CT_displayed_result.Text = "CT: POSITIVE";
            }
            if (spot_formation_detected[4] != -1)
            {
                Control_call.StripWidth     = 2;
                Control_call.BackColor      = Color.FromArgb(255, Color.Violet);
                Control_call.Interval       = 0;
                Control_call.IntervalOffset = spot_formation_detected[4];
                chart1.ChartAreas[0].AxisX.StripLines.Add(Control_call);
                Control_displayed_result.Text = "4+: POSITIVE";
            }
        }
Beispiel #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCliente));
     this.chartCobroAnoActual = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label1           = new System.Windows.Forms.Label();
     this.txtTotalHombres  = new System.Windows.Forms.TextBox();
     this.txtMujeres       = new System.Windows.Forms.TextBox();
     this.label2           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.txtExtrajeros    = new System.Windows.Forms.TextBox();
     this.tabControl1      = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.tabPage2         = new System.Windows.Forms.TabPage();
     this.chartRangoEdades = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.txtClientesTotal = new System.Windows.Forms.TextBox();
     this.label4           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartRangoEdades)).BeginInit();
     this.SuspendLayout();
     //
     // chartCobroAnoActual
     //
     this.chartCobroAnoActual.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     chartArea1.AxisX.MajorGrid.Enabled = false;
     chartArea1.AxisY.MajorGrid.Enabled = false;
     chartArea1.Name = "ChartArea1";
     this.chartCobroAnoActual.ChartAreas.Add(chartArea1);
     legend1.Name  = "Legend1";
     legend1.Title = "Personas por Ciudad";
     this.chartCobroAnoActual.Legends.Add(legend1);
     this.chartCobroAnoActual.Location = new System.Drawing.Point(0, 103);
     this.chartCobroAnoActual.Name     = "chartCobroAnoActual";
     this.chartCobroAnoActual.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.ChartArea           = "ChartArea1";
     series1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.IsValueShownAsLabel = true;
     series1.Legend              = "Legend1";
     series1.MarkerSize          = 7;
     series1.MarkerStep          = 4;
     series1.Name                = "Personas";
     series1.XValueMember        = "Ciudad";
     series1.YValueMembers       = "Cantidad";
     this.chartCobroAnoActual.Series.Add(series1);
     this.chartCobroAnoActual.Size     = new System.Drawing.Size(777, 371);
     this.chartCobroAnoActual.TabIndex = 3;
     this.chartCobroAnoActual.Text     = "chart2";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 34);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(82, 13);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Total Hombres :";
     //
     // txtTotalHombres
     //
     this.txtTotalHombres.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtTotalHombres.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtTotalHombres.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotalHombres.Location    = new System.Drawing.Point(113, 34);
     this.txtTotalHombres.Name        = "txtTotalHombres";
     this.txtTotalHombres.ReadOnly    = true;
     this.txtTotalHombres.Size        = new System.Drawing.Size(63, 13);
     this.txtTotalHombres.TabIndex    = 0;
     //
     // txtMujeres
     //
     this.txtMujeres.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtMujeres.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtMujeres.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMujeres.Location    = new System.Drawing.Point(275, 34);
     this.txtMujeres.Name        = "txtMujeres";
     this.txtMujeres.ReadOnly    = true;
     this.txtMujeres.Size        = new System.Drawing.Size(63, 13);
     this.txtMujeres.TabIndex    = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(192, 34);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(77, 13);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Total Mujeres :";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(579, 34);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(92, 13);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Total Extranjeros :";
     //
     // txtExtrajeros
     //
     this.txtExtrajeros.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtExtrajeros.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtExtrajeros.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExtrajeros.Location    = new System.Drawing.Point(677, 34);
     this.txtExtrajeros.Name        = "txtExtrajeros";
     this.txtExtrajeros.ReadOnly    = true;
     this.txtExtrajeros.Size        = new System.Drawing.Size(63, 13);
     this.txtExtrajeros.TabIndex    = 2;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(781, 503);
     this.tabControl1.TabIndex      = 10;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.txtClientesTotal);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.chartCobroAnoActual);
     this.tabPage1.Controls.Add(this.txtExtrajeros);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.txtTotalHombres);
     this.tabPage1.Controls.Add(this.txtMujeres);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(773, 477);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "General";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.chartRangoEdades);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(773, 477);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Edad";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // chartRangoEdades
     //
     customLabel1.Text = "1";
     customLabel2.Text = "2";
     customLabel3.Text = "3";
     customLabel4.Text = "4";
     chartArea2.AxisX.CustomLabels.Add(customLabel1);
     chartArea2.AxisX.CustomLabels.Add(customLabel2);
     chartArea2.AxisX.CustomLabels.Add(customLabel3);
     chartArea2.AxisX.CustomLabels.Add(customLabel4);
     chartArea2.AxisX.StripLines.Add(stripLine1);
     chartArea2.AxisX.Title          = "relative";
     chartArea2.AxisX.TitleAlignment = System.Drawing.StringAlignment.Far;
     customLabel5.LabelMark          = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel5.Text      = "YText0";
     customLabel6.LabelMark = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.LineSideMark;
     customLabel6.RowIndex  = 1;
     customLabel6.Text      = "YText2";
     chartArea2.AxisY.CustomLabels.Add(customLabel5);
     chartArea2.AxisY.CustomLabels.Add(customLabel6);
     chartArea2.AxisY.Title = "Titulo Y";
     chartArea2.Name        = "ChartArea1";
     this.chartRangoEdades.ChartAreas.Add(chartArea2);
     this.chartRangoEdades.ImeMode = System.Windows.Forms.ImeMode.Disable;
     legend2.Name  = "Legend1";
     legend2.Title = "Personas En Rango Edad";
     this.chartRangoEdades.Legends.Add(legend2);
     this.chartRangoEdades.Location = new System.Drawing.Point(-4, 0);
     this.chartRangoEdades.Name     = "chartRangoEdades";
     this.chartRangoEdades.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series2.ChartArea           = "ChartArea1";
     series2.ChartType           = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
     series2.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.IsValueShownAsLabel = true;
     series2.Legend              = "Legend1";
     series2.Name                = "Series1";
     series2.XValueType          = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     this.chartRangoEdades.Series.Add(series2);
     this.chartRangoEdades.Size     = new System.Drawing.Size(777, 393);
     this.chartRangoEdades.TabIndex = 0;
     this.chartRangoEdades.Text     = "chart1";
     //
     // txtClientesTotal
     //
     this.txtClientesTotal.BackColor   = System.Drawing.SystemColors.ControlLightLight;
     this.txtClientesTotal.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtClientesTotal.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtClientesTotal.Location    = new System.Drawing.Point(486, 34);
     this.txtClientesTotal.Name        = "txtClientesTotal";
     this.txtClientesTotal.ReadOnly    = true;
     this.txtClientesTotal.Size        = new System.Drawing.Size(63, 13);
     this.txtClientesTotal.TabIndex    = 10;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(344, 34);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(136, 13);
     this.label4.TabIndex = 11;
     this.label4.Text     = "Total Clientes Registrados :";
     //
     // frmCliente
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize          = new System.Drawing.Size(784, 504);
     this.Controls.Add(this.tabControl1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "frmCliente";
     this.Text  = "Reporte cliente";
     this.Load += new System.EventHandler(this.frmCliente_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartRangoEdades)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #8
0
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.LineAnnotation lineAnnotation2 = new System.Windows.Forms.DataVisualization.Charting.LineAnnotation();
     System.Windows.Forms.DataVisualization.Charting.ChartArea      chartArea2      = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine      stripLine2      = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend         legend2         = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series         series2         = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title          title2          = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.chart1    = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.timer1    = new System.Windows.Forms.Timer(this.components);
     this.button1   = new System.Windows.Forms.Button();
     this.button2   = new System.Windows.Forms.Button();
     this.timer2    = new System.Windows.Forms.Timer(this.components);
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     lineAnnotation2.AnchorOffsetX   = 10D;
     lineAnnotation2.AnchorOffsetY   = 10D;
     lineAnnotation2.AxisXName       = "ChartArea1\\rX";
     lineAnnotation2.ClipToChartArea = "ChartArea1";
     lineAnnotation2.LineColor       = System.Drawing.Color.BlanchedAlmond;
     lineAnnotation2.Name            = "LineAnnotation1";
     this.chart1.Annotations.Add(lineAnnotation2);
     this.chart1.BackgroundImageLayout                 = System.Windows.Forms.ImageLayout.None;
     chartArea2.Area3DStyle.Inclination                = 50;
     chartArea2.Area3DStyle.IsRightAngleAxes           = false;
     chartArea2.Area3DStyle.LightStyle                 = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
     chartArea2.Area3DStyle.Perspective                = 10;
     chartArea2.Area3DStyle.PointDepth                 = 600;
     chartArea2.Area3DStyle.PointGapDepth              = 900;
     chartArea2.Area3DStyle.Rotation                   = 40;
     chartArea2.Area3DStyle.WallWidth                  = 17;
     chartArea2.AxisX.IsLabelAutoFit                   = false;
     chartArea2.AxisX.LabelStyle.Interval              = 2D;
     chartArea2.AxisX.MajorGrid.Interval               = 1D;
     chartArea2.AxisX.MajorGrid.LineColor              = System.Drawing.Color.Bisque;
     chartArea2.AxisX.MajorTickMark.Interval           = 1D;
     chartArea2.AxisX.MinorGrid.IntervalOffset         = double.NaN;
     chartArea2.AxisX.MinorGrid.IntervalOffsetType     = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.NotSet;
     chartArea2.AxisX.MinorGrid.IntervalType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.NotSet;
     chartArea2.AxisX.MinorTickMark.IntervalOffset     = double.NaN;
     chartArea2.AxisX.MinorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.NotSet;
     chartArea2.AxisX.MinorTickMark.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.NotSet;
     chartArea2.AxisX.MinorTickMark.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
     chartArea2.AxisX.StripLines.Add(stripLine2);
     chartArea2.AxisX.Title               = "Температура °C";
     chartArea2.AxisX.TitleFont           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     chartArea2.AxisY.IntervalAutoMode    = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     chartArea2.AxisY.IsLabelAutoFit      = false;
     chartArea2.AxisY.LabelStyle.Interval = 0.2D;
     chartArea2.AxisY.MajorGrid.Interval  = 0.25D;
     chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.Bisque;
     chartArea2.AxisY.Title               = "Частота (PPM)Гц";
     chartArea2.AxisY.TitleFont           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     chartArea2.AxisY.ToolTip             = "hkkk";
     chartArea2.BackColor        = System.Drawing.Color.LightSkyBlue;
     chartArea2.BackImage        = "C:\\Users\\роман\\Desktop\\цук\\0_80bc8_797837ce_XL.jpg";
     chartArea2.CursorY.Interval = 10D;
     chartArea2.Name             = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea2);
     this.chart1.Cursor         = System.Windows.Forms.Cursors.Default;
     legend2.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Top;
     legend2.Font          = new System.Drawing.Font("Vijaya", 12F, System.Drawing.FontStyle.Bold);
     legend2.IsTextAutoFit = false;
     legend2.Name          = "Legend1";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location     = new System.Drawing.Point(54, 38);
     this.chart1.Name         = "chart1";
     this.chart1.Palette      = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
     series2.BorderWidth      = 5;
     series2.ChartArea        = "ChartArea1";
     series2.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series2.Color            = System.Drawing.Color.PaleGreen;
     series2.CustomProperties = "LineTension=0.5";
     series2.Font             = new System.Drawing.Font("Informal Roman", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
     series2.IsXValueIndexed  = true;
     series2.LabelBackColor   = System.Drawing.Color.White;
     series2.Legend           = "Legend1";
     series2.MarkerSize       = 3;
     series2.MarkerStep       = 10;
     series2.Name             = "T=F(t)PPM";
     series2.SmartLabelStyle.IsMarkerOverlappingAllowed = true;
     series2.SmartLabelStyle.MaxMovingDistance          = 40D;
     series2.SmartLabelStyle.MinMovingDistance          = 20D;
     series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.chart1.Series.Add(series2);
     this.chart1.Size               = new System.Drawing.Size(1301, 696);
     this.chart1.TabIndex           = 0;
     this.chart1.Text               = "chart1";
     title2.Alignment               = System.Drawing.ContentAlignment.TopLeft;
     title2.BackColor               = System.Drawing.Color.Transparent;
     title2.Font                    = new System.Drawing.Font("Traditional Arabic", 12F, System.Drawing.FontStyle.Bold);
     title2.IsDockedInsideChartArea = false;
     title2.Name                    = "Title1";
     title2.Text                    = "                                                                                 " +
                                      "                                                           ТЧХ";
     this.chart1.Titles.Add(title2);
     this.chart1.Click       += new System.EventHandler(this.chart1_Click_1);
     this.chart1.DoubleClick += new System.EventHandler(this.chart1_DoubleClick);
     //
     // timer1
     //
     this.timer1.Interval = 1;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick_1);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(1231, 332);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "button1";
     this.button1.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(1318, 262);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 2;
     this.button2.Text     = "button2";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // timer2
     //
     this.timer2.Interval = 500;
     this.timer2.Tick    += new System.EventHandler(this.timer2_Tick);
     //
     // trackBar1
     //
     this.trackBar1.LargeChange = 1;
     this.trackBar1.Location    = new System.Drawing.Point(342, 27);
     this.trackBar1.Maximum     = 8;
     this.trackBar1.Minimum     = 2;
     this.trackBar1.Name        = "trackBar1";
     this.trackBar1.Size        = new System.Drawing.Size(265, 45);
     this.trackBar1.TabIndex    = 3;
     this.trackBar1.Value       = 2;
     this.trackBar1.Scroll     += new System.EventHandler(this.trackBar1_Scroll);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1704, 774);
     this.Controls.Add(this.trackBar1);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chart1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea9  = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine17 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine18 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series9     = 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.StripLine stripLine19 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine20 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series10    = 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.StripLine stripLine21 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine22 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series11    = 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.StripLine stripLine23 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine24 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series12    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.lb_name_gender    = new System.Windows.Forms.Label();
     this.lb_dob_age        = new System.Windows.Forms.Label();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.ch_log_hr         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.ch_log_rpm        = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.ch_log_power      = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.ch_log_speed      = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label1            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.lb_absvo2max      = new System.Windows.Forms.Label();
     this.lb_relvo2max      = new System.Windows.Forms.Label();
     this.label7            = new System.Windows.Forms.Label();
     this.lb_test_power     = new System.Windows.Forms.Label();
     this.label8            = new System.Windows.Forms.Label();
     this.lb_steady         = new System.Windows.Forms.Label();
     this.label9            = new System.Windows.Forms.Label();
     this.lb_hr             = new System.Windows.Forms.Label();
     this.label11           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_hr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_rpm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_power)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_speed)).BeginInit();
     this.SuspendLayout();
     //
     // lb_name_gender
     //
     this.lb_name_gender.AutoSize = true;
     this.lb_name_gender.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_name_gender.Location = new System.Drawing.Point(15, 22);
     this.lb_name_gender.Name     = "lb_name_gender";
     this.lb_name_gender.Size     = new System.Drawing.Size(189, 17);
     this.lb_name_gender.TabIndex = 0;
     this.lb_name_gender.Text     = "van Endhoven, Nick     M";
     //
     // lb_dob_age
     //
     this.lb_dob_age.AutoSize = true;
     this.lb_dob_age.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_dob_age.Location = new System.Drawing.Point(236, 22);
     this.lb_dob_age.Name     = "lb_dob_age";
     this.lb_dob_age.Size     = new System.Drawing.Size(110, 17);
     this.lb_dob_age.TabIndex = 1;
     this.lb_dob_age.Text     = "13-08-1995   22";
     //
     // ch_log_hr
     //
     chartArea9.AxisX.Enabled            = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea9.AxisX.IsLabelAutoFit     = false;
     chartArea9.AxisX.IsMarksNextToAxis  = false;
     chartArea9.AxisX.LineColor          = System.Drawing.Color.Transparent;
     chartArea9.AxisX.LineWidth          = 0;
     chartArea9.AxisX.TitleForeColor     = System.Drawing.Color.Transparent;
     chartArea9.AxisX2.Enabled           = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea9.AxisX2.IsMarksNextToAxis = false;
     chartArea9.AxisX2.LineColor         = System.Drawing.Color.Transparent;
     chartArea9.AxisX2.LineWidth         = 0;
     chartArea9.AxisX2.TitleForeColor    = System.Drawing.Color.DarkGray;
     chartArea9.AxisY.IsLabelAutoFit     = false;
     chartArea9.AxisY.IsMarksNextToAxis  = false;
     chartArea9.AxisY.LabelStyle.Enabled = false;
     chartArea9.AxisY.LineColor          = System.Drawing.Color.Silver;
     stripLine17.ForeColor = System.Drawing.Color.Silver;
     chartArea9.AxisY.StripLines.Add(stripLine17);
     chartArea9.AxisY.TitleForeColor  = System.Drawing.Color.Silver;
     chartArea9.AxisY2.Enabled        = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea9.AxisY2.IsLabelAutoFit = false;
     chartArea9.AxisY2.LineColor      = System.Drawing.Color.Silver;
     stripLine18.ForeColor            = System.Drawing.Color.Silver;
     chartArea9.AxisY2.StripLines.Add(stripLine18);
     chartArea9.AxisY2.TitleForeColor = System.Drawing.Color.Silver;
     chartArea9.BackColor             = System.Drawing.Color.Transparent;
     chartArea9.BorderColor           = System.Drawing.Color.Silver;
     chartArea9.Name = "ChartArea1";
     this.ch_log_hr.ChartAreas.Add(chartArea9);
     this.ch_log_hr.Location    = new System.Drawing.Point(12, 84);
     this.ch_log_hr.Margin      = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ch_log_hr.Name        = "ch_log_hr";
     this.ch_log_hr.RightToLeft = System.Windows.Forms.RightToLeft.No;
     series9.ChartArea          = "ChartArea1";
     series9.ChartType          = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series9.Color        = System.Drawing.Color.Red;
     series9.Name         = "Series1";
     series9.ShadowColor  = System.Drawing.Color.Silver;
     series9.ShadowOffset = 2;
     series9.XAxisType    = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     series9.YValueType   = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.ch_log_hr.Series.Add(series9);
     this.ch_log_hr.Size     = new System.Drawing.Size(485, 201);
     this.ch_log_hr.TabIndex = 2;
     //
     // ch_log_rpm
     //
     chartArea10.AxisX.Enabled            = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea10.AxisX.IsLabelAutoFit     = false;
     chartArea10.AxisX.IsMarksNextToAxis  = false;
     chartArea10.AxisX.LineColor          = System.Drawing.Color.Transparent;
     chartArea10.AxisX.LineWidth          = 0;
     chartArea10.AxisX.TitleForeColor     = System.Drawing.Color.Transparent;
     chartArea10.AxisX2.Enabled           = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea10.AxisX2.IsMarksNextToAxis = false;
     chartArea10.AxisX2.LineColor         = System.Drawing.Color.Transparent;
     chartArea10.AxisX2.LineWidth         = 0;
     chartArea10.AxisX2.TitleForeColor    = System.Drawing.Color.DarkGray;
     chartArea10.AxisY.IsLabelAutoFit     = false;
     chartArea10.AxisY.IsMarksNextToAxis  = false;
     chartArea10.AxisY.LabelStyle.Enabled = false;
     chartArea10.AxisY.LineColor          = System.Drawing.Color.Silver;
     stripLine19.ForeColor = System.Drawing.Color.Silver;
     chartArea10.AxisY.StripLines.Add(stripLine19);
     chartArea10.AxisY.TitleForeColor  = System.Drawing.Color.Silver;
     chartArea10.AxisY2.Enabled        = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea10.AxisY2.IsLabelAutoFit = false;
     chartArea10.AxisY2.LineColor      = System.Drawing.Color.Silver;
     stripLine20.ForeColor             = System.Drawing.Color.Silver;
     chartArea10.AxisY2.StripLines.Add(stripLine20);
     chartArea10.AxisY2.TitleForeColor = System.Drawing.Color.Silver;
     chartArea10.BackColor             = System.Drawing.Color.Transparent;
     chartArea10.BorderColor           = System.Drawing.Color.Silver;
     chartArea10.Name = "ChartArea1";
     this.ch_log_rpm.ChartAreas.Add(chartArea10);
     this.ch_log_rpm.Location    = new System.Drawing.Point(12, 327);
     this.ch_log_rpm.Margin      = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ch_log_rpm.Name        = "ch_log_rpm";
     this.ch_log_rpm.RightToLeft = System.Windows.Forms.RightToLeft.No;
     series10.ChartArea          = "ChartArea1";
     series10.ChartType          = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series10.Color        = System.Drawing.Color.Blue;
     series10.Name         = "Series1";
     series10.ShadowColor  = System.Drawing.Color.Silver;
     series10.ShadowOffset = 2;
     series10.XAxisType    = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     series10.YValueType   = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.ch_log_rpm.Series.Add(series10);
     this.ch_log_rpm.Size     = new System.Drawing.Size(485, 201);
     this.ch_log_rpm.TabIndex = 3;
     this.ch_log_rpm.Text     = "v";
     //
     // ch_log_power
     //
     chartArea11.AxisX.Enabled            = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea11.AxisX.IsLabelAutoFit     = false;
     chartArea11.AxisX.IsMarksNextToAxis  = false;
     chartArea11.AxisX.LineColor          = System.Drawing.Color.Transparent;
     chartArea11.AxisX.LineWidth          = 0;
     chartArea11.AxisX.TitleForeColor     = System.Drawing.Color.Transparent;
     chartArea11.AxisX2.Enabled           = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea11.AxisX2.IsMarksNextToAxis = false;
     chartArea11.AxisX2.LineColor         = System.Drawing.Color.Transparent;
     chartArea11.AxisX2.LineWidth         = 0;
     chartArea11.AxisX2.TitleForeColor    = System.Drawing.Color.DarkGray;
     chartArea11.AxisY.IsLabelAutoFit     = false;
     chartArea11.AxisY.IsMarksNextToAxis  = false;
     chartArea11.AxisY.LabelStyle.Enabled = false;
     chartArea11.AxisY.LineColor          = System.Drawing.Color.Silver;
     stripLine21.ForeColor = System.Drawing.Color.Silver;
     chartArea11.AxisY.StripLines.Add(stripLine21);
     chartArea11.AxisY.TitleForeColor  = System.Drawing.Color.Silver;
     chartArea11.AxisY2.Enabled        = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea11.AxisY2.IsLabelAutoFit = false;
     chartArea11.AxisY2.LineColor      = System.Drawing.Color.Silver;
     stripLine22.ForeColor             = System.Drawing.Color.Silver;
     chartArea11.AxisY2.StripLines.Add(stripLine22);
     chartArea11.AxisY2.TitleForeColor = System.Drawing.Color.Silver;
     chartArea11.BackColor             = System.Drawing.Color.Transparent;
     chartArea11.BorderColor           = System.Drawing.Color.Silver;
     chartArea11.Name = "ChartArea1";
     this.ch_log_power.ChartAreas.Add(chartArea11);
     this.ch_log_power.Location    = new System.Drawing.Point(505, 84);
     this.ch_log_power.Margin      = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ch_log_power.Name        = "ch_log_power";
     this.ch_log_power.RightToLeft = System.Windows.Forms.RightToLeft.No;
     series11.ChartArea            = "ChartArea1";
     series11.ChartType            = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series11.Color        = System.Drawing.Color.Fuchsia;
     series11.Name         = "Series1";
     series11.ShadowColor  = System.Drawing.Color.Silver;
     series11.ShadowOffset = 2;
     series11.XAxisType    = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     series11.YValueType   = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.ch_log_power.Series.Add(series11);
     this.ch_log_power.Size     = new System.Drawing.Size(485, 201);
     this.ch_log_power.TabIndex = 4;
     this.ch_log_power.Text     = "v";
     //
     // ch_log_speed
     //
     chartArea12.AxisX.Enabled            = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea12.AxisX.IsLabelAutoFit     = false;
     chartArea12.AxisX.IsMarksNextToAxis  = false;
     chartArea12.AxisX.LineColor          = System.Drawing.Color.Transparent;
     chartArea12.AxisX.LineWidth          = 0;
     chartArea12.AxisX.TitleForeColor     = System.Drawing.Color.Transparent;
     chartArea12.AxisX2.Enabled           = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea12.AxisX2.IsMarksNextToAxis = false;
     chartArea12.AxisX2.LineColor         = System.Drawing.Color.Transparent;
     chartArea12.AxisX2.LineWidth         = 0;
     chartArea12.AxisX2.TitleForeColor    = System.Drawing.Color.DarkGray;
     chartArea12.AxisY.IsLabelAutoFit     = false;
     chartArea12.AxisY.IsMarksNextToAxis  = false;
     chartArea12.AxisY.LabelStyle.Enabled = false;
     chartArea12.AxisY.LineColor          = System.Drawing.Color.Silver;
     stripLine23.ForeColor = System.Drawing.Color.Silver;
     chartArea12.AxisY.StripLines.Add(stripLine23);
     chartArea12.AxisY.TitleForeColor  = System.Drawing.Color.Silver;
     chartArea12.AxisY2.Enabled        = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea12.AxisY2.IsLabelAutoFit = false;
     chartArea12.AxisY2.LineColor      = System.Drawing.Color.Silver;
     stripLine24.ForeColor             = System.Drawing.Color.Silver;
     chartArea12.AxisY2.StripLines.Add(stripLine24);
     chartArea12.AxisY2.TitleForeColor = System.Drawing.Color.Silver;
     chartArea12.BackColor             = System.Drawing.Color.Transparent;
     chartArea12.BorderColor           = System.Drawing.Color.Silver;
     chartArea12.Name = "ChartArea1";
     this.ch_log_speed.ChartAreas.Add(chartArea12);
     this.ch_log_speed.Location    = new System.Drawing.Point(504, 327);
     this.ch_log_speed.Margin      = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ch_log_speed.Name        = "ch_log_speed";
     this.ch_log_speed.RightToLeft = System.Windows.Forms.RightToLeft.No;
     series12.ChartArea            = "ChartArea1";
     series12.ChartType            = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series12.Color        = System.Drawing.Color.Lime;
     series12.Name         = "Series1";
     series12.ShadowColor  = System.Drawing.Color.Silver;
     series12.ShadowOffset = 2;
     series12.XAxisType    = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     series12.YValueType   = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.ch_log_speed.Series.Add(series12);
     this.ch_log_speed.Size     = new System.Drawing.Size(485, 201);
     this.ch_log_speed.TabIndex = 5;
     this.ch_log_speed.Text     = "v";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 64);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(68, 17);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Heartrate";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(501, 64);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(47, 17);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Power";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 306);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(38, 17);
     this.label3.TabIndex = 8;
     this.label3.Text     = "RPM";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(517, 306);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(49, 17);
     this.label4.TabIndex = 9;
     this.label4.Text     = "Speed";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(1006, 224);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(124, 17);
     this.label5.TabIndex = 10;
     this.label5.Text     = "Absolute VO2Max:";
     //
     // lb_absvo2max
     //
     this.lb_absvo2max.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_absvo2max.Location  = new System.Drawing.Point(1179, 224);
     this.lb_absvo2max.Name      = "lb_absvo2max";
     this.lb_absvo2max.Size      = new System.Drawing.Size(61, 23);
     this.lb_absvo2max.TabIndex  = 11;
     this.lb_absvo2max.Text      = "NA";
     this.lb_absvo2max.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // lb_relvo2max
     //
     this.lb_relvo2max.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_relvo2max.Location  = new System.Drawing.Point(1179, 252);
     this.lb_relvo2max.Name      = "lb_relvo2max";
     this.lb_relvo2max.Size      = new System.Drawing.Size(61, 23);
     this.lb_relvo2max.TabIndex  = 13;
     this.lb_relvo2max.Text      = "NA";
     this.lb_relvo2max.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(1006, 252);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(128, 17);
     this.label7.TabIndex = 12;
     this.label7.Text     = "Relatieve VO2Max:";
     //
     // lb_test_power
     //
     this.lb_test_power.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_test_power.Location  = new System.Drawing.Point(1179, 96);
     this.lb_test_power.Name      = "lb_test_power";
     this.lb_test_power.Size      = new System.Drawing.Size(61, 23);
     this.lb_test_power.TabIndex  = 15;
     this.lb_test_power.Text      = "NA";
     this.lb_test_power.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(1006, 96);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(82, 17);
     this.label8.TabIndex = 14;
     this.label8.Text     = "Test power:";
     //
     // lb_steady
     //
     this.lb_steady.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_steady.Location  = new System.Drawing.Point(1179, 145);
     this.lb_steady.Name      = "lb_steady";
     this.lb_steady.Size      = new System.Drawing.Size(61, 23);
     this.lb_steady.TabIndex  = 17;
     this.lb_steady.Text      = "No";
     this.lb_steady.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(1006, 145);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(148, 17);
     this.label9.TabIndex = 16;
     this.label9.Text     = "Reached Steadystate:";
     //
     // lb_hr
     //
     this.lb_hr.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lb_hr.Location  = new System.Drawing.Point(1179, 172);
     this.lb_hr.Name      = "lb_hr";
     this.lb_hr.Size      = new System.Drawing.Size(61, 23);
     this.lb_hr.TabIndex  = 19;
     this.lb_hr.Text      = "NA";
     this.lb_hr.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(1006, 172);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(120, 17);
     this.label11.TabIndex = 18;
     this.label11.Text     = "Steady Heartrate:";
     //
     // Log
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1296, 551);
     this.Controls.Add(this.lb_hr);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.lb_steady);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.lb_test_power);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.lb_relvo2max);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.lb_absvo2max);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.ch_log_speed);
     this.Controls.Add(this.ch_log_power);
     this.Controls.Add(this.ch_log_rpm);
     this.Controls.Add(this.ch_log_hr);
     this.Controls.Add(this.lb_dob_age);
     this.Controls.Add(this.lb_name_gender);
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name   = "Log";
     this.Text   = "Log";
     this.Load  += new System.EventHandler(this.Log_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_hr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_rpm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_power)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ch_log_speed)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager            resources  = new System.ComponentModel.ComponentResourceManager(typeof(Form3));
     this.label1                                   = new System.Windows.Forms.Label();
     this.label_name                               = new System.Windows.Forms.Label();
     this.label3                                   = new System.Windows.Forms.Label();
     this.label_sno                                = new System.Windows.Forms.Label();
     this.label5                                   = new System.Windows.Forms.Label();
     this.label_grade                              = new System.Windows.Forms.Label();
     this.label7                                   = new System.Windows.Forms.Label();
     this.label_gender                             = new System.Windows.Forms.Label();
     this.label9                                   = new System.Windows.Forms.Label();
     this.label11                                  = new System.Windows.Forms.Label();
     this.label12                                  = new System.Windows.Forms.Label();
     this.label14                                  = new System.Windows.Forms.Label();
     this.label15                                  = new System.Windows.Forms.Label();
     this.label_endurance_run                      = new System.Windows.Forms.Label();
     this.label17                                  = new System.Windows.Forms.Label();
     this.label_abdominal_curl                     = new System.Windows.Forms.Label();
     this.label19                                  = new System.Windows.Forms.Label();
     this.label_evaluate_bmi                       = new System.Windows.Forms.Label();
     this.label_evaluate_50m                       = new System.Windows.Forms.Label();
     this.label_evaluate_vital_capacity            = new System.Windows.Forms.Label();
     this.label_evaluate_standing_long_jump        = new System.Windows.Forms.Label();
     this.label_evaluate_endurance_run             = new System.Windows.Forms.Label();
     this.label_evaluate_three_dimensional_flexion = new System.Windows.Forms.Label();
     this.label_evaluate_abdominal_curl            = new System.Windows.Forms.Label();
     this.label10                                  = new System.Windows.Forms.Label();
     this.label_evaluate_evaluation_results        = new System.Windows.Forms.Label();
     this.label_score_evaluation_results           = new System.Windows.Forms.Label();
     this.label28                                  = new System.Windows.Forms.Label();
     this.label_score_abdominal_curl               = new System.Windows.Forms.Label();
     this.label_score_three_dimensional_flexion    = new System.Windows.Forms.Label();
     this.label_score_endurance_run                = new System.Windows.Forms.Label();
     this.label_score_standing_long_jump           = new System.Windows.Forms.Label();
     this.label_score_vital_capacity               = new System.Windows.Forms.Label();
     this.label_score_50m                          = new System.Windows.Forms.Label();
     this.label_score_bmi                          = new System.Windows.Forms.Label();
     this.label36                                  = new System.Windows.Forms.Label();
     this.button_back                              = new System.Windows.Forms.Button();
     this.button1                                  = new System.Windows.Forms.Button();
     this.label2                                   = new System.Windows.Forms.Label();
     this.chart1                                   = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location  = new System.Drawing.Point(466, 150);
     this.label1.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(85, 24);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "姓名:";
     //
     // label_name
     //
     this.label_name.AutoSize  = true;
     this.label_name.BackColor = System.Drawing.Color.Transparent;
     this.label_name.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_name.Location  = new System.Drawing.Point(537, 150);
     this.label_name.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_name.Name      = "label_name";
     this.label_name.Size      = new System.Drawing.Size(60, 24);
     this.label_name.TabIndex  = 1;
     this.label_name.Text      = "张三";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location  = new System.Drawing.Point(31, 150);
     this.label3.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(85, 24);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "学号:";
     //
     // label_sno
     //
     this.label_sno.AutoSize  = true;
     this.label_sno.BackColor = System.Drawing.Color.Transparent;
     this.label_sno.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_sno.Location  = new System.Drawing.Point(102, 150);
     this.label_sno.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_sno.Name      = "label_sno";
     this.label_sno.Size      = new System.Drawing.Size(153, 24);
     this.label_sno.TabIndex  = 3;
     this.label_sno.Text      = "20170741142";
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location  = new System.Drawing.Point(744, 150);
     this.label5.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(85, 24);
     this.label5.TabIndex  = 4;
     this.label5.Text      = "年级:";
     //
     // label_grade
     //
     this.label_grade.AutoSize  = true;
     this.label_grade.BackColor = System.Drawing.Color.Transparent;
     this.label_grade.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_grade.Location  = new System.Drawing.Point(812, 150);
     this.label_grade.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_grade.Name      = "label_grade";
     this.label_grade.Size      = new System.Drawing.Size(60, 24);
     this.label_grade.TabIndex  = 5;
     this.label_grade.Text      = "大二";
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location  = new System.Drawing.Point(309, 150);
     this.label7.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(85, 24);
     this.label7.TabIndex  = 6;
     this.label7.Text      = "性别:";
     //
     // label_gender
     //
     this.label_gender.AutoSize  = true;
     this.label_gender.BackColor = System.Drawing.Color.Transparent;
     this.label_gender.Font      = new System.Drawing.Font("楷体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_gender.Location  = new System.Drawing.Point(377, 150);
     this.label_gender.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_gender.Name      = "label_gender";
     this.label_gender.Size      = new System.Drawing.Size(35, 24);
     this.label_gender.TabIndex  = 7;
     this.label_gender.Text      = "男";
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location  = new System.Drawing.Point(64, 273);
     this.label9.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(102, 24);
     this.label9.TabIndex  = 8;
     this.label9.Text      = "测试项目";
     //
     // label11
     //
     this.label11.AutoSize  = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location  = new System.Drawing.Point(406, 274);
     this.label11.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(90, 21);
     this.label11.TabIndex  = 10;
     this.label11.Text      = "评价等级";
     this.label11.Click    += new System.EventHandler(this.label11_Click);
     //
     // label12
     //
     this.label12.AutoSize  = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location  = new System.Drawing.Point(64, 312);
     this.label12.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(102, 24);
     this.label12.TabIndex  = 11;
     this.label12.Text      = "身高体重";
     this.label12.Click    += new System.EventHandler(this.label12_Click);
     //
     // label14
     //
     this.label14.AutoSize  = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location  = new System.Drawing.Point(79, 392);
     this.label14.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label14.Name      = "label14";
     this.label14.Size      = new System.Drawing.Size(79, 24);
     this.label14.TabIndex  = 13;
     this.label14.Text      = "肺活量";
     //
     // label15
     //
     this.label15.AutoSize  = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label15.Location  = new System.Drawing.Point(102, 352);
     this.label15.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(53, 24);
     this.label15.TabIndex  = 14;
     this.label15.Text      = "50m";
     //
     // label_endurance_run
     //
     this.label_endurance_run.AutoSize  = true;
     this.label_endurance_run.BackColor = System.Drawing.Color.Transparent;
     this.label_endurance_run.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_endurance_run.Location  = new System.Drawing.Point(87, 472);
     this.label_endurance_run.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_endurance_run.Name      = "label_endurance_run";
     this.label_endurance_run.Size      = new System.Drawing.Size(77, 24);
     this.label_endurance_run.TabIndex  = 15;
     this.label_endurance_run.Text      = "1000m";
     //
     // label17
     //
     this.label17.AutoSize  = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label17.Location  = new System.Drawing.Point(53, 510);
     this.label17.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(125, 24);
     this.label17.TabIndex  = 16;
     this.label17.Text      = "坐位体前屈";
     //
     // label_abdominal_curl
     //
     this.label_abdominal_curl.AutoSize  = true;
     this.label_abdominal_curl.BackColor = System.Drawing.Color.Transparent;
     this.label_abdominal_curl.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_abdominal_curl.Location  = new System.Drawing.Point(64, 548);
     this.label_abdominal_curl.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_abdominal_curl.Name      = "label_abdominal_curl";
     this.label_abdominal_curl.Size      = new System.Drawing.Size(102, 24);
     this.label_abdominal_curl.TabIndex  = 17;
     this.label_abdominal_curl.Text      = "引体向上";
     //
     // label19
     //
     this.label19.AutoSize  = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label19.Location  = new System.Drawing.Point(64, 437);
     this.label19.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label19.Name      = "label19";
     this.label19.Size      = new System.Drawing.Size(102, 24);
     this.label19.TabIndex  = 18;
     this.label19.Text      = "立定跳远";
     //
     // label_evaluate_bmi
     //
     this.label_evaluate_bmi.AutoSize  = true;
     this.label_evaluate_bmi.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_bmi.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_bmi.Location  = new System.Drawing.Point(420, 315);
     this.label_evaluate_bmi.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_bmi.Name      = "label_evaluate_bmi";
     this.label_evaluate_bmi.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_bmi.TabIndex  = 29;
     this.label_evaluate_bmi.Text      = "正常";
     this.label_evaluate_bmi.Click    += new System.EventHandler(this.label21_Click);
     //
     // label_evaluate_50m
     //
     this.label_evaluate_50m.AutoSize  = true;
     this.label_evaluate_50m.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_50m.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_50m.Location  = new System.Drawing.Point(420, 355);
     this.label_evaluate_50m.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_50m.Name      = "label_evaluate_50m";
     this.label_evaluate_50m.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_50m.TabIndex  = 30;
     this.label_evaluate_50m.Text      = "及格";
     //
     // label_evaluate_vital_capacity
     //
     this.label_evaluate_vital_capacity.AutoSize  = true;
     this.label_evaluate_vital_capacity.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_vital_capacity.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_vital_capacity.Location  = new System.Drawing.Point(420, 394);
     this.label_evaluate_vital_capacity.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_vital_capacity.Name      = "label_evaluate_vital_capacity";
     this.label_evaluate_vital_capacity.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_vital_capacity.TabIndex  = 31;
     this.label_evaluate_vital_capacity.Text      = "及格";
     //
     // label_evaluate_standing_long_jump
     //
     this.label_evaluate_standing_long_jump.AutoSize  = true;
     this.label_evaluate_standing_long_jump.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_standing_long_jump.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_standing_long_jump.Location  = new System.Drawing.Point(420, 435);
     this.label_evaluate_standing_long_jump.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_standing_long_jump.Name      = "label_evaluate_standing_long_jump";
     this.label_evaluate_standing_long_jump.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_standing_long_jump.TabIndex  = 32;
     this.label_evaluate_standing_long_jump.Text      = "良好";
     //
     // label_evaluate_endurance_run
     //
     this.label_evaluate_endurance_run.AutoSize  = true;
     this.label_evaluate_endurance_run.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_endurance_run.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_endurance_run.Location  = new System.Drawing.Point(420, 473);
     this.label_evaluate_endurance_run.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_endurance_run.Name      = "label_evaluate_endurance_run";
     this.label_evaluate_endurance_run.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_endurance_run.TabIndex  = 33;
     this.label_evaluate_endurance_run.Text      = "及格";
     //
     // label_evaluate_three_dimensional_flexion
     //
     this.label_evaluate_three_dimensional_flexion.AutoSize  = true;
     this.label_evaluate_three_dimensional_flexion.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_three_dimensional_flexion.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_three_dimensional_flexion.Location  = new System.Drawing.Point(420, 512);
     this.label_evaluate_three_dimensional_flexion.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_three_dimensional_flexion.Name      = "label_evaluate_three_dimensional_flexion";
     this.label_evaluate_three_dimensional_flexion.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_three_dimensional_flexion.TabIndex  = 34;
     this.label_evaluate_three_dimensional_flexion.Text      = "优秀";
     //
     // label_evaluate_abdominal_curl
     //
     this.label_evaluate_abdominal_curl.AutoSize  = true;
     this.label_evaluate_abdominal_curl.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_abdominal_curl.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_abdominal_curl.Location  = new System.Drawing.Point(420, 551);
     this.label_evaluate_abdominal_curl.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_abdominal_curl.Name      = "label_evaluate_abdominal_curl";
     this.label_evaluate_abdominal_curl.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_abdominal_curl.TabIndex  = 35;
     this.label_evaluate_abdominal_curl.Text      = "优秀";
     //
     // label10
     //
     this.label10.AutoSize  = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font      = new System.Drawing.Font("等线", 17.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location  = new System.Drawing.Point(64, 633);
     this.label10.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(102, 24);
     this.label10.TabIndex  = 45;
     this.label10.Text      = "测评结果";
     this.label10.Click    += new System.EventHandler(this.label10_Click_1);
     //
     // label_evaluate_evaluation_results
     //
     this.label_evaluate_evaluation_results.AutoSize  = true;
     this.label_evaluate_evaluation_results.BackColor = System.Drawing.Color.Transparent;
     this.label_evaluate_evaluation_results.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_evaluate_evaluation_results.Location  = new System.Drawing.Point(420, 636);
     this.label_evaluate_evaluation_results.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_evaluate_evaluation_results.Name      = "label_evaluate_evaluation_results";
     this.label_evaluate_evaluation_results.Size      = new System.Drawing.Size(50, 21);
     this.label_evaluate_evaluation_results.TabIndex  = 46;
     this.label_evaluate_evaluation_results.Text      = "良好";
     //
     // label_score_evaluation_results
     //
     this.label_score_evaluation_results.AutoSize  = true;
     this.label_score_evaluation_results.BackColor = System.Drawing.Color.Transparent;
     this.label_score_evaluation_results.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_evaluation_results.Location  = new System.Drawing.Point(267, 635);
     this.label_score_evaluation_results.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_evaluation_results.Name      = "label_score_evaluation_results";
     this.label_score_evaluation_results.Size      = new System.Drawing.Size(47, 21);
     this.label_score_evaluation_results.TabIndex  = 56;
     this.label_score_evaluation_results.Text      = "81.5";
     this.label_score_evaluation_results.Click    += new System.EventHandler(this.label27_Click);
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font     = new System.Drawing.Font("宋体", 14F);
     this.label28.Location = new System.Drawing.Point(-164, 694);
     this.label28.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label28.Name     = "label28";
     this.label28.Size     = new System.Drawing.Size(47, 19);
     this.label28.TabIndex = 55;
     this.label28.Text     = "总分";
     //
     // label_score_abdominal_curl
     //
     this.label_score_abdominal_curl.AutoSize  = true;
     this.label_score_abdominal_curl.BackColor = System.Drawing.Color.Transparent;
     this.label_score_abdominal_curl.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_abdominal_curl.Location  = new System.Drawing.Point(274, 548);
     this.label_score_abdominal_curl.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_abdominal_curl.Name      = "label_score_abdominal_curl";
     this.label_score_abdominal_curl.Size      = new System.Drawing.Size(32, 21);
     this.label_score_abdominal_curl.TabIndex  = 54;
     this.label_score_abdominal_curl.Text      = "90";
     //
     // label_score_three_dimensional_flexion
     //
     this.label_score_three_dimensional_flexion.AutoSize  = true;
     this.label_score_three_dimensional_flexion.BackColor = System.Drawing.Color.Transparent;
     this.label_score_three_dimensional_flexion.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_three_dimensional_flexion.Location  = new System.Drawing.Point(274, 510);
     this.label_score_three_dimensional_flexion.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_three_dimensional_flexion.Name      = "label_score_three_dimensional_flexion";
     this.label_score_three_dimensional_flexion.Size      = new System.Drawing.Size(32, 21);
     this.label_score_three_dimensional_flexion.TabIndex  = 53;
     this.label_score_three_dimensional_flexion.Text      = "88";
     //
     // label_score_endurance_run
     //
     this.label_score_endurance_run.AutoSize  = true;
     this.label_score_endurance_run.BackColor = System.Drawing.Color.Transparent;
     this.label_score_endurance_run.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_endurance_run.Location  = new System.Drawing.Point(274, 472);
     this.label_score_endurance_run.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_endurance_run.Name      = "label_score_endurance_run";
     this.label_score_endurance_run.Size      = new System.Drawing.Size(32, 21);
     this.label_score_endurance_run.TabIndex  = 52;
     this.label_score_endurance_run.Text      = "77";
     //
     // label_score_standing_long_jump
     //
     this.label_score_standing_long_jump.AutoSize  = true;
     this.label_score_standing_long_jump.BackColor = System.Drawing.Color.Transparent;
     this.label_score_standing_long_jump.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_standing_long_jump.Location  = new System.Drawing.Point(274, 434);
     this.label_score_standing_long_jump.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_standing_long_jump.Name      = "label_score_standing_long_jump";
     this.label_score_standing_long_jump.Size      = new System.Drawing.Size(32, 21);
     this.label_score_standing_long_jump.TabIndex  = 51;
     this.label_score_standing_long_jump.Text      = "82";
     //
     // label_score_vital_capacity
     //
     this.label_score_vital_capacity.AutoSize  = true;
     this.label_score_vital_capacity.BackColor = System.Drawing.Color.Transparent;
     this.label_score_vital_capacity.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_vital_capacity.Location  = new System.Drawing.Point(274, 391);
     this.label_score_vital_capacity.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_vital_capacity.Name      = "label_score_vital_capacity";
     this.label_score_vital_capacity.Size      = new System.Drawing.Size(32, 21);
     this.label_score_vital_capacity.TabIndex  = 50;
     this.label_score_vital_capacity.Text      = "78";
     //
     // label_score_50m
     //
     this.label_score_50m.AutoSize  = true;
     this.label_score_50m.BackColor = System.Drawing.Color.Transparent;
     this.label_score_50m.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_50m.Location  = new System.Drawing.Point(274, 352);
     this.label_score_50m.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_50m.Name      = "label_score_50m";
     this.label_score_50m.Size      = new System.Drawing.Size(32, 21);
     this.label_score_50m.TabIndex  = 49;
     this.label_score_50m.Text      = "77";
     //
     // label_score_bmi
     //
     this.label_score_bmi.AutoSize  = true;
     this.label_score_bmi.BackColor = System.Drawing.Color.Transparent;
     this.label_score_bmi.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label_score_bmi.Location  = new System.Drawing.Point(274, 312);
     this.label_score_bmi.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label_score_bmi.Name      = "label_score_bmi";
     this.label_score_bmi.Size      = new System.Drawing.Size(32, 21);
     this.label_score_bmi.TabIndex  = 48;
     this.label_score_bmi.Text      = "85";
     this.label_score_bmi.Click    += new System.EventHandler(this.label35_Click);
     //
     // label36
     //
     this.label36.AutoSize  = true;
     this.label36.BackColor = System.Drawing.Color.Transparent;
     this.label36.Font      = new System.Drawing.Font("等线", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label36.Location  = new System.Drawing.Point(263, 272);
     this.label36.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label36.Name      = "label36";
     this.label36.Size      = new System.Drawing.Size(50, 21);
     this.label36.TabIndex  = 47;
     this.label36.Text      = "分值";
     //
     // button_back
     //
     this.button_back.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.button_back.BackColor               = System.Drawing.Color.LightSteelBlue;
     this.button_back.Font                    = new System.Drawing.Font("楷体", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button_back.Location                = new System.Drawing.Point(776, 792);
     this.button_back.Margin                  = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.button_back.Name                    = "button_back";
     this.button_back.Size                    = new System.Drawing.Size(143, 58);
     this.button_back.TabIndex                = 57;
     this.button_back.Text                    = "返回评分";
     this.button_back.UseVisualStyleBackColor = false;
     this.button_back.Click                  += new System.EventHandler(this.button_back_Click);
     //
     // button1
     //
     this.button1.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.button1.BackColor               = System.Drawing.Color.LightSteelBlue;
     this.button1.Font                    = new System.Drawing.Font("楷体", 16.2F, System.Drawing.FontStyle.Bold);
     this.button1.Location                = new System.Drawing.Point(177, 792);
     this.button1.Margin                  = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.button1.Name                    = "button1";
     this.button1.Size                    = new System.Drawing.Size(154, 58);
     this.button1.TabIndex                = 58;
     this.button1.Text                    = "返回首页";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click                  += new System.EventHandler(this.button1_Click);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("楷体", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location  = new System.Drawing.Point(270, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(461, 48);
     this.label2.TabIndex  = 59;
     this.label2.Text      = "大学生体质测评结果";
     //
     // chart1
     //
     this.chart1.BackColor       = System.Drawing.Color.Transparent;
     this.chart1.BorderlineColor = System.Drawing.Color.Transparent;
     this.chart1.BorderlineWidth = 2;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.Title          = "成绩";
     chartArea1.AxisY.LogarithmBase  = 100D;
     chartArea1.AxisY.ScrollBar.Size = 6D;
     chartArea1.AxisY.Title          = "项目";
     chartArea1.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Name           = "Legend1";
     legend1.TitleBackColor = System.Drawing.Color.Transparent;
     this.chart1.Legends.Add(legend1);
     this.chart1.Location    = new System.Drawing.Point(527, 195);
     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.Polar;
     series1.Legend          = "Legend1";
     series1.LegendText      = "体测成绩";
     series1.MarkerStyle     = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Triangle;
     series1.Name            = "体测成绩";
     series1.Palette         = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
     series1.YValuesPerPoint = 2;
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(600, 520);
     this.chart1.TabIndex = 60;
     this.chart1.Text     = "chart1";
     this.chart1.Click   += new System.EventHandler(this.chart1_Click);
     //
     // Form3
     //
     this.AutoScaleDimensions   = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode          = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor             = System.Drawing.SystemColors.ActiveBorder;
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize            = new System.Drawing.Size(1150, 941);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.button_back);
     this.Controls.Add(this.label_score_evaluation_results);
     this.Controls.Add(this.label28);
     this.Controls.Add(this.label_score_abdominal_curl);
     this.Controls.Add(this.label_score_three_dimensional_flexion);
     this.Controls.Add(this.label_score_endurance_run);
     this.Controls.Add(this.label_score_standing_long_jump);
     this.Controls.Add(this.label_score_vital_capacity);
     this.Controls.Add(this.label_score_50m);
     this.Controls.Add(this.label_score_bmi);
     this.Controls.Add(this.label36);
     this.Controls.Add(this.label_evaluate_evaluation_results);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label_evaluate_abdominal_curl);
     this.Controls.Add(this.label_evaluate_three_dimensional_flexion);
     this.Controls.Add(this.label_evaluate_endurance_run);
     this.Controls.Add(this.label_evaluate_standing_long_jump);
     this.Controls.Add(this.label_evaluate_vital_capacity);
     this.Controls.Add(this.label_evaluate_50m);
     this.Controls.Add(this.label_evaluate_bmi);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.label_abdominal_curl);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label_endurance_run);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label_gender);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label_grade);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label_sno);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label_name);
     this.Controls.Add(this.label1);
     this.DoubleBuffered = true;
     this.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.ForeColor      = System.Drawing.SystemColors.ActiveCaptionText;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin         = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.MinimizeBox    = false;
     this.Name           = "Form3";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "大学生体质测评系统";
     this.Load          += new System.EventHandler(this.Form3_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #11
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 chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea4 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend2    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    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();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.conectarToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.portaSerialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cbPortNames = new System.Windows.Forms.ToolStripComboBox();
     this.conectarToolStripMenuItem1    = new System.Windows.Forms.ToolStripMenuItem();
     this.ganhoToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem6            = 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.configurarADToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.coletaToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.btStartAquis = new System.Windows.Forms.ToolStripMenuItem();
     this.btStopAquis  = new System.Windows.Forms.ToolStripMenuItem();
     this.mudarDiretórioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.abrirJogoToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.stConectar            = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.st_aquis = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.lbLED       = new System.Windows.Forms.ToolStripStatusLabel();
     this.timerPortas = new System.Windows.Forms.Timer(this.components);
     this.chart1      = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.analiseDeDadosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.conectarToolStripMenuItem,
         this.coletaToolStripMenuItem,
         this.mudarDiretórioToolStripMenuItem,
         this.abrirJogoToolStripMenuItem,
         this.analiseDeDadosToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Padding  = new System.Windows.Forms.Padding(4, 2, 0, 2);
     this.menuStrip1.Size     = new System.Drawing.Size(1016, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // conectarToolStripMenuItem
     //
     this.conectarToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.portaSerialToolStripMenuItem,
         this.conectarToolStripMenuItem1,
         this.ganhoToolStripMenuItem,
         this.configurarADToolStripMenuItem
     });
     this.conectarToolStripMenuItem.Name = "conectarToolStripMenuItem";
     this.conectarToolStripMenuItem.Size = new System.Drawing.Size(114, 20);
     this.conectarToolStripMenuItem.Text = "MicroControlador";
     //
     // portaSerialToolStripMenuItem
     //
     this.portaSerialToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.cbPortNames
     });
     this.portaSerialToolStripMenuItem.Name = "portaSerialToolStripMenuItem";
     this.portaSerialToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.portaSerialToolStripMenuItem.Text = "Porta Serial";
     //
     // cbPortNames
     //
     this.cbPortNames.Name = "cbPortNames";
     this.cbPortNames.Size = new System.Drawing.Size(121, 23);
     //
     // conectarToolStripMenuItem1
     //
     this.conectarToolStripMenuItem1.Name   = "conectarToolStripMenuItem1";
     this.conectarToolStripMenuItem1.Size   = new System.Drawing.Size(150, 22);
     this.conectarToolStripMenuItem1.Text   = "Conectar";
     this.conectarToolStripMenuItem1.Click += new System.EventHandler(this.conectarToolStripMenuItem1_Click);
     //
     // ganhoToolStripMenuItem
     //
     this.ganhoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem2,
         this.toolStripMenuItem3,
         this.toolStripMenuItem4,
         this.toolStripMenuItem5,
         this.toolStripMenuItem6,
         this.toolStripMenuItem7,
         this.toolStripMenuItem8,
         this.toolStripMenuItem9
     });
     this.ganhoToolStripMenuItem.Name = "ganhoToolStripMenuItem";
     this.ganhoToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.ganhoToolStripMenuItem.Text = "Ganho";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name   = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem2.Text   = "0";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name   = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem3.Text   = "1353";
     this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name   = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem4.Text   = "2706";
     this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name   = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem5.Text   = "5412";
     this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click);
     //
     // toolStripMenuItem6
     //
     this.toolStripMenuItem6.Name   = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem6.Text   = "10824";
     this.toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItem6_Click);
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name   = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem7.Text   = "21648";
     this.toolStripMenuItem7.Click += new System.EventHandler(this.toolStripMenuItem7_Click);
     //
     // toolStripMenuItem8
     //
     this.toolStripMenuItem8.Name   = "toolStripMenuItem8";
     this.toolStripMenuItem8.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem8.Text   = "43296";
     this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click);
     //
     // toolStripMenuItem9
     //
     this.toolStripMenuItem9.Name   = "toolStripMenuItem9";
     this.toolStripMenuItem9.Size   = new System.Drawing.Size(104, 22);
     this.toolStripMenuItem9.Text   = "86592";
     this.toolStripMenuItem9.Click += new System.EventHandler(this.toolStripMenuItem9_Click);
     //
     // configurarADToolStripMenuItem
     //
     this.configurarADToolStripMenuItem.Name   = "configurarADToolStripMenuItem";
     this.configurarADToolStripMenuItem.Size   = new System.Drawing.Size(150, 22);
     this.configurarADToolStripMenuItem.Text   = "Configurar AD";
     this.configurarADToolStripMenuItem.Click += new System.EventHandler(this.configurarADToolStripMenuItem_Click);
     //
     // coletaToolStripMenuItem
     //
     this.coletaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btStartAquis,
         this.btStopAquis
     });
     this.coletaToolStripMenuItem.Name = "coletaToolStripMenuItem";
     this.coletaToolStripMenuItem.Size = new System.Drawing.Size(53, 20);
     this.coletaToolStripMenuItem.Text = "Coleta";
     //
     // btStartAquis
     //
     this.btStartAquis.Enabled = false;
     this.btStartAquis.Name    = "btStartAquis";
     this.btStartAquis.Size    = new System.Drawing.Size(192, 22);
     this.btStartAquis.Text    = "Iniciar Aquisição";
     this.btStartAquis.Click  += new System.EventHandler(this.btStartAquis_Click);
     //
     // btStopAquis
     //
     this.btStopAquis.Enabled = false;
     this.btStopAquis.Name    = "btStopAquis";
     this.btStopAquis.Size    = new System.Drawing.Size(192, 22);
     this.btStopAquis.Text    = "Interromper Aquisição";
     this.btStopAquis.Click  += new System.EventHandler(this.btStopAquis_Click);
     //
     // mudarDiretórioToolStripMenuItem
     //
     this.mudarDiretórioToolStripMenuItem.Name   = "mudarDiretórioToolStripMenuItem";
     this.mudarDiretórioToolStripMenuItem.Size   = new System.Drawing.Size(102, 20);
     this.mudarDiretórioToolStripMenuItem.Text   = "Mudar diretório";
     this.mudarDiretórioToolStripMenuItem.Click += new System.EventHandler(this.mudarDiretórioToolStripMenuItem_Click);
     //
     // abrirJogoToolStripMenuItem
     //
     this.abrirJogoToolStripMenuItem.Name   = "abrirJogoToolStripMenuItem";
     this.abrirJogoToolStripMenuItem.Size   = new System.Drawing.Size(73, 20);
     this.abrirJogoToolStripMenuItem.Text   = "Abrir Jogo";
     this.abrirJogoToolStripMenuItem.Click += new System.EventHandler(this.abrirJogoToolStripMenuItem_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.stConectar,
         this.toolStripStatusLabel2,
         this.st_aquis,
         this.toolStripStatusLabel1,
         this.lbLED
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 571);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Padding  = new System.Windows.Forms.Padding(1, 0, 10, 0);
     this.statusStrip1.Size     = new System.Drawing.Size(1016, 25);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // stConectar
     //
     this.stConectar.Image = global::ProjetoFinalIB1.Properties.Resources.disconnected;
     this.stConectar.Name  = "stConectar";
     this.stConectar.Size  = new System.Drawing.Size(140, 20);
     this.stConectar.Text  = "Status: Desconectado";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripStatusLabel2.Name         = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size         = new System.Drawing.Size(0, 20);
     this.toolStripStatusLabel2.Text         = "toolStripStatusLabel2";
     //
     // st_aquis
     //
     this.st_aquis.Image = global::ProjetoFinalIB1.Properties.Resources.disconnected;
     this.st_aquis.Name  = "st_aquis";
     this.st_aquis.Size  = new System.Drawing.Size(105, 20);
     this.st_aquis.Text  = "Não coletando";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(71, 20);
     this.toolStripStatusLabel1.Text = "Frequência: ";
     //
     // lbLED
     //
     this.lbLED.Name = "lbLED";
     this.lbLED.Size = new System.Drawing.Size(13, 20);
     this.lbLED.Text = "0";
     //
     // timerPortas
     //
     this.timerPortas.Enabled  = true;
     this.timerPortas.Interval = 1000;
     this.timerPortas.Tick    += new System.EventHandler(this.timerPortas_Tick);
     //
     // chart1
     //
     chartArea3.AxisX.Maximum = 5D;
     chartArea3.AxisX.Minimum = 0D;
     stripLine2.BorderColor   = System.Drawing.Color.Silver;
     stripLine2.Interval      = 0.5D;
     chartArea3.AxisX.StripLines.Add(stripLine2);
     chartArea3.Name = "ChartArea1";
     chartArea4.Name = "ChartArea2";
     this.chart1.ChartAreas.Add(chartArea3);
     this.chart1.ChartAreas.Add(chartArea4);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend2.Name     = "Legend1";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location = new System.Drawing.Point(0, 24);
     this.chart1.Margin   = new System.Windows.Forms.Padding(2);
     this.chart1.Name     = "chart1";
     series4.ChartArea    = "ChartArea1";
     series4.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
     series4.Color        = System.Drawing.Color.Navy;
     series4.Legend       = "Legend1";
     series4.Name         = "EEG";
     series5.BorderWidth  = 2;
     series5.ChartArea    = "ChartArea1";
     series5.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
     series5.Color        = System.Drawing.Color.Chartreuse;
     series5.Legend       = "Legend1";
     series5.Name         = "Trigger";
     series6.ChartArea    = "ChartArea2";
     series6.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
     series6.Legend       = "Legend1";
     series6.Name         = "Sinal Filtrado";
     this.chart1.Series.Add(series4);
     this.chart1.Series.Add(series5);
     this.chart1.Series.Add(series6);
     this.chart1.Size     = new System.Drawing.Size(1016, 547);
     this.chart1.TabIndex = 3;
     this.chart1.Text     = "chart1";
     //
     // analiseDeDadosToolStripMenuItem
     //
     this.analiseDeDadosToolStripMenuItem.Name   = "analiseDeDadosToolStripMenuItem";
     this.analiseDeDadosToolStripMenuItem.Size   = new System.Drawing.Size(109, 20);
     this.analiseDeDadosToolStripMenuItem.Text   = "Analise de Dados";
     this.analiseDeDadosToolStripMenuItem.Click += new System.EventHandler(this.analiseDeDadosToolStripMenuItem_Click);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1016, 596);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Margin        = new System.Windows.Forms.Padding(2);
     this.Name          = "Form1";
     this.Text          = "EEG Data";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.ResultChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.ResultChart)).BeginInit();
     this.SuspendLayout();
     //
     // ResultChart
     //
     chartArea1.AxisX.ArrowStyle          = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Lines;
     chartArea1.AxisX.Enabled             = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX.LabelStyle.Interval = 0D;
     chartArea1.AxisX.MinorGrid.Enabled   = true;
     chartArea1.AxisX.MinorGrid.LineColor = System.Drawing.Color.Silver;
     stripLine1.BackColor   = System.Drawing.Color.Red;
     stripLine1.BorderColor = System.Drawing.Color.Black;
     stripLine1.BorderWidth = 2;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.Title                = "Mz [kNm]";
     chartArea1.AxisX2.Crossing            = 0D;
     chartArea1.AxisX2.Enabled             = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea1.AxisX2.MinorGrid.Enabled   = true;
     chartArea1.AxisX2.MinorGrid.LineColor = System.Drawing.Color.Silver;
     chartArea1.AxisX2.Title               = "[kNm]";
     chartArea1.AxisY.ArrowStyle           = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Lines;
     chartArea1.AxisY.Crossing             = 0D;
     chartArea1.AxisY.LabelStyle.Interval  = 0D;
     chartArea1.AxisY.MinorGrid.Enabled    = true;
     chartArea1.AxisY.MinorGrid.LineColor  = System.Drawing.Color.Silver;
     stripLine2.BorderColor                = System.Drawing.Color.Black;
     stripLine2.BorderWidth                = 2;
     chartArea1.AxisY.StripLines.Add(stripLine2);
     chartArea1.AxisY.Title = "N [kN]";
     chartArea1.Name        = "ChartAreaResults";
     this.ResultChart.ChartAreas.Add(chartArea1);
     this.ResultChart.Location = new System.Drawing.Point(1, -3);
     this.ResultChart.Name     = "ResultChart";
     series1.BorderWidth       = 2;
     series1.ChartArea         = "ChartAreaResults";
     series1.ChartType         = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Color             = System.Drawing.Color.Fuchsia;
     series1.Name = "Strength";
     this.ResultChart.Series.Add(series1);
     this.ResultChart.Size     = new System.Drawing.Size(499, 427);
     this.ResultChart.TabIndex = 18;
     this.ResultChart.Text     = "chart1";
     //
     // ChartForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(496, 419);
     this.Controls.Add(this.ResultChart);
     this.Name = "ChartForm";
     this.Text = "ChartForm";
     ((System.ComponentModel.ISupportInitialize)(this.ResultChart)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.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.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine4 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend2    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.metroTile1          = new MetroFramework.Controls.MetroTile();
     this.program             = new MetroFramework.Controls.MetroTabControl();
     this.TabTabu             = new MetroFramework.Controls.MetroTabPage();
     this.tabTabuChart        = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.sizeTabu            = new System.Windows.Forms.NumericUpDown();
     this.metroLabel9         = new MetroFramework.Controls.MetroLabel();
     this.cadenceTabu         = new System.Windows.Forms.NumericUpDown();
     this.metroLabel8         = new MetroFramework.Controls.MetroLabel();
     this.iterPerRestartRange = new System.Windows.Forms.NumericUpDown();
     this.metroLabel6         = new MetroFramework.Controls.MetroLabel();
     this.bestHillClimbing    = new MetroFramework.Controls.MetroLabel();
     this.metroLabel7         = new MetroFramework.Controls.MetroLabel();
     this.metroLabel5         = new MetroFramework.Controls.MetroLabel();
     this.timerLabel          = new MetroFramework.Controls.MetroLabel();
     this.computing           = new MetroFramework.Controls.MetroLabel();
     this.sizeSolutionTabu    = new MetroFramework.Controls.MetroLabel();
     this.sizeElements        = new MetroFramework.Controls.MetroLabel();
     this.metroLabel4         = new MetroFramework.Controls.MetroLabel();
     this.metroLabel3         = new MetroFramework.Controls.MetroLabel();
     this.metroLabel2         = new MetroFramework.Controls.MetroLabel();
     this.progressBar         = new MetroFramework.Controls.MetroProgressBar();
     this.computeButton       = new MetroFramework.Controls.MetroButton();
     this.rangeRestart        = new System.Windows.Forms.NumericUpDown();
     this.metroLabel1         = new MetroFramework.Controls.MetroLabel();
     this.SolutionChart       = new MetroFramework.Controls.MetroTabPage();
     this.SaveButton          = new MetroFramework.Controls.MetroButton();
     this.solutionGrid        = new MetroFramework.Controls.MetroGrid();
     this.tabSolChart         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.program.SuspendLayout();
     this.TabTabu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTabuChart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sizeTabu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cadenceTabu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iterPerRestartRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rangeRestart)).BeginInit();
     this.SolutionChart.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.solutionGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabSolChart)).BeginInit();
     this.SuspendLayout();
     //
     // metroTile1
     //
     this.metroTile1.ActiveControl = null;
     this.metroTile1.Location      = new System.Drawing.Point(1, 1);
     this.metroTile1.Name          = "metroTile1";
     this.metroTile1.Size          = new System.Drawing.Size(1077, 39);
     this.metroTile1.TabIndex      = 4;
     this.metroTile1.Text          = "Algorytm właściwy - Tabu Search";
     this.metroTile1.UseSelectable = true;
     //
     // program
     //
     this.program.Controls.Add(this.TabTabu);
     this.program.Controls.Add(this.SolutionChart);
     this.program.FontWeight    = MetroFramework.MetroTabControlWeight.Regular;
     this.program.Location      = new System.Drawing.Point(3, 46);
     this.program.Name          = "program";
     this.program.SelectedIndex = 0;
     this.program.Size          = new System.Drawing.Size(1072, 550);
     this.program.TabIndex      = 65;
     this.program.UseSelectable = true;
     //
     // TabTabu
     //
     this.TabTabu.Controls.Add(this.tabTabuChart);
     this.TabTabu.Controls.Add(this.sizeTabu);
     this.TabTabu.Controls.Add(this.metroLabel9);
     this.TabTabu.Controls.Add(this.cadenceTabu);
     this.TabTabu.Controls.Add(this.metroLabel8);
     this.TabTabu.Controls.Add(this.iterPerRestartRange);
     this.TabTabu.Controls.Add(this.metroLabel6);
     this.TabTabu.Controls.Add(this.bestHillClimbing);
     this.TabTabu.Controls.Add(this.metroLabel7);
     this.TabTabu.Controls.Add(this.metroLabel5);
     this.TabTabu.Controls.Add(this.timerLabel);
     this.TabTabu.Controls.Add(this.computing);
     this.TabTabu.Controls.Add(this.sizeSolutionTabu);
     this.TabTabu.Controls.Add(this.sizeElements);
     this.TabTabu.Controls.Add(this.metroLabel4);
     this.TabTabu.Controls.Add(this.metroLabel3);
     this.TabTabu.Controls.Add(this.metroLabel2);
     this.TabTabu.Controls.Add(this.progressBar);
     this.TabTabu.Controls.Add(this.computeButton);
     this.TabTabu.Controls.Add(this.rangeRestart);
     this.TabTabu.Controls.Add(this.metroLabel1);
     this.TabTabu.HorizontalScrollbarBarColor         = true;
     this.TabTabu.HorizontalScrollbarHighlightOnWheel = false;
     this.TabTabu.HorizontalScrollbarSize             = 10;
     this.TabTabu.Location = new System.Drawing.Point(4, 38);
     this.TabTabu.Name     = "TabTabu";
     this.TabTabu.Size     = new System.Drawing.Size(1064, 508);
     this.TabTabu.TabIndex = 0;
     this.TabTabu.Text     = "Ustawienia Tabu ";
     this.TabTabu.VerticalScrollbarBarColor         = true;
     this.TabTabu.VerticalScrollbarHighlightOnWheel = false;
     this.TabTabu.VerticalScrollbarSize             = 10;
     //
     // tabTabuChart
     //
     this.tabTabuChart.BackSecondaryColor            = System.Drawing.Color.Gray;
     this.tabTabuChart.BorderlineColor               = System.Drawing.SystemColors.InactiveBorder;
     this.tabTabuChart.BorderSkin.BackSecondaryColor = System.Drawing.Color.White;
     this.tabTabuChart.BorderSkin.BorderColor        = System.Drawing.Color.LightGray;
     this.tabTabuChart.BorderSkin.BorderDashStyle    = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     this.tabTabuChart.BorderSkin.PageColor          = System.Drawing.Color.Transparent;
     chartArea1.AxisX.InterlacedColor = System.Drawing.Color.Transparent;
     stripLine1.BorderColor           = System.Drawing.Color.LightGray;
     stripLine1.Interval = 10D;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX2.LineColor      = System.Drawing.Color.Gray;
     chartArea1.AxisY.InterlacedColor = System.Drawing.Color.Transparent;
     chartArea1.AxisY.IsInterlaced    = true;
     chartArea1.AxisY.LineWidth       = 2;
     stripLine2.BorderColor           = System.Drawing.Color.LightGray;
     stripLine2.Interval = 5D;
     chartArea1.AxisY.StripLines.Add(stripLine2);
     chartArea1.AxisY2.LineColor   = System.Drawing.Color.Gray;
     chartArea1.BackColor          = System.Drawing.Color.WhiteSmoke;
     chartArea1.BackHatchStyle     = System.Windows.Forms.DataVisualization.Charting.ChartHatchStyle.Cross;
     chartArea1.BackSecondaryColor = System.Drawing.Color.White;
     chartArea1.BorderColor        = System.Drawing.Color.Transparent;
     chartArea1.BorderDashStyle    = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDot;
     chartArea1.Name        = "ChartArea1";
     chartArea1.ShadowColor = System.Drawing.Color.Silver;
     this.tabTabuChart.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.tabTabuChart.Legends.Add(legend1);
     this.tabTabuChart.Location            = new System.Drawing.Point(-4, 227);
     this.tabTabuChart.Name                = "tabTabuChart";
     this.tabTabuChart.Palette             = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     this.tabTabuChart.PaletteCustomColors = new System.Drawing.Color[] {
         System.Drawing.Color.Crimson
     };
     series1.BackSecondaryColor = System.Drawing.Color.Gainsboro;
     series1.BorderColor        = System.Drawing.Color.Transparent;
     series1.BorderWidth        = 3;
     series1.ChartArea          = "ChartArea1";
     series1.ChartType          = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Color  = System.Drawing.Color.Crimson;
     series1.Legend = "Legend1";
     series1.Name   = "Series1";
     this.tabTabuChart.Series.Add(series1);
     this.tabTabuChart.Size     = new System.Drawing.Size(1060, 293);
     this.tabTabuChart.TabIndex = 86;
     //
     // sizeTabu
     //
     this.sizeTabu.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.sizeTabu.BackColor      = System.Drawing.SystemColors.ButtonHighlight;
     this.sizeTabu.Cursor         = System.Windows.Forms.Cursors.Hand;
     this.sizeTabu.Font           = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.sizeTabu.Location       = new System.Drawing.Point(364, 81);
     this.sizeTabu.Minimum        = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.sizeTabu.Name               = "sizeTabu";
     this.sizeTabu.Size               = new System.Drawing.Size(75, 23);
     this.sizeTabu.TabIndex           = 85;
     this.sizeTabu.TextAlign          = System.Windows.Forms.HorizontalAlignment.Center;
     this.sizeTabu.ThousandsSeparator = true;
     this.sizeTabu.Value              = new decimal(new int[] {
         20,
         0,
         0,
         0
     });
     //
     // metroLabel9
     //
     this.metroLabel9.AutoSize = true;
     this.metroLabel9.Location = new System.Drawing.Point(65, 81);
     this.metroLabel9.Name     = "metroLabel9";
     this.metroLabel9.Size     = new System.Drawing.Size(293, 19);
     this.metroLabel9.TabIndex = 84;
     this.metroLabel9.Text     = "Wielkosc listy tabu (% aktualnego rozwiązania P):";
     //
     // cadenceTabu
     //
     this.cadenceTabu.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cadenceTabu.BackColor      = System.Drawing.SystemColors.ButtonHighlight;
     this.cadenceTabu.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cadenceTabu.Cursor         = System.Windows.Forms.Cursors.Hand;
     this.cadenceTabu.Font           = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.cadenceTabu.Location       = new System.Drawing.Point(135, 116);
     this.cadenceTabu.Maximum        = new decimal(new int[] {
         100000,
         0,
         0,
         0
     });
     this.cadenceTabu.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.cadenceTabu.Name      = "cadenceTabu";
     this.cadenceTabu.Size      = new System.Drawing.Size(75, 23);
     this.cadenceTabu.TabIndex  = 83;
     this.cadenceTabu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.cadenceTabu.Value     = new decimal(new int[] {
         5,
         0,
         0,
         0
     });
     //
     // metroLabel8
     //
     this.metroLabel8.AutoSize = true;
     this.metroLabel8.Location = new System.Drawing.Point(65, 120);
     this.metroLabel8.Name     = "metroLabel8";
     this.metroLabel8.Size     = new System.Drawing.Size(64, 19);
     this.metroLabel8.TabIndex = 82;
     this.metroLabel8.Text     = "Kadencja:";
     //
     // iterPerRestartRange
     //
     this.iterPerRestartRange.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.iterPerRestartRange.BackColor      = System.Drawing.SystemColors.ButtonHighlight;
     this.iterPerRestartRange.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this.iterPerRestartRange.Cursor         = System.Windows.Forms.Cursors.Hand;
     this.iterPerRestartRange.Font           = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.iterPerRestartRange.Location       = new System.Drawing.Point(409, 32);
     this.iterPerRestartRange.Maximum        = new decimal(new int[] {
         100000,
         0,
         0,
         0
     });
     this.iterPerRestartRange.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.iterPerRestartRange.Name      = "iterPerRestartRange";
     this.iterPerRestartRange.Size      = new System.Drawing.Size(75, 23);
     this.iterPerRestartRange.TabIndex  = 81;
     this.iterPerRestartRange.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.iterPerRestartRange.Value     = new decimal(new int[] {
         25,
         0,
         0,
         0
     });
     //
     // metroLabel6
     //
     this.metroLabel6.AutoSize = true;
     this.metroLabel6.Location = new System.Drawing.Point(295, 36);
     this.metroLabel6.Name     = "metroLabel6";
     this.metroLabel6.Size     = new System.Drawing.Size(110, 19);
     this.metroLabel6.TabIndex = 80;
     this.metroLabel6.Text     = "Iteracji na restart:";
     //
     // bestHillClimbing
     //
     this.bestHillClimbing.AutoSize = true;
     this.bestHillClimbing.Location = new System.Drawing.Point(929, 123);
     this.bestHillClimbing.Name     = "bestHillClimbing";
     this.bestHillClimbing.Size     = new System.Drawing.Size(16, 19);
     this.bestHillClimbing.TabIndex = 79;
     this.bestHillClimbing.Text     = "0";
     //
     // metroLabel7
     //
     this.metroLabel7.AutoSize = true;
     this.metroLabel7.Location = new System.Drawing.Point(580, 123);
     this.metroLabel7.Name     = "metroLabel7";
     this.metroLabel7.Size     = new System.Drawing.Size(334, 19);
     this.metroLabel7.TabIndex = 78;
     this.metroLabel7.Text     = "Liczba elementów rozwiązania wstępnego HillClimbing: ";
     //
     // metroLabel5
     //
     this.metroLabel5.AutoSize = true;
     this.metroLabel5.Location = new System.Drawing.Point(748, 188);
     this.metroLabel5.Name     = "metroLabel5";
     this.metroLabel5.Size     = new System.Drawing.Size(49, 19);
     this.metroLabel5.TabIndex = 77;
     this.metroLabel5.Text     = "sekund";
     //
     // timerLabel
     //
     this.timerLabel.AutoSize = true;
     this.timerLabel.Location = new System.Drawing.Point(693, 188);
     this.timerLabel.Name     = "timerLabel";
     this.timerLabel.Size     = new System.Drawing.Size(0, 0);
     this.timerLabel.TabIndex = 76;
     //
     // computing
     //
     this.computing.AutoSize = true;
     this.computing.Location = new System.Drawing.Point(755, 13);
     this.computing.Name     = "computing";
     this.computing.Size     = new System.Drawing.Size(103, 19);
     this.computing.TabIndex = 75;
     this.computing.Text     = "Postęp obliczeń:";
     //
     // sizeSolutionTabu
     //
     this.sizeSolutionTabu.AutoSize = true;
     this.sizeSolutionTabu.Location = new System.Drawing.Point(929, 153);
     this.sizeSolutionTabu.Name     = "sizeSolutionTabu";
     this.sizeSolutionTabu.Size     = new System.Drawing.Size(16, 19);
     this.sizeSolutionTabu.TabIndex = 74;
     this.sizeSolutionTabu.Text     = "0";
     //
     // sizeElements
     //
     this.sizeElements.AutoSize = true;
     this.sizeElements.Location = new System.Drawing.Point(800, 92);
     this.sizeElements.Name     = "sizeElements";
     this.sizeElements.Size     = new System.Drawing.Size(16, 19);
     this.sizeElements.TabIndex = 73;
     this.sizeElements.Text     = "0";
     //
     // metroLabel4
     //
     this.metroLabel4.AutoSize = true;
     this.metroLabel4.Location = new System.Drawing.Point(582, 188);
     this.metroLabel4.Name     = "metroLabel4";
     this.metroLabel4.Size     = new System.Drawing.Size(94, 19);
     this.metroLabel4.TabIndex = 72;
     this.metroLabel4.Text     = "Czas działania:";
     //
     // metroLabel3
     //
     this.metroLabel3.AutoSize = true;
     this.metroLabel3.Location = new System.Drawing.Point(580, 153);
     this.metroLabel3.Name     = "metroLabel3";
     this.metroLabel3.Size     = new System.Drawing.Size(315, 19);
     this.metroLabel3.TabIndex = 71;
     this.metroLabel3.Text     = "Liczba elementów rozwiązania TabuSearch (max M): ";
     //
     // metroLabel2
     //
     this.metroLabel2.AutoSize = true;
     this.metroLabel2.Location = new System.Drawing.Point(580, 92);
     this.metroLabel2.Name     = "metroLabel2";
     this.metroLabel2.Size     = new System.Drawing.Size(205, 19);
     this.metroLabel2.TabIndex = 70;
     this.metroLabel2.Text     = "Liczba elementów w multizbiorze:";
     //
     // progressBar
     //
     this.progressBar.Location = new System.Drawing.Point(582, 41);
     this.progressBar.Maximum  = 1000;
     this.progressBar.Name     = "progressBar";
     this.progressBar.Size     = new System.Drawing.Size(426, 24);
     this.progressBar.TabIndex = 68;
     this.progressBar.Visible  = false;
     //
     // computeButton
     //
     this.computeButton.BackColor          = System.Drawing.Color.Crimson;
     this.computeButton.Location           = new System.Drawing.Point(233, 160);
     this.computeButton.Name               = "computeButton";
     this.computeButton.Size               = new System.Drawing.Size(113, 41);
     this.computeButton.TabIndex           = 67;
     this.computeButton.Text               = "Utwórz";
     this.computeButton.UseCustomBackColor = true;
     this.computeButton.UseSelectable      = true;
     this.computeButton.Click             += new System.EventHandler(this.computeButton_Click);
     //
     // rangeRestart
     //
     this.rangeRestart.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.rangeRestart.BackColor      = System.Drawing.SystemColors.ButtonHighlight;
     this.rangeRestart.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this.rangeRestart.Cursor         = System.Windows.Forms.Cursors.Hand;
     this.rangeRestart.Font           = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.rangeRestart.Location       = new System.Drawing.Point(177, 32);
     this.rangeRestart.Maximum        = new decimal(new int[] {
         100000,
         0,
         0,
         0
     });
     this.rangeRestart.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.rangeRestart.Name      = "rangeRestart";
     this.rangeRestart.Size      = new System.Drawing.Size(75, 23);
     this.rangeRestart.TabIndex  = 66;
     this.rangeRestart.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.rangeRestart.Value     = new decimal(new int[] {
         5,
         0,
         0,
         0
     });
     //
     // metroLabel1
     //
     this.metroLabel1.AutoSize = true;
     this.metroLabel1.Location = new System.Drawing.Point(64, 36);
     this.metroLabel1.Name     = "metroLabel1";
     this.metroLabel1.Size     = new System.Drawing.Size(107, 19);
     this.metroLabel1.TabIndex = 65;
     this.metroLabel1.Text     = "Liczba restartów:";
     //
     // SolutionChart
     //
     this.SolutionChart.Controls.Add(this.SaveButton);
     this.SolutionChart.Controls.Add(this.solutionGrid);
     this.SolutionChart.Controls.Add(this.tabSolChart);
     this.SolutionChart.HorizontalScrollbarBarColor         = true;
     this.SolutionChart.HorizontalScrollbarHighlightOnWheel = false;
     this.SolutionChart.HorizontalScrollbarSize             = 10;
     this.SolutionChart.Location = new System.Drawing.Point(4, 38);
     this.SolutionChart.Name     = "SolutionChart";
     this.SolutionChart.Size     = new System.Drawing.Size(1064, 508);
     this.SolutionChart.TabIndex = 1;
     this.SolutionChart.Text     = "Wynik i zapis";
     this.SolutionChart.VerticalScrollbarBarColor         = true;
     this.SolutionChart.VerticalScrollbarHighlightOnWheel = false;
     this.SolutionChart.VerticalScrollbarSize             = 10;
     //
     // SaveButton
     //
     this.SaveButton.BackColor          = System.Drawing.Color.Crimson;
     this.SaveButton.Cursor             = System.Windows.Forms.Cursors.Hand;
     this.SaveButton.ForeColor          = System.Drawing.SystemColors.ButtonHighlight;
     this.SaveButton.Location           = new System.Drawing.Point(930, 462);
     this.SaveButton.Name               = "SaveButton";
     this.SaveButton.Size               = new System.Drawing.Size(122, 43);
     this.SaveButton.TabIndex           = 88;
     this.SaveButton.Text               = "Zapis do pliku";
     this.SaveButton.UseCustomBackColor = true;
     this.SaveButton.UseCustomForeColor = true;
     this.SaveButton.UseSelectable      = true;
     this.SaveButton.Click             += new System.EventHandler(this.SaveButton_Click);
     //
     // solutionGrid
     //
     this.solutionGrid.AllowUserToResizeRows    = false;
     this.solutionGrid.BackgroundColor          = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.solutionGrid.BorderStyle              = System.Windows.Forms.BorderStyle.None;
     this.solutionGrid.CellBorderStyle          = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.solutionGrid.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle1.Alignment           = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle1.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor                = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle1.SelectionBackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(198)))), ((int)(((byte)(247)))));
     dataGridViewCellStyle1.SelectionForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle1.WrapMode                 = System.Windows.Forms.DataGridViewTriState.True;
     this.solutionGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.solutionGrid.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment                = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor                = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle2.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle2.ForeColor                = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(136)))), ((int)(((byte)(136)))));
     dataGridViewCellStyle2.SelectionBackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(198)))), ((int)(((byte)(247)))));
     dataGridViewCellStyle2.SelectionForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle2.WrapMode                 = System.Windows.Forms.DataGridViewTriState.False;
     this.solutionGrid.DefaultCellStyle              = dataGridViewCellStyle2;
     this.solutionGrid.EnableHeadersVisualStyles     = false;
     this.solutionGrid.Font                       = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.solutionGrid.GridColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.solutionGrid.Location                   = new System.Drawing.Point(13, 28);
     this.solutionGrid.Name                       = "solutionGrid";
     this.solutionGrid.RowHeadersBorderStyle      = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle3.Alignment             = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle3.Font                  = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle3.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle3.SelectionBackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(198)))), ((int)(((byte)(247)))));
     dataGridViewCellStyle3.SelectionForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle3.WrapMode              = System.Windows.Forms.DataGridViewTriState.True;
     this.solutionGrid.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.solutionGrid.RowHeadersWidthSizeMode    = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.solutionGrid.SelectionMode              = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.solutionGrid.Size                       = new System.Drawing.Size(185, 456);
     this.solutionGrid.TabIndex                   = 70;
     //
     // tabSolChart
     //
     this.tabSolChart.BackSecondaryColor            = System.Drawing.Color.Gray;
     this.tabSolChart.BorderlineColor               = System.Drawing.SystemColors.InactiveBorder;
     this.tabSolChart.BorderSkin.BackSecondaryColor = System.Drawing.Color.White;
     this.tabSolChart.BorderSkin.BorderColor        = System.Drawing.Color.LightGray;
     this.tabSolChart.BorderSkin.BorderDashStyle    = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     this.tabSolChart.BorderSkin.PageColor          = System.Drawing.Color.Transparent;
     chartArea2.AxisX.InterlacedColor               = System.Drawing.Color.Transparent;
     stripLine3.BorderColor = System.Drawing.Color.LightGray;
     stripLine3.Interval    = 10D;
     chartArea2.AxisX.StripLines.Add(stripLine3);
     chartArea2.AxisX2.LineColor      = System.Drawing.Color.Gray;
     chartArea2.AxisY.InterlacedColor = System.Drawing.Color.Transparent;
     chartArea2.AxisY.IsInterlaced    = true;
     chartArea2.AxisY.LineWidth       = 2;
     stripLine4.BorderColor           = System.Drawing.Color.LightGray;
     stripLine4.Interval = 5D;
     chartArea2.AxisY.StripLines.Add(stripLine4);
     chartArea2.AxisY2.LineColor   = System.Drawing.Color.Gray;
     chartArea2.BackColor          = System.Drawing.Color.WhiteSmoke;
     chartArea2.BackHatchStyle     = System.Windows.Forms.DataVisualization.Charting.ChartHatchStyle.Cross;
     chartArea2.BackSecondaryColor = System.Drawing.Color.White;
     chartArea2.BorderColor        = System.Drawing.Color.Transparent;
     chartArea2.BorderDashStyle    = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDot;
     chartArea2.Name        = "ChartArea1";
     chartArea2.ShadowColor = System.Drawing.Color.Silver;
     this.tabSolChart.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.tabSolChart.Legends.Add(legend2);
     this.tabSolChart.Location            = new System.Drawing.Point(166, 46);
     this.tabSolChart.Name                = "tabSolChart";
     this.tabSolChart.Palette             = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     this.tabSolChart.PaletteCustomColors = new System.Drawing.Color[] {
         System.Drawing.Color.Crimson
     };
     series2.BackSecondaryColor = System.Drawing.Color.Gainsboro;
     series2.BorderColor        = System.Drawing.Color.Transparent;
     series2.BorderWidth        = 3;
     series2.ChartArea          = "ChartArea1";
     series2.ChartType          = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series2.Color  = System.Drawing.Color.Crimson;
     series2.Legend = "Legend1";
     series2.Name   = "Series1";
     this.tabSolChart.Series.Add(series2);
     this.tabSolChart.Size     = new System.Drawing.Size(895, 398);
     this.tabSolChart.TabIndex = 2;
     //
     // Algo2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.program);
     this.Controls.Add(this.metroTile1);
     this.Name  = "Algo2";
     this.Size  = new System.Drawing.Size(1078, 604);
     this.Load += new System.EventHandler(this.Algo2_Load);
     this.program.ResumeLayout(false);
     this.TabTabu.ResumeLayout(false);
     this.TabTabu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTabuChart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sizeTabu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cadenceTabu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iterPerRestartRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rangeRestart)).EndInit();
     this.SolutionChart.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.solutionGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabSolChart)).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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.lvSite = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.panel2 = new System.Windows.Forms.Panel();
            this.lbtAddsite = new System.Windows.Forms.LinkLabel();
            this.lbtAddsiteall = new System.Windows.Forms.LinkLabel();
            this.lvSiteAll = new System.Windows.Forms.ListView();
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.panel3 = new System.Windows.Forms.Panel();
            this.lbtRemovesite = new System.Windows.Forms.LinkLabel();
            this.label2 = new System.Windows.Forms.Label();
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.lvProduct = new LQT.GUI.LQTListView();
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.panel4 = new System.Windows.Forms.Panel();
            this.panel6 = new System.Windows.Forms.Panel();
            this.lbtAddMultipro = new System.Windows.Forms.LinkLabel();
            this.lbtImport = new System.Windows.Forms.LinkLabel();
            this.lbtRemoveproduct = new System.Windows.Forms.LinkLabel();
            this.lbtAddproduct = new System.Windows.Forms.LinkLabel();
            this.lbtAddduration = new System.Windows.Forms.LinkLabel();
            this.label3 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtTotalpcount = new System.Windows.Forms.TextBox();
            this.txttotalsite = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.txtPcount = new System.Windows.Forms.TextBox();
            this.txtSitename = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.columnHeader11 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.panel1 = new System.Windows.Forms.Panel();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.lblMedian = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.lblDeviation = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.lblMean = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel3.SuspendLayout();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.panel4.SuspendLayout();
            this.panel6.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.BackColor = System.Drawing.Color.Transparent;
            this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.IsSplitterFixed = true;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
            this.splitContainer1.Size = new System.Drawing.Size(899, 484);
            this.splitContainer1.SplitterDistance = 222;
            this.splitContainer1.SplitterWidth = 6;
            this.splitContainer1.TabIndex = 1;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.lvSite, 0, 3);
            this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.lvSiteAll, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.panel3, 0, 2);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 4;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(220, 482);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // lvSite
            // 
            this.lvSite.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1});
            this.lvSite.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvSite.FullRowSelect = true;
            this.lvSite.GridLines = true;
            this.lvSite.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.lvSite.HideSelection = false;
            this.lvSite.Location = new System.Drawing.Point(3, 225);
            this.lvSite.MultiSelect = false;
            this.lvSite.Name = "lvSite";
            this.lvSite.Size = new System.Drawing.Size(214, 254);
            this.lvSite.TabIndex = 4;
            this.lvSite.UseCompatibleStateImageBehavior = false;
            this.lvSite.View = System.Windows.Forms.View.Details;
            this.lvSite.SelectedIndexChanged += new System.EventHandler(this.lvSite_SelectedIndexChanged);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Site Name";
            this.columnHeader1.Width = 208;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.lbtAddsite);
            this.panel2.Controls.Add(this.lbtAddsiteall);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 3);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(214, 19);
            this.panel2.TabIndex = 1;
            // 
            // lbtAddsite
            // 
            this.lbtAddsite.AutoSize = true;
            this.lbtAddsite.Enabled = false;
            this.lbtAddsite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddsite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddsite.Location = new System.Drawing.Point(141, 4);
            this.lbtAddsite.Name = "lbtAddsite";
            this.lbtAddsite.Size = new System.Drawing.Size(69, 13);
            this.lbtAddsite.TabIndex = 2;
            this.lbtAddsite.TabStop = true;
            this.lbtAddsite.Text = "Select Site";
            this.lbtAddsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddsite_LinkClicked);
            // 
            // lbtAddsiteall
            // 
            this.lbtAddsiteall.AutoSize = true;
            this.lbtAddsiteall.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddsiteall.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddsiteall.Location = new System.Drawing.Point(80, 4);
            this.lbtAddsiteall.Name = "lbtAddsiteall";
            this.lbtAddsiteall.Size = new System.Drawing.Size(61, 13);
            this.lbtAddsiteall.TabIndex = 2;
            this.lbtAddsiteall.TabStop = true;
            this.lbtAddsiteall.Text = "Select All";
            this.lbtAddsiteall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddsiteall_LinkClicked);
            // 
            // lvSiteAll
            // 
            this.lvSiteAll.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2});
            this.lvSiteAll.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvSiteAll.FullRowSelect = true;
            this.lvSiteAll.GridLines = true;
            this.lvSiteAll.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lvSiteAll.HideSelection = false;
            this.lvSiteAll.Location = new System.Drawing.Point(3, 28);
            this.lvSiteAll.Name = "lvSiteAll";
            this.lvSiteAll.Size = new System.Drawing.Size(214, 166);
            this.lvSiteAll.Sorting = System.Windows.Forms.SortOrder.Ascending;
            this.lvSiteAll.TabIndex = 3;
            this.lvSiteAll.UseCompatibleStateImageBehavior = false;
            this.lvSiteAll.View = System.Windows.Forms.View.Details;
            this.lvSiteAll.SelectedIndexChanged += new System.EventHandler(this.lvSiteAll_SelectedIndexChanged);
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "List of Sites";
            this.columnHeader2.Width = 208;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.lbtRemovesite);
            this.panel3.Controls.Add(this.label2);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(3, 200);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(214, 19);
            this.panel3.TabIndex = 5;
            // 
            // lbtRemovesite
            // 
            this.lbtRemovesite.AutoSize = true;
            this.lbtRemovesite.Enabled = false;
            this.lbtRemovesite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemovesite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemovesite.Location = new System.Drawing.Point(131, 5);
            this.lbtRemovesite.Name = "lbtRemovesite";
            this.lbtRemovesite.Size = new System.Drawing.Size(79, 13);
            this.lbtRemovesite.TabIndex = 1;
            this.lbtRemovesite.TabStop = true;
            this.lbtRemovesite.Text = "Remove Site";
            this.lbtRemovesite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemovesite_LinkClicked);
            // 
            // 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.Location = new System.Drawing.Point(5, 5);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(89, 13);
            this.label2.TabIndex = 0;
            this.label2.Text = "Selected Sites";
            // 
            // splitContainer2
            // 
            this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer2.Location = new System.Drawing.Point(0, 0);
            this.splitContainer2.Name = "splitContainer2";
            this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer2.Panel1
            // 
            this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel2);
            this.splitContainer2.Panel1.Controls.Add(this.splitter1);
            this.splitContainer2.Panel1.Controls.Add(this.panel4);
            // 
            // splitContainer2.Panel2
            // 
            this.splitContainer2.Panel2.Controls.Add(this.groupBox2);
            this.splitContainer2.Panel2.Controls.Add(this.groupBox1);
            this.splitContainer2.Size = new System.Drawing.Size(669, 482);
            this.splitContainer2.SplitterDistance = 384;
            this.splitContainer2.SplitterWidth = 6;
            this.splitContainer2.TabIndex = 1;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 1;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
            this.tableLayoutPanel2.Controls.Add(this.lvProduct, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 28);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(669, 356);
            this.tableLayoutPanel2.TabIndex = 11;
            // 
            // lvProduct
            // 
            this.lvProduct.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvProduct.FullRowSelect = true;
            this.lvProduct.GridLines = true;
            this.lvProduct.Location = new System.Drawing.Point(0, 0);
            this.lvProduct.Margin = new System.Windows.Forms.Padding(0);
            this.lvProduct.Name = "lvProduct";
            this.lvProduct.Size = new System.Drawing.Size(669, 356);
            this.lvProduct.TabIndex = 10;
            this.lvProduct.UseCompatibleStateImageBehavior = false;
            this.lvProduct.View = System.Windows.Forms.View.Details;
            this.lvProduct.SelectedIndexChanged += new System.EventHandler(this.lvProduct_SelectedIndexChanged);
            // 
            // splitter1
            // 
            this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitter1.Location = new System.Drawing.Point(0, 25);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(669, 3);
            this.splitter1.TabIndex = 9;
            this.splitter1.TabStop = false;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.panel6);
            this.panel4.Controls.Add(this.label3);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(669, 25);
            this.panel4.TabIndex = 8;
            // 
            // panel6
            // 
            this.panel6.Controls.Add(this.lbtAddMultipro);
            this.panel6.Controls.Add(this.lbtImport);
            this.panel6.Controls.Add(this.lbtRemoveproduct);
            this.panel6.Controls.Add(this.lbtAddproduct);
            this.panel6.Controls.Add(this.lbtAddduration);
            this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel6.Location = new System.Drawing.Point(53, 0);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(616, 25);
            this.panel6.TabIndex = 4;
            // 
            // lbtAddMultipro
            // 
            this.lbtAddMultipro.AutoSize = true;
            this.lbtAddMultipro.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddMultipro.ForeColor = System.Drawing.Color.Navy;
            this.lbtAddMultipro.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddMultipro.Location = new System.Drawing.Point(112, 6);
            this.lbtAddMultipro.Name = "lbtAddMultipro";
            this.lbtAddMultipro.Size = new System.Drawing.Size(134, 13);
            this.lbtAddMultipro.TabIndex = 4;
            this.lbtAddMultipro.TabStop = true;
            this.lbtAddMultipro.Text = "Add Product and Sites";
            this.lbtAddMultipro.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddMultipro_LinkClicked);
            // 
            // lbtImport
            // 
            this.lbtImport.AutoSize = true;
            this.lbtImport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtImport.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtImport.Location = new System.Drawing.Point(-4, 6);
            this.lbtImport.Name = "lbtImport";
            this.lbtImport.Size = new System.Drawing.Size(118, 13);
            this.lbtImport.TabIndex = 3;
            this.lbtImport.TabStop = true;
            this.lbtImport.Text = "Import Consumption";
            this.lbtImport.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtImport_LinkClicked);
            // 
            // lbtRemoveproduct
            // 
            this.lbtRemoveproduct.AutoSize = true;
            this.lbtRemoveproduct.Enabled = false;
            this.lbtRemoveproduct.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemoveproduct.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemoveproduct.Location = new System.Drawing.Point(485, 6);
            this.lbtRemoveproduct.Name = "lbtRemoveproduct";
            this.lbtRemoveproduct.Size = new System.Drawing.Size(129, 13);
            this.lbtRemoveproduct.TabIndex = 0;
            this.lbtRemoveproduct.TabStop = true;
            this.lbtRemoveproduct.Text = "Remove Consumption";
            this.lbtRemoveproduct.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemoveproduct_LinkClicked);
            // 
            // lbtAddproduct
            // 
            this.lbtAddproduct.AutoSize = true;
            this.lbtAddproduct.Enabled = false;
            this.lbtAddproduct.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddproduct.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddproduct.Location = new System.Drawing.Point(246, 6);
            this.lbtAddproduct.Name = "lbtAddproduct";
            this.lbtAddproduct.Size = new System.Drawing.Size(95, 13);
            this.lbtAddproduct.TabIndex = 0;
            this.lbtAddproduct.TabStop = true;
            this.lbtAddproduct.Text = "Add By Product";
            this.lbtAddproduct.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddproduct_LinkClicked);
            // 
            // lbtAddduration
            // 
            this.lbtAddduration.AutoSize = true;
            this.lbtAddduration.Enabled = false;
            this.lbtAddduration.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddduration.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddduration.Location = new System.Drawing.Point(342, 6);
            this.lbtAddduration.Name = "lbtAddduration";
            this.lbtAddduration.Size = new System.Drawing.Size(145, 13);
            this.lbtAddduration.TabIndex = 2;
            this.lbtAddduration.TabStop = true;
            this.lbtAddduration.Text = "Add Actual Consumption";
            this.lbtAddduration.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddduration_LinkClicked);
            // 
            // 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.Location = new System.Drawing.Point(2, 6);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(127, 13);
            this.label3.TabIndex = 1;
            this.label3.Text = "Product Consumption";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.txtTotalpcount);
            this.groupBox2.Controls.Add(this.txttotalsite);
            this.groupBox2.Controls.Add(this.label9);
            this.groupBox2.Controls.Add(this.label8);
            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Right;
            this.groupBox2.Location = new System.Drawing.Point(417, 0);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(252, 92);
            this.groupBox2.TabIndex = 7;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Forecast summary";
            // 
            // txtTotalpcount
            // 
            this.txtTotalpcount.BackColor = System.Drawing.SystemColors.Info;
            this.txtTotalpcount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTotalpcount.Enabled = false;
            this.txtTotalpcount.Location = new System.Drawing.Point(140, 43);
            this.txtTotalpcount.Name = "txtTotalpcount";
            this.txtTotalpcount.ReadOnly = true;
            this.txtTotalpcount.Size = new System.Drawing.Size(100, 20);
            this.txtTotalpcount.TabIndex = 12;
            // 
            // txttotalsite
            // 
            this.txttotalsite.BackColor = System.Drawing.SystemColors.Info;
            this.txttotalsite.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txttotalsite.Enabled = false;
            this.txttotalsite.Location = new System.Drawing.Point(140, 20);
            this.txttotalsite.Name = "txttotalsite";
            this.txttotalsite.ReadOnly = true;
            this.txttotalsite.Size = new System.Drawing.Size(100, 20);
            this.txttotalsite.TabIndex = 11;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(12, 48);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(118, 14);
            this.label9.TabIndex = 10;
            this.label9.Text = "Total Product Count:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(12, 25);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(67, 14);
            this.label8.TabIndex = 9;
            this.label8.Text = "Total Sites:";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.txtPcount);
            this.groupBox1.Controls.Add(this.txtSitename);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(346, 92);
            this.groupBox1.TabIndex = 6;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Site summary";
            // 
            // txtPcount
            // 
            this.txtPcount.BackColor = System.Drawing.SystemColors.Info;
            this.txtPcount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPcount.Enabled = false;
            this.txtPcount.Location = new System.Drawing.Point(99, 44);
            this.txtPcount.Name = "txtPcount";
            this.txtPcount.ReadOnly = true;
            this.txtPcount.Size = new System.Drawing.Size(100, 20);
            this.txtPcount.TabIndex = 8;
            // 
            // txtSitename
            // 
            this.txtSitename.BackColor = System.Drawing.SystemColors.Info;
            this.txtSitename.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSitename.Enabled = false;
            this.txtSitename.Location = new System.Drawing.Point(99, 21);
            this.txtSitename.Name = "txtSitename";
            this.txtSitename.ReadOnly = true;
            this.txtSitename.Size = new System.Drawing.Size(230, 20);
            this.txtSitename.TabIndex = 7;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(10, 27);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(68, 14);
            this.label4.TabIndex = 5;
            this.label4.Text = "Active Site:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(10, 50);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(89, 14);
            this.label6.TabIndex = 6;
            this.label6.Text = "Product Count:";
            // 
            // columnHeader11
            // 
            this.columnHeader11.Text = "Reporting Period";
            this.columnHeader11.Width = 114;
            // 
            // columnHeader10
            // 
            this.columnHeader10.Text = "Amount Used";
            this.columnHeader10.Width = 80;
            // 
            // columnHeader8
            // 
            this.columnHeader8.Text = "Stock Out";
            // 
            // columnHeader9
            // 
            this.columnHeader9.Text = "Adjusted";
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Note";
            this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.columnHeader3.Width = 100;
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.panel1.Controls.Add(this.chart1);
            this.panel1.Controls.Add(this.lblMedian);
            this.panel1.Controls.Add(this.label7);
            this.panel1.Controls.Add(this.lblDeviation);
            this.panel1.Controls.Add(this.label11);
            this.panel1.Controls.Add(this.lblMean);
            this.panel1.Controls.Add(this.label13);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(404, 3);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(262, 234);
            this.panel1.TabIndex = 11;
            // 
            // chart1
            // 
            this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(223)))), ((int)(((byte)(193)))));
            this.chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chart1.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(64)))), ((int)(((byte)(1)))));
            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.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisX.LabelStyle.Interval = 0D;
            chartArea1.AxisX.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisX.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorGrid.Interval = 0D;
            chartArea1.AxisX.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisX.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorTickMark.Interval = 0D;
            chartArea1.AxisX.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisX.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisX2.LabelStyle.Interval = 0D;
            chartArea1.AxisX2.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisX2.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorGrid.Interval = 0D;
            chartArea1.AxisX2.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisX2.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorTickMark.Interval = 0D;
            chartArea1.AxisX2.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisX2.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisY.LabelStyle.Interval = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorGrid.Enabled = false;
            chartArea1.AxisY.MajorGrid.Interval = 0D;
            chartArea1.AxisY.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisY.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorTickMark.Interval = 0D;
            chartArea1.AxisY.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(241)))), ((int)(((byte)(185)))), ((int)(((byte)(168)))));
            stripLine1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine1.IntervalOffset = 20D;
            stripLine1.StripWidth = 50D;
            stripLine1.Text = "Standard Deviation";
            stripLine1.TextLineAlignment = System.Drawing.StringAlignment.Far;
            stripLine2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65)))));
            stripLine2.BorderWidth = 2;
            stripLine2.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine2.IntervalOffset = 40D;
            stripLine2.Text = "Mean";
            stripLine2.TextLineAlignment = System.Drawing.StringAlignment.Far;
            stripLine3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(64)))), ((int)(((byte)(10)))));
            stripLine3.BorderWidth = 2;
            stripLine3.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine3.IntervalOffset = 50D;
            stripLine3.Text = "Median";
            stripLine3.TextAlignment = System.Drawing.StringAlignment.Near;
            stripLine3.TextLineAlignment = System.Drawing.StringAlignment.Far;
            chartArea1.AxisY.StripLines.Add(stripLine1);
            chartArea1.AxisY.StripLines.Add(stripLine2);
            chartArea1.AxisY.StripLines.Add(stripLine3);
            chartArea1.AxisY2.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisY2.LabelStyle.Interval = 0D;
            chartArea1.AxisY2.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisY2.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorGrid.Interval = 0D;
            chartArea1.AxisY2.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisY2.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorTickMark.Interval = 0D;
            chartArea1.AxisY2.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisY2.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.BackColor = System.Drawing.Color.Ivory;
            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.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea1.Name = "Default";
            chartArea1.ShadowColor = System.Drawing.Color.Transparent;
            this.chart1.ChartAreas.Add(chartArea1);
            this.chart1.Dock = System.Windows.Forms.DockStyle.Top;
            legend1.Alignment = System.Drawing.StringAlignment.Far;
            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";
            legend1.Position.Auto = false;
            legend1.Position.Height = 15F;
            legend1.Position.Width = 30F;
            legend1.Position.X = 63F;
            legend1.Position.Y = 5F;
            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.BorderWidth = 2;
            series1.ChartArea = "Default";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.CustomProperties = "LabelStyle=\"down\"";
            series1.Legend = "Default";
            series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series1.Name = "Series1";
            series1.ShadowOffset = 1;
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(262, 238);
            this.chart1.TabIndex = 26;
            title1.Name = "Title1";
            title1.Text = "Title";
            this.chart1.Titles.Add(title1);
            // 
            // lblMedian
            // 
            this.lblMedian.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblMedian.Location = new System.Drawing.Point(117, 287);
            this.lblMedian.Name = "lblMedian";
            this.lblMedian.Size = new System.Drawing.Size(60, 20);
            this.lblMedian.TabIndex = 25;
            this.lblMedian.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.Black;
            this.label7.Location = new System.Drawing.Point(17, 287);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(94, 23);
            this.label7.TabIndex = 24;
            this.label7.Text = "Median:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblDeviation
            // 
            this.lblDeviation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblDeviation.Location = new System.Drawing.Point(117, 264);
            this.lblDeviation.Name = "lblDeviation";
            this.lblDeviation.Size = new System.Drawing.Size(60, 20);
            this.lblDeviation.TabIndex = 23;
            this.lblDeviation.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.Black;
            this.label11.Location = new System.Drawing.Point(10, 264);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(101, 23);
            this.label11.TabIndex = 22;
            this.label11.Text = "Standard Deviation:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblMean
            // 
            this.lblMean.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblMean.Location = new System.Drawing.Point(117, 241);
            this.lblMean.Name = "lblMean";
            this.lblMean.Size = new System.Drawing.Size(60, 20);
            this.lblMean.TabIndex = 21;
            this.lblMean.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.Black;
            this.label13.Location = new System.Drawing.Point(10, 241);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(101, 23);
            this.label13.TabIndex = 20;
            this.label13.Text = "Mean:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Instrument Downtime";
            this.columnHeader4.Width = 112;
            // 
            // CDataUsage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.Controls.Add(this.splitContainer1);
            this.Name = "CDataUsage";
            this.Size = new System.Drawing.Size(899, 484);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel2.ResumeLayout(false);
            this.splitContainer2.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.panel6.ResumeLayout(false);
            this.panel6.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);

        }
Beispiel #15
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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title     title1     = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.treePayees      = new System.Windows.Forms.TreeView();
     this.metroPanel1     = new MetroFramework.Controls.MetroPanel();
     this.chHistory       = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.edtID           = new MetroFramework.Controls.MetroTextBox();
     this.edtType         = new MetroFramework.Controls.MetroTextBox();
     this.btnOK           = new MetroFramework.Controls.MetroTile();
     this.metroLabel1     = new MetroFramework.Controls.MetroLabel();
     this.edtName         = new MetroFramework.Controls.MetroTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.metroPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chHistory)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(20, 60);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.treePayees);
     this.splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(5);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.splitContainer1.Panel2.Controls.Add(this.metroPanel1);
     this.splitContainer1.Panel2.Controls.Add(this.edtID);
     this.splitContainer1.Panel2.Controls.Add(this.edtType);
     this.splitContainer1.Panel2.Controls.Add(this.btnOK);
     this.splitContainer1.Panel2.Controls.Add(this.metroLabel1);
     this.splitContainer1.Panel2.Controls.Add(this.edtName);
     this.splitContainer1.Size             = new System.Drawing.Size(713, 484);
     this.splitContainer1.SplitterDistance = 250;
     this.splitContainer1.TabIndex         = 1;
     //
     // treePayees
     //
     this.treePayees.BackColor         = System.Drawing.Color.Gray;
     this.treePayees.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.treePayees.Font              = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treePayees.Location          = new System.Drawing.Point(5, 5);
     this.treePayees.Margin            = new System.Windows.Forms.Padding(5);
     this.treePayees.Name              = "treePayees";
     this.treePayees.Size              = new System.Drawing.Size(240, 474);
     this.treePayees.TabIndex          = 0;
     this.treePayees.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.treePayees_MouseDoubleClick);
     //
     // metroPanel1
     //
     this.metroPanel1.Controls.Add(this.chHistory);
     this.metroPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.metroPanel1.HorizontalScrollbarBarColor         = true;
     this.metroPanel1.HorizontalScrollbarHighlightOnWheel = false;
     this.metroPanel1.HorizontalScrollbarSize             = 10;
     this.metroPanel1.Location = new System.Drawing.Point(0, 297);
     this.metroPanel1.Name     = "metroPanel1";
     this.metroPanel1.Size     = new System.Drawing.Size(459, 187);
     this.metroPanel1.TabIndex = 13;
     this.metroPanel1.VerticalScrollbarBarColor         = true;
     this.metroPanel1.VerticalScrollbarHighlightOnWheel = false;
     this.metroPanel1.VerticalScrollbarSize             = 10;
     //
     // chHistory
     //
     this.chHistory.BackColor                 = System.Drawing.Color.Transparent;
     this.chHistory.BorderlineColor           = System.Drawing.Color.Transparent;
     chartArea1.AxisX.ArrowStyle              = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
     chartArea1.AxisX.IsLabelAutoFit          = false;
     chartArea1.AxisX.LabelStyle.Angle        = 50;
     chartArea1.AxisX.LabelStyle.Font         = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisX.MajorGrid.LineColor     = System.Drawing.Color.LightGray;
     chartArea1.AxisX.ScaleBreakStyle.Enabled = true;
     stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.TitleFont               = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.IsLabelAutoFit          = false;
     chartArea1.AxisY.LabelAutoFitMaxFontSize = 8;
     chartArea1.AxisY.LabelStyle.Font         = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.LabelStyle.Format       = "{0:0,}K";
     chartArea1.AxisY.LabelStyle.Interval     = 0D;
     chartArea1.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY.MajorGrid.Enabled       = false;
     chartArea1.BackColor = System.Drawing.Color.Transparent;
     chartArea1.Name      = "ChartArea1";
     this.chHistory.ChartAreas.Add(chartArea1);
     this.chHistory.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.chHistory.Location     = new System.Drawing.Point(0, 0);
     this.chHistory.Name         = "chHistory";
     series1.ChartArea           = "ChartArea1";
     series1.IsValueShownAsLabel = true;
     series1.LabelFormat         = "{0:0,}K";
     series1.Name       = "History";
     series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.chHistory.Series.Add(series1);
     this.chHistory.Size            = new System.Drawing.Size(459, 187);
     this.chHistory.TabIndex        = 13;
     this.chHistory.Text            = "-";
     title1.Alignment               = System.Drawing.ContentAlignment.BottomRight;
     title1.DockedToChartArea       = "ChartArea1";
     title1.Docking                 = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
     title1.IsDockedInsideChartArea = false;
     title1.Name = "chTitle";
     title1.Text = "-";
     this.chHistory.Titles.Add(title1);
     //
     // edtID
     //
     //
     //
     //
     this.edtID.CustomButton.Image         = null;
     this.edtID.CustomButton.Location      = new System.Drawing.Point(8, 1);
     this.edtID.CustomButton.Name          = "";
     this.edtID.CustomButton.Size          = new System.Drawing.Size(27, 27);
     this.edtID.CustomButton.Style         = MetroFramework.MetroColorStyle.Blue;
     this.edtID.CustomButton.TabIndex      = 1;
     this.edtID.CustomButton.Theme         = MetroFramework.MetroThemeStyle.Light;
     this.edtID.CustomButton.UseSelectable = true;
     this.edtID.CustomButton.Visible       = false;
     this.edtID.Enabled          = false;
     this.edtID.FontSize         = MetroFramework.MetroTextBoxSize.Medium;
     this.edtID.Lines            = new string[0];
     this.edtID.Location         = new System.Drawing.Point(39, 13);
     this.edtID.MaxLength        = 32767;
     this.edtID.Multiline        = true;
     this.edtID.Name             = "edtID";
     this.edtID.PasswordChar     = '\0';
     this.edtID.ReadOnly         = true;
     this.edtID.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.edtID.SelectedText     = "";
     this.edtID.SelectionLength  = 0;
     this.edtID.SelectionStart   = 0;
     this.edtID.ShortcutsEnabled = true;
     this.edtID.Size             = new System.Drawing.Size(36, 29);
     this.edtID.TabIndex         = 11;
     this.edtID.TabStop          = false;
     this.edtID.UseSelectable    = true;
     this.edtID.WaterMarkColor   = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
     this.edtID.WaterMarkFont    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // edtType
     //
     //
     //
     //
     this.edtType.CustomButton.Image         = null;
     this.edtType.CustomButton.Location      = new System.Drawing.Point(73, 1);
     this.edtType.CustomButton.Name          = "";
     this.edtType.CustomButton.Size          = new System.Drawing.Size(27, 27);
     this.edtType.CustomButton.Style         = MetroFramework.MetroColorStyle.Blue;
     this.edtType.CustomButton.TabIndex      = 1;
     this.edtType.CustomButton.Theme         = MetroFramework.MetroThemeStyle.Light;
     this.edtType.CustomButton.UseSelectable = true;
     this.edtType.CustomButton.Visible       = false;
     this.edtType.Enabled          = false;
     this.edtType.FontSize         = MetroFramework.MetroTextBoxSize.Medium;
     this.edtType.Lines            = new string[0];
     this.edtType.Location         = new System.Drawing.Point(326, 13);
     this.edtType.MaxLength        = 32767;
     this.edtType.Multiline        = true;
     this.edtType.Name             = "edtType";
     this.edtType.PasswordChar     = '\0';
     this.edtType.ReadOnly         = true;
     this.edtType.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.edtType.SelectedText     = "";
     this.edtType.SelectionLength  = 0;
     this.edtType.SelectionStart   = 0;
     this.edtType.ShortcutsEnabled = true;
     this.edtType.Size             = new System.Drawing.Size(101, 29);
     this.edtType.TabIndex         = 11;
     this.edtType.TabStop          = false;
     this.edtType.UseSelectable    = true;
     this.edtType.WaterMarkColor   = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
     this.edtType.WaterMarkFont    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // btnOK
     //
     this.btnOK.ActiveControl = null;
     this.btnOK.Location      = new System.Drawing.Point(320, 204);
     this.btnOK.Name          = "btnOK";
     this.btnOK.Size          = new System.Drawing.Size(107, 42);
     this.btnOK.TabIndex      = 10;
     this.btnOK.Text          = "Update";
     this.btnOK.TextAlign     = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnOK.UseSelectable = true;
     this.btnOK.Click        += new System.EventHandler(this.btnOK_Click);
     //
     // metroLabel1
     //
     this.metroLabel1.AutoSize = true;
     this.metroLabel1.Location = new System.Drawing.Point(39, 84);
     this.metroLabel1.Name     = "metroLabel1";
     this.metroLabel1.Size     = new System.Drawing.Size(45, 19);
     this.metroLabel1.TabIndex = 8;
     this.metroLabel1.Text     = "Name";
     //
     // edtName
     //
     //
     //
     //
     this.edtName.CustomButton.Image         = null;
     this.edtName.CustomButton.Location      = new System.Drawing.Point(360, 1);
     this.edtName.CustomButton.Name          = "";
     this.edtName.CustomButton.Size          = new System.Drawing.Size(27, 27);
     this.edtName.CustomButton.Style         = MetroFramework.MetroColorStyle.Blue;
     this.edtName.CustomButton.TabIndex      = 1;
     this.edtName.CustomButton.Theme         = MetroFramework.MetroThemeStyle.Light;
     this.edtName.CustomButton.UseSelectable = true;
     this.edtName.CustomButton.Visible       = false;
     this.edtName.FontSize         = MetroFramework.MetroTextBoxSize.Medium;
     this.edtName.Lines            = new string[0];
     this.edtName.Location         = new System.Drawing.Point(39, 115);
     this.edtName.MaxLength        = 32767;
     this.edtName.Multiline        = true;
     this.edtName.Name             = "edtName";
     this.edtName.PasswordChar     = '\0';
     this.edtName.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.edtName.SelectedText     = "";
     this.edtName.SelectionLength  = 0;
     this.edtName.SelectionStart   = 0;
     this.edtName.ShortcutsEnabled = true;
     this.edtName.Size             = new System.Drawing.Size(388, 29);
     this.edtName.TabIndex         = 7;
     this.edtName.UseSelectable    = true;
     this.edtName.WaterMarkColor   = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
     this.edtName.WaterMarkFont    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // frmDBPayees
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(753, 564);
     this.Controls.Add(this.splitContainer1);
     this.MaximizeBox = false;
     this.Name        = "frmDBPayees";
     this.Text        = "Payees";
     this.Load       += new System.EventHandler(this.frmDBPayees_Load);
     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.metroPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chHistory)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #16
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.StripLine  stripLine1  = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine  stripLine2  = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend     legend1     = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.LegendItem legendItem1 = new System.Windows.Forms.DataVisualization.Charting.LegendItem();
     System.Windows.Forms.DataVisualization.Charting.LegendCell legendCell1 = new System.Windows.Forms.DataVisualization.Charting.LegendCell();
     System.Windows.Forms.DataVisualization.Charting.LegendCell legendCell2 = new System.Windows.Forms.DataVisualization.Charting.LegendCell();
     System.Windows.Forms.DataVisualization.Charting.LegendItem legendItem2 = new System.Windows.Forms.DataVisualization.Charting.LegendItem();
     System.Windows.Forms.DataVisualization.Charting.Series     series1     = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series     series2     = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title      title1      = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.Title      title2      = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.Title      title3      = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     this.chart1.BackColor = System.Drawing.Color.DarkGray;
     chartArea1.AxisY2.StripLines.Add(stripLine1);
     chartArea1.AxisY2.StripLines.Add(stripLine2);
     chartArea1.BackColor   = System.Drawing.Color.Yellow;
     chartArea1.BorderColor = System.Drawing.Color.Bisque;
     chartArea1.Name        = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Top;
     legendCell1.Name = "Cell1";
     legendCell2.Name = "Cell2";
     legendItem1.Cells.Add(legendCell1);
     legendItem1.Cells.Add(legendCell2);
     legend1.CustomItems.Add(legendItem1);
     legend1.CustomItems.Add(legendItem2);
     legend1.Name = "Legend4";
     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.SeaGreen;
     series1.BackHatchStyle  = System.Windows.Forms.DataVisualization.Charting.ChartHatchStyle.BackwardDiagonal;
     series1.ChartArea       = "ChartArea1";
     series1.Color           = System.Drawing.Color.Red;
     series1.Legend          = "Legend4";
     series1.Name            = "Xuất";
     series1.XValueType      = System.Windows.Forms.DataVisualization.Charting.ChartValueType.DateTime;
     series1.YValuesPerPoint = 2;
     series1.YValueType      = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.ChartArea       = "ChartArea1";
     series2.ChartType       = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series2.Color           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     series2.Legend          = "Legend4";
     series2.Name            = "Nhập";
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(852, 473);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     title1.Name          = "Title1";
     title2.Name          = "Title2";
     title3.Name          = "Title3";
     this.chart1.Titles.Add(title1);
     this.chart1.Titles.Add(title2);
     this.chart1.Titles.Add(title3);
     //
     // Statistic
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.chart1);
     this.Name = "Statistic";
     this.Size = new System.Drawing.Size(852, 525);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend2    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend3    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series3    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.label7  = new System.Windows.Forms.Label();
     this.label6  = new System.Windows.Forms.Label();
     this.label5  = new System.Windows.Forms.Label();
     this.panel6  = new System.Windows.Forms.Panel();
     this.panel5  = new System.Windows.Forms.Panel();
     this.panel4  = new System.Windows.Forms.Panel();
     this.panel3  = new System.Windows.Forms.Panel();
     this.label4  = new System.Windows.Forms.Label();
     this.label2  = new System.Windows.Forms.Label();
     this.chart3  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chart2  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label3  = new System.Windows.Forms.Label();
     this.panel2  = new System.Windows.Forms.Panel();
     this.panel1  = new System.Windows.Forms.Panel();
     this.label1  = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.chart1  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.button2 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chart3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(631, 581);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(41, 12);
     this.label7.TabIndex = 28;
     this.label7.Text     = "label7";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(631, 391);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(41, 12);
     this.label6.TabIndex = 27;
     this.label6.Text     = "label6";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(633, 182);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(41, 12);
     this.label5.TabIndex = 26;
     this.label5.Text     = "label5";
     this.label5.Click   += new System.EventHandler(this.Label5_Click);
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.Color.Red;
     this.panel6.Location  = new System.Drawing.Point(400, 473);
     this.panel6.Name      = "panel6";
     this.panel6.Size      = new System.Drawing.Size(3, 180);
     this.panel6.TabIndex  = 17;
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.Red;
     this.panel5.Location  = new System.Drawing.Point(192, 473);
     this.panel5.Name      = "panel5";
     this.panel5.Size      = new System.Drawing.Size(3, 180);
     this.panel5.TabIndex  = 18;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.Red;
     this.panel4.Location  = new System.Drawing.Point(400, 259);
     this.panel4.Name      = "panel4";
     this.panel4.Size      = new System.Drawing.Size(3, 180);
     this.panel4.TabIndex  = 19;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Red;
     this.panel3.Location  = new System.Drawing.Point(192, 259);
     this.panel3.Name      = "panel3";
     this.panel3.Size      = new System.Drawing.Size(3, 180);
     this.panel3.TabIndex  = 20;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(631, 569);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(0, 12);
     this.label4.TabIndex = 25;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(631, 339);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(0, 12);
     this.label2.TabIndex = 24;
     //
     // chart3
     //
     chartArea1.AxisY2.StripLines.Add(stripLine1);
     chartArea1.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     chartArea1.Name = "ChartArea1";
     this.chart3.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart3.Legends.Add(legend1);
     this.chart3.Location   = new System.Drawing.Point(-3, 461);
     this.chart3.Name       = "chart3";
     this.chart3.Palette    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series1.ChartArea      = "ChartArea1";
     series1.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     series1.Legend         = "Legend1";
     series1.Name           = "Series1";
     this.chart3.Series.Add(series1);
     this.chart3.Size     = new System.Drawing.Size(727, 208);
     this.chart3.TabIndex = 23;
     this.chart3.Text     = "chart3";
     //
     // chart2
     //
     chartArea2.AxisY2.StripLines.Add(stripLine2);
     chartArea2.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     chartArea2.Name = "ChartArea1";
     this.chart2.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.chart2.Legends.Add(legend2);
     this.chart2.Location   = new System.Drawing.Point(-3, 248);
     this.chart2.Name       = "chart2";
     this.chart2.Palette    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series2.ChartArea      = "ChartArea1";
     series2.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     series2.Legend         = "Legend1";
     series2.Name           = "Series1";
     this.chart2.Series.Add(series2);
     this.chart2.Size     = new System.Drawing.Size(727, 208);
     this.chart2.TabIndex = 22;
     this.chart2.Text     = "chart2";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(633, 129);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(0, 12);
     this.label3.TabIndex = 14;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Red;
     this.panel2.Location  = new System.Drawing.Point(500, 61);
     this.panel2.Name      = "panel2";
     this.panel2.Size      = new System.Drawing.Size(3, 180);
     this.panel2.TabIndex  = 21;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Red;
     this.panel1.Location  = new System.Drawing.Point(192, 61);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(3, 180);
     this.panel1.TabIndex  = 16;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.Green;
     this.label1.Location  = new System.Drawing.Point(78, 18);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(0, 20);
     this.label1.TabIndex  = 15;
     //
     // button1
     //
     this.button1.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button1.Location  = new System.Drawing.Point(65, 1);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(238, 31);
     this.button1.TabIndex  = 13;
     this.button1.Text      = "启用游标测量";
     this.button1.UseVisualStyleBackColor = true;
     //
     // chart1
     //
     chartArea3.AxisY2.StripLines.Add(stripLine3);
     chartArea3.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     chartArea3.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea3);
     legend3.Name = "Legend1";
     this.chart1.Legends.Add(legend3);
     this.chart1.Location   = new System.Drawing.Point(-2, 40);
     this.chart1.Name       = "chart1";
     this.chart1.Palette    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series3.ChartArea      = "ChartArea1";
     series3.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     series3.Legend         = "Legend1";
     series3.Name           = "Series1";
     this.chart1.Series.Add(series3);
     this.chart1.Size     = new System.Drawing.Size(727, 208);
     this.chart1.TabIndex = 12;
     this.chart1.Text     = "chart1";
     //
     // button2
     //
     this.button2.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button2.Location  = new System.Drawing.Point(354, 1);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(238, 31);
     this.button2.TabIndex  = 29;
     this.button2.Text      = "读取完成";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2_Click_1);
     //
     // Form2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(720, 669);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.panel6);
     this.Controls.Add(this.panel5);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.chart3);
     this.Controls.Add(this.chart2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chart1);
     this.Name  = "Form2";
     this.Text  = "Form2";
     this.Load += new System.EventHandler(this.Form2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #18
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.panel1      = new System.Windows.Forms.Panel();
     this.panel2      = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.pictureBox6 = new System.Windows.Forms.PictureBox();
     this.pictureBox5 = new System.Windows.Forms.PictureBox();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.RB_3D       = new System.Windows.Forms.RadioButton();
     this.RB_Nor      = new System.Windows.Forms.RadioButton();
     this.groupBox1   = new System.Windows.Forms.GroupBox();
     this.ColumnChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label1      = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ColumnChart)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::Counter.Properties.Resources.timg__1_;
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Controls.Add(this.RB_3D);
     this.panel1.Controls.Add(this.RB_Nor);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1136, 592);
     this.panel1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.pictureBox1);
     this.panel2.Controls.Add(this.pictureBox6);
     this.panel2.Controls.Add(this.pictureBox5);
     this.panel2.Controls.Add(this.pictureBox4);
     this.panel2.Controls.Add(this.pictureBox3);
     this.panel2.Controls.Add(this.pictureBox2);
     this.panel2.Location = new System.Drawing.Point(13, 405);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(1110, 175);
     this.panel2.TabIndex = 4;
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor       = System.Windows.Forms.AnchorStyles.None;
     this.pictureBox1.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.InitialImage")));
     this.pictureBox1.Location     = new System.Drawing.Point(-73, 4);
     this.pictureBox1.Name         = "pictureBox1";
     this.pictureBox1.Size         = new System.Drawing.Size(126, 124);
     this.pictureBox1.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex     = 0;
     this.pictureBox1.TabStop      = false;
     //
     // pictureBox6
     //
     this.pictureBox6.Anchor       = System.Windows.Forms.AnchorStyles.None;
     this.pictureBox6.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
     this.pictureBox6.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox6.InitialImage")));
     this.pictureBox6.Location     = new System.Drawing.Point(1082, 4);
     this.pictureBox6.Name         = "pictureBox6";
     this.pictureBox6.Size         = new System.Drawing.Size(126, 124);
     this.pictureBox6.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox6.TabIndex     = 5;
     this.pictureBox6.TabStop      = false;
     //
     // pictureBox5
     //
     this.pictureBox5.Anchor       = System.Windows.Forms.AnchorStyles.None;
     this.pictureBox5.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
     this.pictureBox5.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox5.InitialImage")));
     this.pictureBox5.Location     = new System.Drawing.Point(851, 4);
     this.pictureBox5.Name         = "pictureBox5";
     this.pictureBox5.Size         = new System.Drawing.Size(126, 124);
     this.pictureBox5.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox5.TabIndex     = 4;
     this.pictureBox5.TabStop      = false;
     //
     // pictureBox4
     //
     this.pictureBox4.Anchor       = System.Windows.Forms.AnchorStyles.None;
     this.pictureBox4.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox4.InitialImage")));
     this.pictureBox4.Location     = new System.Drawing.Point(620, 4);
     this.pictureBox4.Name         = "pictureBox4";
     this.pictureBox4.Size         = new System.Drawing.Size(126, 124);
     this.pictureBox4.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox4.TabIndex     = 3;
     this.pictureBox4.TabStop      = false;
     //
     // pictureBox3
     //
     this.pictureBox3.Anchor       = System.Windows.Forms.AnchorStyles.None;
     this.pictureBox3.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox3.InitialImage")));
     this.pictureBox3.Location     = new System.Drawing.Point(389, 4);
     this.pictureBox3.Name         = "pictureBox3";
     this.pictureBox3.Size         = new System.Drawing.Size(126, 124);
     this.pictureBox3.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex     = 2;
     this.pictureBox3.TabStop      = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Anchor       = System.Windows.Forms.AnchorStyles.None;
     this.pictureBox2.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.InitialImage")));
     this.pictureBox2.Location     = new System.Drawing.Point(158, 4);
     this.pictureBox2.Name         = "pictureBox2";
     this.pictureBox2.Size         = new System.Drawing.Size(126, 124);
     this.pictureBox2.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex     = 1;
     this.pictureBox2.TabStop      = false;
     //
     // RB_3D
     //
     this.RB_3D.Anchor    = System.Windows.Forms.AnchorStyles.Top;
     this.RB_3D.AutoSize  = true;
     this.RB_3D.BackColor = System.Drawing.Color.Transparent;
     this.RB_3D.Location  = new System.Drawing.Point(861, 28);
     this.RB_3D.Name      = "RB_3D";
     this.RB_3D.Size      = new System.Drawing.Size(59, 16);
     this.RB_3D.TabIndex  = 3;
     this.RB_3D.TabStop   = true;
     this.RB_3D.Text      = "3D视图";
     this.RB_3D.UseVisualStyleBackColor = false;
     this.RB_3D.CheckedChanged         += new System.EventHandler(this.RB_3D_CheckedChanged);
     //
     // RB_Nor
     //
     this.RB_Nor.Anchor    = System.Windows.Forms.AnchorStyles.Top;
     this.RB_Nor.AutoSize  = true;
     this.RB_Nor.BackColor = System.Drawing.Color.Transparent;
     this.RB_Nor.Location  = new System.Drawing.Point(784, 28);
     this.RB_Nor.Name      = "RB_Nor";
     this.RB_Nor.Size      = new System.Drawing.Size(71, 16);
     this.RB_Nor.TabIndex  = 2;
     this.RB_Nor.TabStop   = true;
     this.RB_Nor.Text      = "普通视图";
     this.RB_Nor.UseVisualStyleBackColor = false;
     this.RB_Nor.CheckedChanged         += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.ColumnChart);
     this.groupBox1.Location = new System.Drawing.Point(12, 58);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(1112, 341);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "数据";
     //
     // ColumnChart
     //
     this.ColumnChart.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.ColumnChart.BackColor               = System.Drawing.Color.Transparent;
     chartArea1.AlignmentOrientation          = ((System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations)((System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.Vertical | System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.Horizontal)));
     chartArea1.AxisX.MajorGrid.LineColor     = System.Drawing.Color.Silver;
     chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDotDot;
     chartArea1.AxisY.MajorGrid.LineColor     = System.Drawing.Color.Silver;
     chartArea1.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisY.Maximum = 100D;
     chartArea1.AxisY.Minimum = 0D;
     chartArea1.AxisY.StripLines.Add(stripLine1);
     chartArea1.BackColor = System.Drawing.Color.Transparent;
     chartArea1.Name      = "ChartArea1";
     this.ColumnChart.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.ColumnChart.Legends.Add(legend1);
     this.ColumnChart.Location = new System.Drawing.Point(6, 20);
     this.ColumnChart.Name     = "ColumnChart";
     this.ColumnChart.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.EarthTones;
     series1.BorderDashStyle   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     series1.ChartArea         = "ChartArea1";
     series1.CustomProperties  = "DrawSideBySide=True, DrawingStyle=Cylinder, PointWidth=0.5, LabelStyle=Bottom";
     series1.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F);
     series1.IsValueShownAsLabel = true;
     series1.Legend          = "Legend1";
     series1.Name            = "Series1";
     series1.YValuesPerPoint = 2;
     this.ColumnChart.Series.Add(series1);
     this.ColumnChart.Size     = new System.Drawing.Size(1100, 315);
     this.ColumnChart.TabIndex = 0;
     this.ColumnChart.Text     = "chart1";
     //
     // label1
     //
     this.label1.Anchor    = System.Windows.Forms.AnchorStyles.Top;
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("幼圆", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location  = new System.Drawing.Point(462, 15);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(163, 29);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "准主管人数";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1136, 592);
     this.Controls.Add(this.panel1);
     this.MaximizeBox   = false;
     this.Name          = "Form1";
     this.ShowIcon      = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Counter 1.0";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ColumnChart)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series      series4      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea3   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend3      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series5      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmIngresoEgreso));
     this.tabControl1            = new System.Windows.Forms.TabControl();
     this.tabPage1               = new System.Windows.Forms.TabPage();
     this.chartCobroAnoActual    = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tabPage2               = new System.Windows.Forms.TabPage();
     this.charIngresoEgresoTotal = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tabPage3               = new System.Windows.Forms.TabPage();
     this.chartCategoriasGasto   = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.charIngresoEgresoTotal)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartCategoriasGasto)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(695, 488);
     this.tabControl1.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.chartCobroAnoActual);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(687, 462);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Año Actual";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // chartCobroAnoActual
     //
     this.chartCobroAnoActual.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     chartArea1.AxisX.MajorGrid.Enabled = false;
     chartArea1.AxisY.MajorGrid.Enabled = false;
     chartArea1.AxisY.Title             = "Colones";
     chartArea1.AxisY.TitleFont         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.Name = "ChartArea1";
     this.chartCobroAnoActual.ChartAreas.Add(chartArea1);
     legend1.Name  = "Legend1";
     legend1.Title = "Año Actual";
     this.chartCobroAnoActual.Legends.Add(legend1);
     this.chartCobroAnoActual.Location = new System.Drawing.Point(3, 3);
     this.chartCobroAnoActual.Name     = "chartCobroAnoActual";
     this.chartCobroAnoActual.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.ChartArea           = "ChartArea1";
     series1.Color               = System.Drawing.Color.Lime;
     series1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.IsValueShownAsLabel = true;
     series1.LabelForeColor      = System.Drawing.Color.DarkGreen;
     series1.Legend              = "Legend1";
     series1.MarkerSize          = 7;
     series1.MarkerStep          = 4;
     series1.Name                = "Ingresos";
     series1.XValueMember        = "Ingresos";
     series1.YValueMembers       = "Cantidad";
     series2.ChartArea           = "ChartArea1";
     series2.Color               = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series2.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.IsValueShownAsLabel = true;
     series2.LabelForeColor      = System.Drawing.Color.Crimson;
     series2.Legend              = "Legend1";
     series2.Name                = "Gastos";
     this.chartCobroAnoActual.Series.Add(series1);
     this.chartCobroAnoActual.Series.Add(series2);
     this.chartCobroAnoActual.Size     = new System.Drawing.Size(684, 449);
     this.chartCobroAnoActual.TabIndex = 4;
     this.chartCobroAnoActual.Text     = "chart2";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.charIngresoEgresoTotal);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(687, 462);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Todo";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // charIngresoEgresoTotal
     //
     this.charIngresoEgresoTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     chartArea2.AxisX.MajorGrid.Enabled = false;
     chartArea2.AxisY.MajorGrid.Enabled = false;
     chartArea2.AxisY.Title             = "Colones";
     chartArea2.Name = "ChartArea1";
     this.charIngresoEgresoTotal.ChartAreas.Add(chartArea2);
     legend2.Name  = "Legend1";
     legend2.Title = "Total";
     this.charIngresoEgresoTotal.Legends.Add(legend2);
     this.charIngresoEgresoTotal.Location = new System.Drawing.Point(3, 3);
     this.charIngresoEgresoTotal.Name     = "charIngresoEgresoTotal";
     this.charIngresoEgresoTotal.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series3.ChartArea           = "ChartArea1";
     series3.Color               = System.Drawing.Color.Lime;
     series3.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series3.IsValueShownAsLabel = true;
     series3.LabelForeColor      = System.Drawing.Color.DarkGreen;
     series3.Legend              = "Legend1";
     series3.MarkerSize          = 7;
     series3.MarkerStep          = 4;
     series3.Name                = "Ingresos";
     series3.XValueMember        = "Ingresos";
     series3.YValueMembers       = "Cantidad";
     series4.ChartArea           = "ChartArea1";
     series4.Color               = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series4.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series4.IsValueShownAsLabel = true;
     series4.LabelForeColor      = System.Drawing.Color.Crimson;
     series4.Legend              = "Legend1";
     series4.Name                = "Gastos";
     this.charIngresoEgresoTotal.Series.Add(series3);
     this.charIngresoEgresoTotal.Series.Add(series4);
     this.charIngresoEgresoTotal.Size     = new System.Drawing.Size(684, 449);
     this.charIngresoEgresoTotal.TabIndex = 5;
     this.charIngresoEgresoTotal.Text     = "chart2";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.chartCategoriasGasto);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(687, 462);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Categorías";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // chartCategoriasGasto
     //
     customLabel1.Text = "1";
     customLabel2.Text = "2";
     customLabel3.Text = "3";
     customLabel4.Text = "4";
     chartArea3.AxisX.CustomLabels.Add(customLabel1);
     chartArea3.AxisX.CustomLabels.Add(customLabel2);
     chartArea3.AxisX.CustomLabels.Add(customLabel3);
     chartArea3.AxisX.CustomLabels.Add(customLabel4);
     chartArea3.AxisX.StripLines.Add(stripLine1);
     chartArea3.AxisX.Title          = "relative";
     chartArea3.AxisX.TitleAlignment = System.Drawing.StringAlignment.Far;
     customLabel5.LabelMark          = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel5.Text      = "YText0";
     customLabel6.LabelMark = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.LineSideMark;
     customLabel6.RowIndex  = 1;
     customLabel6.Text      = "YText2";
     chartArea3.AxisY.CustomLabels.Add(customLabel5);
     chartArea3.AxisY.CustomLabels.Add(customLabel6);
     chartArea3.AxisY.Title = "Titulo Y";
     chartArea3.Name        = "ChartArea1";
     this.chartCategoriasGasto.ChartAreas.Add(chartArea3);
     this.chartCategoriasGasto.ImeMode = System.Windows.Forms.ImeMode.Disable;
     legend3.Name  = "Legend1";
     legend3.Title = "Uso Categorias Gasto";
     this.chartCategoriasGasto.Legends.Add(legend3);
     this.chartCategoriasGasto.Location = new System.Drawing.Point(-4, 0);
     this.chartCategoriasGasto.Name     = "chartCategoriasGasto";
     this.chartCategoriasGasto.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series5.ChartArea           = "ChartArea1";
     series5.ChartType           = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
     series5.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series5.IsValueShownAsLabel = true;
     series5.Legend              = "Legend1";
     series5.Name                = "Series1";
     series5.XValueMember        = "Categoria";
     series5.XValueType          = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
     series5.YValueMembers       = "Cantidad";
     this.chartCategoriasGasto.Series.Add(series5);
     this.chartCategoriasGasto.Size     = new System.Drawing.Size(691, 462);
     this.chartCategoriasGasto.TabIndex = 1;
     this.chartCategoriasGasto.Text     = "chart1";
     //
     // frmIngresoEgreso
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize          = new System.Drawing.Size(695, 487);
     this.Controls.Add(this.tabControl1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "frmIngresoEgreso";
     this.Text  = "Ingreso y Egresos";
     this.Load += new System.EventHandler(this.frmIngresoEgreso_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartCobroAnoActual)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.charIngresoEgresoTotal)).EndInit();
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chartCategoriasGasto)).EndInit();
     this.ResumeLayout(false);
 }
    /// <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.VerticalLineAnnotation verticalLineAnnotation1 = new System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation();
      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
      System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
      System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
      System.Windows.Forms.DataVisualization.Charting.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.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
      this.calculationPendingLabel = new System.Windows.Forms.Label();
      this.calculationPendingTimer = new System.Windows.Forms.Timer(this.components);
      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
      this.SuspendLayout();
      // 
      // calculationPendingLabel
      // 
      this.calculationPendingLabel.BackColor = System.Drawing.Color.White;
      this.calculationPendingLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Timer;
      this.calculationPendingLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
      this.calculationPendingLabel.Location = new System.Drawing.Point(3, 3);
      this.calculationPendingLabel.Margin = new System.Windows.Forms.Padding(0);
      this.calculationPendingLabel.Name = "calculationPendingLabel";
      this.calculationPendingLabel.Size = new System.Drawing.Size(17, 17);
      this.calculationPendingLabel.TabIndex = 1;
      this.calculationPendingLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
      this.calculationPendingLabel.Visible = false;
      // 
      // calculationPendingTimer
      // 
      this.calculationPendingTimer.Tick += new System.EventHandler(this.calculationPendingTimer_Tick);
      // 
      // chart
      // 
      this.chart.AllowDrop = true;
      verticalLineAnnotation1.AllowMoving = true;
      verticalLineAnnotation1.AxisXName = "ChartArea\\rX";
      verticalLineAnnotation1.ClipToChartArea = "ChartArea";
      verticalLineAnnotation1.IsInfinitive = true;
      verticalLineAnnotation1.LineColor = System.Drawing.Color.Red;
      verticalLineAnnotation1.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
      verticalLineAnnotation1.Name = "VerticalLineAnnotation";
      verticalLineAnnotation1.YAxisName = "ChartArea\\rY";
      this.chart.Annotations.Add(verticalLineAnnotation1);
      chartArea1.AxisX.IsMarginVisible = false;
      stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
      stripLine2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
      chartArea1.AxisX.StripLines.Add(stripLine1);
      chartArea1.AxisX.StripLines.Add(stripLine2);
      chartArea1.Name = "ChartArea";
      chartArea1.Position.Auto = false;
      chartArea1.Position.Height = 90F;
      chartArea1.Position.Width = 100F;
      chartArea1.Position.Y = 10F;
      this.chart.ChartAreas.Add(chartArea1);
      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
      legend1.Alignment = System.Drawing.StringAlignment.Center;
      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
      legend1.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.ReversedSeriesOrder;
      legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
      legend1.Name = "Default";
      this.chart.Legends.Add(legend1);
      this.chart.Location = new System.Drawing.Point(0, 0);
      this.chart.Name = "chart";
      series1.BorderColor = System.Drawing.Color.Red;
      series1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
      series1.ChartArea = "ChartArea";
      series1.IsVisibleInLegend = false;
      series1.Legend = "Default";
      series1.Name = "Series1";
      series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
      series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
      series2.ChartArea = "ChartArea";
      series2.IsVisibleInLegend = false;
      series2.Legend = "Default";
      series2.Name = "Series2";
      series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
      series3.ChartArea = "ChartArea";
      series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
      series3.Color = System.Drawing.Color.Black;
      series3.Legend = "Default";
      series3.Name = "Series3";
      series3.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
      series3.YValuesPerPoint = 6;
      series4.ChartArea = "ChartArea";
      series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
      series4.Legend = "Default";
      series4.Name = "Series4";
      series4.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
      series4.YValuesPerPoint = 6;
      this.chart.Series.Add(series1);
      this.chart.Series.Add(series2);
      this.chart.Series.Add(series3);
      this.chart.Series.Add(series4);
      this.chart.Size = new System.Drawing.Size(453, 308);
      this.chart.TabIndex = 0;
      title1.Alignment = System.Drawing.ContentAlignment.TopCenter;
      title1.DockedToChartArea = "ChartArea";
      title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      title1.IsDockedInsideChartArea = false;
      title1.Name = "Title";
      title1.Text = "[Title]";
      this.chart.Titles.Add(title1);
      this.chart.SelectionRangeChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chart_SelectionRangeChanged);
      this.chart.PostPaint += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(this.chart_PostPaint);
      this.chart.DragDrop += new System.Windows.Forms.DragEventHandler(this.chart_DragDrop);
      this.chart.DragEnter += new System.Windows.Forms.DragEventHandler(this.chart_DragEnter);
      this.chart.MouseClick += new System.Windows.Forms.MouseEventHandler(this.chart_MouseClick);
      this.chart.Resize += new System.EventHandler(this.chart_Resize);
      // 
      // FactorPartialDependencePlot
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.Controls.Add(this.calculationPendingLabel);
      this.Controls.Add(this.chart);
      this.Name = "FactorPartialDependencePlot";
      this.Size = new System.Drawing.Size(453, 308);
      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
      this.ResumeLayout(false);

    }
Beispiel #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend2    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     this.fbdSelectDir = new System.Windows.Forms.FolderBrowserDialog();
     this.tabControl1  = new System.Windows.Forms.TabControl();
     this.allTests     = new System.Windows.Forms.TabPage();
     this.panel2       = new System.Windows.Forms.Panel();
     this.chart1       = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel1       = new System.Windows.Forms.Panel();
     this.allList      = new System.Windows.Forms.CheckedListBox();
     this.btnScreen    = new System.Windows.Forms.Button();
     this.sfdScreen    = new System.Windows.Forms.SaveFileDialog();
     this.tabControl1.SuspendLayout();
     this.allTests.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // fbdSelectDir
     //
     this.fbdSelectDir.Description  = "Select Performance Folder";
     this.fbdSelectDir.SelectedPath = "D:\\Users\\Tim\\Documents\\Byt3\\Consoles\\TestingProject\\bin\\Debug\\netcoreapp2.1\\perfo" +
                                      "rmance";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.allTests);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(983, 458);
     this.tabControl1.TabIndex      = 0;
     //
     // allTests
     //
     this.allTests.Controls.Add(this.panel2);
     this.allTests.Controls.Add(this.panel1);
     this.allTests.Location = new System.Drawing.Point(4, 22);
     this.allTests.Name     = "allTests";
     this.allTests.Size     = new System.Drawing.Size(975, 432);
     this.allTests.TabIndex = 0;
     this.allTests.Text     = "All";
     this.allTests.UseVisualStyleBackColor = true;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.btnScreen);
     this.panel2.Controls.Add(this.chart1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(651, 432);
     this.panel2.TabIndex = 3;
     //
     // chart1
     //
     stripLine2.Text = "AAA";
     chartArea2.AxisX.StripLines.Add(stripLine2);
     chartArea2.AxisX.Title = "Versions";
     chartArea2.Name        = "MainArea";
     this.chart1.ChartAreas.Add(chartArea2);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend2.Name     = "Legend1";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location = new System.Drawing.Point(0, 0);
     this.chart1.Name     = "chart1";
     this.chart1.Size     = new System.Drawing.Size(651, 432);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "All";
     this.chart1.Click   += new System.EventHandler(this.chart1_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.allList);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(651, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(324, 432);
     this.panel1.TabIndex = 2;
     //
     // allList
     //
     this.allList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.allList.FormattingEnabled = true;
     this.allList.Location          = new System.Drawing.Point(0, 0);
     this.allList.Name     = "allList";
     this.allList.Size     = new System.Drawing.Size(324, 432);
     this.allList.TabIndex = 1;
     //
     // btnScreen
     //
     this.btnScreen.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.btnScreen.Location = new System.Drawing.Point(0, 409);
     this.btnScreen.Name     = "btnScreen";
     this.btnScreen.Size     = new System.Drawing.Size(651, 23);
     this.btnScreen.TabIndex = 1;
     this.btnScreen.Text     = "Make Screenshot";
     this.btnScreen.UseVisualStyleBackColor = true;
     this.btnScreen.Click += new System.EventHandler(this.btnScreen_Click);
     //
     // sfdScreen
     //
     this.sfdScreen.Filter = "\"PNG|*.png\"";
     this.sfdScreen.Title  = "Save Screenshot";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(983, 458);
     this.Controls.Add(this.tabControl1);
     this.Name  = "Form1";
     this.Text  = "Benchmark Result Viewer";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.tabControl1.ResumeLayout(false);
     this.allTests.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.panel1.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()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.lvCategory = new System.Windows.Forms.ListView();
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.panel1 = new System.Windows.Forms.Panel();
            this.lbtAddtv = new System.Windows.Forms.LinkLabel();
            this.butAddnew = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.butDelete = new System.Windows.Forms.Button();
            this.butSave = new System.Windows.Forms.Button();
            this.txtCatname = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.lvSite = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.panel2 = new System.Windows.Forms.Panel();
            this.lbtRemovesite = new System.Windows.Forms.LinkLabel();
            this.lbtAddsite = new System.Windows.Forms.LinkLabel();
            this.splitContainer3 = new System.Windows.Forms.SplitContainer();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.lvTest = new LQT.GUI.LQTListView();
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.panel4 = new System.Windows.Forms.Panel();
            this.label4 = new System.Windows.Forms.Label();
            this.panel6 = new System.Windows.Forms.Panel();
            this.lbtImport = new System.Windows.Forms.LinkLabel();
            this.lbtRemovetest = new System.Windows.Forms.LinkLabel();
            this.lbtAddtest = new System.Windows.Forms.LinkLabel();
            this.lbtAddduration = new System.Windows.Forms.LinkLabel();
            this.panel5 = new System.Windows.Forms.Panel();
            this.txtPcount = new System.Windows.Forms.TextBox();
            this.txtSitename = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.txtTotalpcount = new System.Windows.Forms.TextBox();
            this.txttotalsite = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.panel7 = new System.Windows.Forms.Panel();
            this.lblMedian = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.lblDeviation = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.lblMean = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.columnHeader11 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.panel1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.panel2.SuspendLayout();
            this.splitContainer3.Panel1.SuspendLayout();
            this.splitContainer3.Panel2.SuspendLayout();
            this.splitContainer3.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.panel4.SuspendLayout();
            this.panel6.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.IsSplitterFixed = true;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
            this.splitContainer1.Size = new System.Drawing.Size(921, 551);
            this.splitContainer1.SplitterDistance = 130;
            this.splitContainer1.SplitterWidth = 6;
            this.splitContainer1.TabIndex = 0;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 2;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 248F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.Controls.Add(this.lvCategory, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.panel1, 1, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 1;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(921, 130);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // lvCategory
            // 
            this.lvCategory.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2});
            this.lvCategory.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvCategory.FullRowSelect = true;
            this.lvCategory.GridLines = true;
            this.lvCategory.Location = new System.Drawing.Point(3, 3);
            this.lvCategory.Name = "lvCategory";
            this.lvCategory.Size = new System.Drawing.Size(242, 124);
            this.lvCategory.TabIndex = 0;
            this.lvCategory.UseCompatibleStateImageBehavior = false;
            this.lvCategory.View = System.Windows.Forms.View.Details;
            this.lvCategory.SelectedIndexChanged += new System.EventHandler(this.lvCategory_SelectedIndexChanged);
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "List of Categories";
            this.columnHeader2.Width = 235;
            // 
            // panel1
            // 
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(this.lbtAddtv);
            this.panel1.Controls.Add(this.butAddnew);
            this.panel1.Controls.Add(this.groupBox1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(251, 3);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(667, 124);
            this.panel1.TabIndex = 1;
            // 
            // lbtAddtv
            // 
            this.lbtAddtv.AutoSize = true;
            this.lbtAddtv.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddtv.Location = new System.Drawing.Point(430, 92);
            this.lbtAddtv.Name = "lbtAddtv";
            this.lbtAddtv.Size = new System.Drawing.Size(170, 13);
            this.lbtAddtv.TabIndex = 4;
            this.lbtAddtv.TabStop = true;
            this.lbtAddtv.Text = "Add T.V For Multi Categories";
            this.lbtAddtv.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddtv_LinkClicked);
            // 
            // butAddnew
            // 
            this.butAddnew.Location = new System.Drawing.Point(428, 52);
            this.butAddnew.Name = "butAddnew";
            this.butAddnew.Size = new System.Drawing.Size(114, 28);
            this.butAddnew.TabIndex = 2;
            this.butAddnew.Text = "Add New Category";
            this.butAddnew.UseVisualStyleBackColor = true;
            this.butAddnew.Click += new System.EventHandler(this.butAddnew_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.butDelete);
            this.groupBox1.Controls.Add(this.butSave);
            this.groupBox1.Controls.Add(this.txtCatname);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Location = new System.Drawing.Point(7, 25);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(417, 87);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Active Category";
            // 
            // butDelete
            // 
            this.butDelete.Enabled = false;
            this.butDelete.Location = new System.Drawing.Point(331, 48);
            this.butDelete.Name = "butDelete";
            this.butDelete.Size = new System.Drawing.Size(75, 23);
            this.butDelete.TabIndex = 3;
            this.butDelete.Text = "Delete";
            this.butDelete.UseVisualStyleBackColor = true;
            this.butDelete.Click += new System.EventHandler(this.butDelete_Click);
            // 
            // butSave
            // 
            this.butSave.Enabled = false;
            this.butSave.Location = new System.Drawing.Point(331, 19);
            this.butSave.Name = "butSave";
            this.butSave.Size = new System.Drawing.Size(75, 23);
            this.butSave.TabIndex = 2;
            this.butSave.Text = "Save";
            this.butSave.UseVisualStyleBackColor = true;
            this.butSave.Click += new System.EventHandler(this.butSave_Click);
            // 
            // txtCatname
            // 
            this.txtCatname.Location = new System.Drawing.Point(92, 32);
            this.txtCatname.Name = "txtCatname";
            this.txtCatname.Size = new System.Drawing.Size(216, 20);
            this.txtCatname.TabIndex = 1;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 35);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(80, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Category Name";
            // 
            // splitContainer2
            // 
            this.splitContainer2.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer2.IsSplitterFixed = true;
            this.splitContainer2.Location = new System.Drawing.Point(0, 0);
            this.splitContainer2.Name = "splitContainer2";
            // 
            // splitContainer2.Panel1
            // 
            this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel2);
            // 
            // splitContainer2.Panel2
            // 
            this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
            this.splitContainer2.Size = new System.Drawing.Size(921, 415);
            this.splitContainer2.SplitterDistance = 245;
            this.splitContainer2.SplitterWidth = 6;
            this.splitContainer2.TabIndex = 1;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 1;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Controls.Add(this.lvSite, 0, 1);
            this.tableLayoutPanel2.Controls.Add(this.panel2, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 2;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel2.Size = new System.Drawing.Size(243, 413);
            this.tableLayoutPanel2.TabIndex = 0;
            // 
            // lvSite
            // 
            this.lvSite.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1});
            this.lvSite.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvSite.FullRowSelect = true;
            this.lvSite.GridLines = true;
            this.lvSite.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lvSite.HideSelection = false;
            this.lvSite.Location = new System.Drawing.Point(3, 28);
            this.lvSite.MultiSelect = false;
            this.lvSite.Name = "lvSite";
            this.lvSite.Size = new System.Drawing.Size(237, 382);
            this.lvSite.TabIndex = 5;
            this.lvSite.UseCompatibleStateImageBehavior = false;
            this.lvSite.View = System.Windows.Forms.View.Details;
            this.lvSite.SelectedIndexChanged += new System.EventHandler(this.lvSite_SelectedIndexChanged);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "List of Sites";
            this.columnHeader1.Width = 235;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.lbtRemovesite);
            this.panel2.Controls.Add(this.lbtAddsite);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 3);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(237, 19);
            this.panel2.TabIndex = 0;
            // 
            // lbtRemovesite
            // 
            this.lbtRemovesite.AutoSize = true;
            this.lbtRemovesite.Enabled = false;
            this.lbtRemovesite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemovesite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemovesite.Location = new System.Drawing.Point(149, 3);
            this.lbtRemovesite.Name = "lbtRemovesite";
            this.lbtRemovesite.Size = new System.Drawing.Size(79, 13);
            this.lbtRemovesite.TabIndex = 1;
            this.lbtRemovesite.TabStop = true;
            this.lbtRemovesite.Text = "Remove Site";
            this.lbtRemovesite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemovesite_LinkClicked);
            // 
            // lbtAddsite
            // 
            this.lbtAddsite.AutoSize = true;
            this.lbtAddsite.Enabled = false;
            this.lbtAddsite.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddsite.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddsite.Location = new System.Drawing.Point(88, 3);
            this.lbtAddsite.Name = "lbtAddsite";
            this.lbtAddsite.Size = new System.Drawing.Size(55, 13);
            this.lbtAddsite.TabIndex = 0;
            this.lbtAddsite.TabStop = true;
            this.lbtAddsite.Text = "Add Site";
            this.lbtAddsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddsite_LinkClicked);
            // 
            // splitContainer3
            // 
            this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer3.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer3.IsSplitterFixed = true;
            this.splitContainer3.Location = new System.Drawing.Point(0, 0);
            this.splitContainer3.Name = "splitContainer3";
            this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer3.Panel1
            // 
            this.splitContainer3.Panel1.Controls.Add(this.tableLayoutPanel3);
            this.splitContainer3.Panel1.Controls.Add(this.splitter1);
            this.splitContainer3.Panel1.Controls.Add(this.panel4);
            // 
            // splitContainer3.Panel2
            // 
            this.splitContainer3.Panel2.Controls.Add(this.panel5);
            this.splitContainer3.Panel2.Controls.Add(this.panel3);
            this.splitContainer3.Size = new System.Drawing.Size(668, 413);
            this.splitContainer3.SplitterDistance = 349;
            this.splitContainer3.TabIndex = 1;
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.ColumnCount = 1;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
            this.tableLayoutPanel3.Controls.Add(this.lvTest, 0, 0);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 28);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 1;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(668, 321);
            this.tableLayoutPanel3.TabIndex = 12;
            // 
            // lvTest
            // 
            this.lvTest.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvTest.FullRowSelect = true;
            this.lvTest.GridLines = true;
            this.lvTest.Location = new System.Drawing.Point(3, 3);
            this.lvTest.Name = "lvTest";
            this.lvTest.Size = new System.Drawing.Size(662, 315);
            this.lvTest.TabIndex = 11;
            this.lvTest.UseCompatibleStateImageBehavior = false;
            this.lvTest.View = System.Windows.Forms.View.Details;
            this.lvTest.SelectedIndexChanged += new System.EventHandler(this.lvTest_SelectedIndexChanged);
            // 
            // splitter1
            // 
            this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
            this.splitter1.Location = new System.Drawing.Point(0, 25);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(668, 3);
            this.splitter1.TabIndex = 10;
            this.splitter1.TabStop = false;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.label4);
            this.panel4.Controls.Add(this.panel6);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(668, 25);
            this.panel4.TabIndex = 9;
            // 
            // 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.Location = new System.Drawing.Point(3, 6);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(151, 13);
            this.label4.TabIndex = 1;
            this.label4.Text = "Historical Testing Volume";
            // 
            // panel6
            // 
            this.panel6.Controls.Add(this.lbtImport);
            this.panel6.Controls.Add(this.lbtRemovetest);
            this.panel6.Controls.Add(this.lbtAddtest);
            this.panel6.Controls.Add(this.lbtAddduration);
            this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel6.Location = new System.Drawing.Point(198, 0);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(470, 25);
            this.panel6.TabIndex = 4;
            // 
            // lbtImport
            // 
            this.lbtImport.AutoSize = true;
            this.lbtImport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtImport.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtImport.Location = new System.Drawing.Point(9, 6);
            this.lbtImport.Name = "lbtImport";
            this.lbtImport.Size = new System.Drawing.Size(133, 13);
            this.lbtImport.TabIndex = 4;
            this.lbtImport.TabStop = true;
            this.lbtImport.Text = "Import Testing Volume";
            this.lbtImport.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtImport_LinkClicked);
            // 
            // lbtRemovetest
            // 
            this.lbtRemovetest.AutoSize = true;
            this.lbtRemovetest.Enabled = false;
            this.lbtRemovetest.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtRemovetest.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtRemovetest.Location = new System.Drawing.Point(337, 6);
            this.lbtRemovetest.Name = "lbtRemovetest";
            this.lbtRemovetest.Size = new System.Drawing.Size(127, 13);
            this.lbtRemovetest.TabIndex = 0;
            this.lbtRemovetest.TabStop = true;
            this.lbtRemovetest.Text = "Remove Test Volume";
            this.lbtRemovetest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtRemovetest_LinkClicked);
            // 
            // lbtAddtest
            // 
            this.lbtAddtest.AutoSize = true;
            this.lbtAddtest.Enabled = false;
            this.lbtAddtest.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddtest.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddtest.Location = new System.Drawing.Point(144, 6);
            this.lbtAddtest.Name = "lbtAddtest";
            this.lbtAddtest.Size = new System.Drawing.Size(76, 13);
            this.lbtAddtest.TabIndex = 0;
            this.lbtAddtest.TabStop = true;
            this.lbtAddtest.Text = "Add By Test";
            this.lbtAddtest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddtest_LinkClicked);
            // 
            // lbtAddduration
            // 
            this.lbtAddduration.AutoSize = true;
            this.lbtAddduration.Enabled = false;
            this.lbtAddduration.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbtAddduration.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.lbtAddduration.Location = new System.Drawing.Point(226, 6);
            this.lbtAddduration.Name = "lbtAddduration";
            this.lbtAddduration.Size = new System.Drawing.Size(103, 13);
            this.lbtAddduration.TabIndex = 2;
            this.lbtAddduration.TabStop = true;
            this.lbtAddduration.Text = "Add Test Volume";
            this.lbtAddduration.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbtAddduration_LinkClicked);
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.txtPcount);
            this.panel5.Controls.Add(this.txtSitename);
            this.panel5.Controls.Add(this.label3);
            this.panel5.Controls.Add(this.label6);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel5.Location = new System.Drawing.Point(0, 0);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(349, 60);
            this.panel5.TabIndex = 7;
            // 
            // txtPcount
            // 
            this.txtPcount.BackColor = System.Drawing.SystemColors.Info;
            this.txtPcount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtPcount.Enabled = false;
            this.txtPcount.Location = new System.Drawing.Point(102, 31);
            this.txtPcount.Name = "txtPcount";
            this.txtPcount.ReadOnly = true;
            this.txtPcount.Size = new System.Drawing.Size(100, 20);
            this.txtPcount.TabIndex = 4;
            // 
            // txtSitename
            // 
            this.txtSitename.BackColor = System.Drawing.SystemColors.Info;
            this.txtSitename.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtSitename.Enabled = false;
            this.txtSitename.Location = new System.Drawing.Point(102, 8);
            this.txtSitename.Name = "txtSitename";
            this.txtSitename.ReadOnly = true;
            this.txtSitename.Size = new System.Drawing.Size(230, 20);
            this.txtSitename.TabIndex = 3;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location = new System.Drawing.Point(5, 14);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(97, 14);
            this.label3.TabIndex = 0;
            this.label3.Text = "Active Category:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(5, 37);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(70, 14);
            this.label6.TabIndex = 2;
            this.label6.Text = "Test Count:";
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.txtTotalpcount);
            this.panel3.Controls.Add(this.txttotalsite);
            this.panel3.Controls.Add(this.label9);
            this.panel3.Controls.Add(this.label8);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel3.Location = new System.Drawing.Point(424, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(244, 60);
            this.panel3.TabIndex = 6;
            // 
            // txtTotalpcount
            // 
            this.txtTotalpcount.BackColor = System.Drawing.SystemColors.Info;
            this.txtTotalpcount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtTotalpcount.Enabled = false;
            this.txtTotalpcount.Location = new System.Drawing.Point(133, 32);
            this.txtTotalpcount.Name = "txtTotalpcount";
            this.txtTotalpcount.ReadOnly = true;
            this.txtTotalpcount.Size = new System.Drawing.Size(100, 20);
            this.txtTotalpcount.TabIndex = 8;
            // 
            // txttotalsite
            // 
            this.txttotalsite.BackColor = System.Drawing.SystemColors.Info;
            this.txttotalsite.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txttotalsite.Enabled = false;
            this.txttotalsite.Location = new System.Drawing.Point(133, 9);
            this.txttotalsite.Name = "txttotalsite";
            this.txttotalsite.ReadOnly = true;
            this.txttotalsite.Size = new System.Drawing.Size(100, 20);
            this.txttotalsite.TabIndex = 7;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(5, 37);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(99, 14);
            this.label9.TabIndex = 5;
            this.label9.Text = "Total Test Count:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(5, 14);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(89, 14);
            this.label8.TabIndex = 4;
            this.label8.Text = "Total Category:";
            // 
            // panel7
            // 
            this.panel7.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.panel7.Controls.Add(this.lblMedian);
            this.panel7.Controls.Add(this.label7);
            this.panel7.Controls.Add(this.lblDeviation);
            this.panel7.Controls.Add(this.label11);
            this.panel7.Controls.Add(this.lblMean);
            this.panel7.Controls.Add(this.label13);
            this.panel7.Controls.Add(this.chart1);
            this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel7.Location = new System.Drawing.Point(403, 3);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(262, 315);
            this.panel7.TabIndex = 13;
            // 
            // lblMedian
            // 
            this.lblMedian.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblMedian.Location = new System.Drawing.Point(111, 264);
            this.lblMedian.Name = "lblMedian";
            this.lblMedian.Size = new System.Drawing.Size(60, 20);
            this.lblMedian.TabIndex = 19;
            this.lblMedian.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label7
            // 
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.ForeColor = System.Drawing.Color.Black;
            this.label7.Location = new System.Drawing.Point(11, 264);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(94, 23);
            this.label7.TabIndex = 18;
            this.label7.Text = "Median:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblDeviation
            // 
            this.lblDeviation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblDeviation.Location = new System.Drawing.Point(111, 241);
            this.lblDeviation.Name = "lblDeviation";
            this.lblDeviation.Size = new System.Drawing.Size(60, 20);
            this.lblDeviation.TabIndex = 17;
            this.lblDeviation.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label11
            // 
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.ForeColor = System.Drawing.Color.Black;
            this.label11.Location = new System.Drawing.Point(4, 241);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(101, 23);
            this.label11.TabIndex = 16;
            this.label11.Text = "Standard Deviation:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblMean
            // 
            this.lblMean.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblMean.Location = new System.Drawing.Point(111, 218);
            this.lblMean.Name = "lblMean";
            this.lblMean.Size = new System.Drawing.Size(60, 20);
            this.lblMean.TabIndex = 15;
            this.lblMean.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label13
            // 
            this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.Black;
            this.label13.Location = new System.Drawing.Point(4, 218);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(101, 23);
            this.label13.TabIndex = 14;
            this.label13.Text = "Mean:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chart1
            // 
            this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(223)))), ((int)(((byte)(193)))));
            this.chart1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            this.chart1.BorderlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(64)))), ((int)(((byte)(1)))));
            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.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisX.LabelStyle.Interval = 0D;
            chartArea1.AxisX.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisX.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorGrid.Interval = 0D;
            chartArea1.AxisX.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisX.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorTickMark.Interval = 0D;
            chartArea1.AxisX.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisX.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisX2.LabelStyle.Interval = 0D;
            chartArea1.AxisX2.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisX2.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorGrid.Interval = 0D;
            chartArea1.AxisX2.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisX2.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorTickMark.Interval = 0D;
            chartArea1.AxisX2.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisX2.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisX2.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisY.LabelStyle.Interval = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisY.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorGrid.Enabled = false;
            chartArea1.AxisY.MajorGrid.Interval = 0D;
            chartArea1.AxisY.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisY.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorTickMark.Interval = 0D;
            chartArea1.AxisY.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(241)))), ((int)(((byte)(185)))), ((int)(((byte)(168)))));
            stripLine1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine1.IntervalOffset = 20D;
            stripLine1.StripWidth = 50D;
            stripLine1.Text = "Standard Deviation";
            stripLine1.TextLineAlignment = System.Drawing.StringAlignment.Far;
            stripLine2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65)))));
            stripLine2.BorderWidth = 2;
            stripLine2.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine2.IntervalOffset = 40D;
            stripLine2.Text = "Mean";
            stripLine2.TextLineAlignment = System.Drawing.StringAlignment.Far;
            stripLine3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(64)))), ((int)(((byte)(10)))));
            stripLine3.BorderWidth = 2;
            stripLine3.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            stripLine3.IntervalOffset = 50D;
            stripLine3.Text = "Median";
            stripLine3.TextAlignment = System.Drawing.StringAlignment.Near;
            stripLine3.TextLineAlignment = System.Drawing.StringAlignment.Far;
            chartArea1.AxisY.StripLines.Add(stripLine1);
            chartArea1.AxisY.StripLines.Add(stripLine2);
            chartArea1.AxisY.StripLines.Add(stripLine3);
            chartArea1.AxisY2.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
            chartArea1.AxisY2.LabelStyle.Interval = 0D;
            chartArea1.AxisY2.LabelStyle.IntervalOffset = 0D;
            chartArea1.AxisY2.LabelStyle.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorGrid.Interval = 0D;
            chartArea1.AxisY2.MajorGrid.IntervalOffset = 0D;
            chartArea1.AxisY2.MajorGrid.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorTickMark.Interval = 0D;
            chartArea1.AxisY2.MajorTickMark.IntervalOffset = 0D;
            chartArea1.AxisY2.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.AxisY2.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
            chartArea1.BackColor = System.Drawing.Color.Ivory;
            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.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea1.Name = "Default";
            chartArea1.ShadowColor = System.Drawing.Color.Transparent;
            this.chart1.ChartAreas.Add(chartArea1);
            this.chart1.Dock = System.Windows.Forms.DockStyle.Top;
            legend1.Alignment = System.Drawing.StringAlignment.Far;
            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";
            legend1.Position.Auto = false;
            legend1.Position.Height = 15F;
            legend1.Position.Width = 30F;
            legend1.Position.X = 63F;
            legend1.Position.Y = 5F;
            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.BorderWidth = 2;
            series1.ChartArea = "Default";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.CustomProperties = "LabelStyle=\"down\"";
            series1.Legend = "Default";
            series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series1.Name = "Series1";
            series1.ShadowOffset = 1;
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(262, 205);
            this.chart1.TabIndex = 1;
            title1.Name = "Title1";
            title1.Text = "Title";
            this.chart1.Titles.Add(title1);
            // 
            // columnHeader11
            // 
            this.columnHeader11.Text = "Reporting Period";
            this.columnHeader11.Width = 110;
            // 
            // columnHeader10
            // 
            this.columnHeader10.Text = "Tests Performed";
            this.columnHeader10.Width = 80;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Stock Out";
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Adjusted";
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Info";
            this.columnHeader5.Width = 100;
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "Instrument Downtime";
            this.columnHeader6.Width = 114;
            // 
            // SCategory
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Name = "SCategory";
            this.Size = new System.Drawing.Size(921, 551);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel2.ResumeLayout(false);
            this.splitContainer2.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.splitContainer3.Panel1.ResumeLayout(false);
            this.splitContainer3.Panel2.ResumeLayout(false);
            this.splitContainer3.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.panel6.ResumeLayout(false);
            this.panel6.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine2   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 132D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 250D);
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1D, 243D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2D, 343D);
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.mainChart         = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.linkLabel1        = new System.Windows.Forms.LinkLabel();
     this.statusStripBanner = new System.Windows.Forms.StatusStrip();
     this.panelBanner       = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.mainChart)).BeginInit();
     this.SuspendLayout();
     //
     // mainChart
     //
     this.mainChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     chartArea1.AlignmentOrientation = System.Windows.Forms.DataVisualization.Charting.AreaAlignmentOrientations.None;
     chartArea1.AxisX.ArrowStyle     = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.SharpTriangle;
     customLabel1.ForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     customLabel1.FromPosition       = 0.5D;
     customLabel1.LabelMark          = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel1.MarkColor          = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     customLabel1.Text         = "North";
     customLabel1.ToPosition   = 1.5D;
     customLabel2.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     customLabel2.FromPosition = 1.5D;
     customLabel2.LabelMark    = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel2.MarkColor    = System.Drawing.Color.Yellow;
     customLabel2.Text         = "South";
     customLabel2.ToPosition   = 2.5D;
     customLabel3.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     customLabel3.FromPosition = 2.5D;
     customLabel3.LabelMark    = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel3.MarkColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     customLabel3.Text         = "East";
     customLabel3.ToPosition   = 3.5D;
     customLabel4.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     customLabel4.FromPosition = 3.5D;
     customLabel4.LabelMark    = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel4.MarkColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     customLabel4.Text         = "SAB";
     customLabel4.ToPosition   = 4.5D;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.InterlacedColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     chartArea1.AxisX.LineWidth       = 0;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.StripLines.Add(stripLine2);
     chartArea1.AxisX.Title       = "Províncias";
     chartArea1.AxisY.Title       = "Vote";
     chartArea1.BackColor         = System.Drawing.Color.WhiteSmoke;
     chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.LeftRight;
     chartArea1.BackHatchStyle    = System.Windows.Forms.DataVisualization.Charting.ChartHatchStyle.DottedDiamond;
     chartArea1.BorderColor       = System.Drawing.Color.Empty;
     chartArea1.Name = "ChartArea1";
     this.mainChart.ChartAreas.Add(chartArea1);
     legend1.Name           = "Legend1";
     legend1.Title          = "Partidos:";
     legend1.TitleBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.mainChart.Legends.Add(legend1);
     this.mainChart.Location   = new System.Drawing.Point(0, 31);
     this.mainChart.Margin     = new System.Windows.Forms.Padding(4);
     this.mainChart.Name       = "mainChart";
     series1.ChartArea         = "ChartArea1";
     series1.Legend            = "Legend1";
     series1.MarkerBorderColor = System.Drawing.Color.Red;
     series1.MarkerBorderWidth = 50;
     series1.MarkerColor       = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     series1.MarkerSize        = 50;
     series1.MarkerStep        = 3;
     series1.MarkerStyle       = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross;
     series1.Name                 = "Series1";
     dataPoint1.BorderColor       = System.Drawing.Color.DarkGreen;
     dataPoint1.BorderWidth       = 50;
     dataPoint1.Font              = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataPoint2.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     dataPoint2.BorderDashStyle   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDot;
     dataPoint2.MarkerBorderColor = System.Drawing.Color.Sienna;
     dataPoint2.MarkerSize        = 50;
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series2.ChartArea = "ChartArea1";
     series2.Legend    = "Legend1";
     series2.Name      = "Series2";
     series2.Points.Add(dataPoint3);
     series2.Points.Add(dataPoint4);
     series3.ChartArea = "ChartArea1";
     series3.Legend    = "Legend1";
     series3.Name      = "Series3";
     this.mainChart.Series.Add(series1);
     this.mainChart.Series.Add(series2);
     this.mainChart.Series.Add(series3);
     this.mainChart.Size     = new System.Drawing.Size(1284, 665);
     this.mainChart.TabIndex = 5;
     this.mainChart.Text     = "Chart principal";
     title1.Name             = "Title1";
     title1.Text             = "Voting by province:";
     this.mainChart.Titles.Add(title1);
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.linkLabel1.AutoSize  = true;
     this.linkLabel1.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.linkLabel1.Location  = new System.Drawing.Point(13, 700);
     this.linkLabel1.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.linkLabel1.Name      = "linkLabel1";
     this.linkLabel1.Size      = new System.Drawing.Size(186, 16);
     this.linkLabel1.TabIndex  = 8;
     this.linkLabel1.TabStop   = true;
     this.linkLabel1.Text      = "Powered by: Big technologies";
     //
     // statusStripBanner
     //
     this.statusStripBanner.Location = new System.Drawing.Point(0, 719);
     this.statusStripBanner.Name     = "statusStripBanner";
     this.statusStripBanner.Size     = new System.Drawing.Size(1284, 22);
     this.statusStripBanner.TabIndex = 9;
     this.statusStripBanner.Text     = "statusStrip1";
     //
     // panelBanner
     //
     this.panelBanner.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelBanner.Location = new System.Drawing.Point(0, -3);
     this.panelBanner.Name     = "panelBanner";
     this.panelBanner.Size     = new System.Drawing.Size(1362, 27);
     this.panelBanner.TabIndex = 10;
     //
     // Statistics
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1284, 741);
     this.Controls.Add(this.panelBanner);
     this.Controls.Add(this.statusStripBanner);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.mainChart);
     this.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin        = new System.Windows.Forms.Padding(4);
     this.Name          = "Statistics";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Estatísticas";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.mainChart)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title     title1     = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Series    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title     title2     = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Series    series3    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title     title3     = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.dataGridView = new System.Windows.Forms.DataGridView();
     this.chart        = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chart1       = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chart2       = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridView
     //
     this.dataGridView.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView.Location = new System.Drawing.Point(24, 25);
     this.dataGridView.Margin   = new System.Windows.Forms.Padding(6);
     this.dataGridView.Name     = "dataGridView";
     this.dataGridView.Size     = new System.Drawing.Size(922, 1110);
     this.dataGridView.TabIndex = 0;
     //
     // chart
     //
     stripLine1.Interval       = 100D;
     stripLine1.IntervalOffset = 20D;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.Title = "Measurement No";
     chartArea1.AxisY.Title = "X Measurements";
     chartArea1.Name        = "ChartArea1";
     this.chart.ChartAreas.Add(chartArea1);
     this.chart.Location = new System.Drawing.Point(958, 25);
     this.chart.Margin   = new System.Windows.Forms.Padding(6);
     this.chart.Name     = "chart";
     series1.BorderWidth = 3;
     series1.ChartArea   = "ChartArea1";
     series1.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Name        = "Series";
     this.chart.Series.Add(series1);
     this.chart.Size     = new System.Drawing.Size(1034, 347);
     this.chart.TabIndex = 1;
     title1.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     title1.Name         = "X Measurement";
     title1.Text         = "X Coor";
     this.chart.Titles.Add(title1);
     //
     // chart1
     //
     chartArea2.AxisX.Title = "Measurement No.";
     chartArea2.AxisY.Title = "Y measurements";
     chartArea2.Name        = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea2);
     this.chart1.Location = new System.Drawing.Point(958, 410);
     this.chart1.Margin   = new System.Windows.Forms.Padding(6);
     this.chart1.Name     = "chart1";
     series2.BorderWidth  = 3;
     series2.ChartArea    = "ChartArea1";
     series2.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series2.Name         = "Series";
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(1034, 347);
     this.chart1.TabIndex = 2;
     title2.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     title2.Name          = "Title1";
     title2.Text          = "X Coor";
     this.chart1.Titles.Add(title2);
     //
     // chart2
     //
     chartArea3.AxisX.Title = "Measurement No";
     chartArea3.AxisY.Title = "Z measurements";
     chartArea3.Name        = "ChartArea1";
     this.chart2.ChartAreas.Add(chartArea3);
     this.chart2.Location = new System.Drawing.Point(958, 788);
     this.chart2.Margin   = new System.Windows.Forms.Padding(6);
     this.chart2.Name     = "chart2";
     series3.BorderWidth  = 3;
     series3.ChartArea    = "ChartArea1";
     series3.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series3.Name         = "Series";
     this.chart2.Series.Add(series3);
     this.chart2.Size     = new System.Drawing.Size(1034, 347);
     this.chart2.TabIndex = 3;
     title3.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
     title3.Name          = "Title1";
     title3.Text          = "Z coor";
     this.chart2.Titles.Add(title3);
     //
     // ResultStudioForm
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(2016, 1158);
     this.Controls.Add(this.chart2);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.chart);
     this.Controls.Add(this.dataGridView);
     this.Margin = new System.Windows.Forms.Padding(6);
     this.Name   = "ResultStudioForm";
     this.Text   = "Result Studio";
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #25
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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.chart        = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.timer_Update = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
     this.SuspendLayout();
     //
     // chart
     //
     this.chart.BackColor = System.Drawing.SystemColors.Control;
     chartArea1.Area3DStyle.Inclination      = 15;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.LightStyle       = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
     chartArea1.Area3DStyle.PointDepth       = 20;
     chartArea1.Area3DStyle.Rotation         = 10;
     chartArea1.AxisX.Enabled                          = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX.IntervalAutoMode                 = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     chartArea1.AxisX.LabelStyle.Enabled               = false;
     chartArea1.AxisX.MajorGrid.Enabled                = false;
     chartArea1.AxisX.MajorGrid.Interval               = 30D;
     chartArea1.AxisX.MajorGrid.IntervalOffset         = 0D;
     chartArea1.AxisX.MajorGrid.IntervalOffsetType     = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisX.MajorGrid.IntervalType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
     chartArea1.AxisX.MajorTickMark.Enabled            = false;
     chartArea1.AxisX.MajorTickMark.Interval           = 1D;
     chartArea1.AxisX.MajorTickMark.IntervalOffset     = 0D;
     chartArea1.AxisX.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisX.MajorTickMark.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
     stripLine1.Interval     = 30D;
     stripLine1.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Seconds;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX2.Enabled               = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisX2.LabelStyle.Enabled    = false;
     chartArea1.AxisX2.MajorGrid.Enabled     = false;
     chartArea1.AxisX2.MajorTickMark.Enabled = false;
     chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY.LabelAutoFitMaxFontSize          = 7;
     chartArea1.AxisY.LabelAutoFitMinFontSize          = 5;
     chartArea1.AxisY.LabelAutoFitStyle                = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)));
     chartArea1.AxisY.LabelStyle.Font                  = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     chartArea1.AxisY.LabelStyle.Interval              = 0D;
     chartArea1.AxisY.LabelStyle.IntervalOffset        = 0D;
     chartArea1.AxisY.LabelStyle.IntervalOffsetType    = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY.LabelStyle.IntervalType          = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY.LabelStyle.IsEndLabelVisible     = false;
     chartArea1.AxisY.MajorGrid.Enabled                = false;
     chartArea1.AxisY.MajorTickMark.Interval           = 0D;
     chartArea1.AxisY.MajorTickMark.IntervalOffset     = 0D;
     chartArea1.AxisY.MajorTickMark.IntervalOffsetType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY.MajorTickMark.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY.MajorTickMark.TickMarkStyle      = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
     chartArea1.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY2.LabelAutoFitMinFontSize = 10;
     chartArea1.AxisY2.LabelStyle.Enabled      = false;
     chartArea1.AxisY2.LabelStyle.Font         = new System.Drawing.Font("Microsoft Sans Serif", 7F);
     chartArea1.AxisY2.MajorGrid.Enabled       = false;
     chartArea1.AxisY2.MajorTickMark.Enabled   = false;
     chartArea1.BackColor                = System.Drawing.SystemColors.Control;
     chartArea1.CursorX.LineColor        = System.Drawing.Color.Black;
     chartArea1.IsSameFontSizeForAllAxes = true;
     chartArea1.Name = "ChartArea_Value";
     this.chart.ChartAreas.Add(chartArea1);
     this.chart.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.chart.ImeMode  = System.Windows.Forms.ImeMode.Off;
     this.chart.Location = new System.Drawing.Point(0, 0);
     this.chart.Margin   = new System.Windows.Forms.Padding(4);
     this.chart.Name     = "chart";
     this.chart.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series1.ChartArea   = "ChartArea_Value";
     series1.ChartType   = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
     series1.Color       = System.Drawing.Color.Blue;
     series1.Name        = "series_Value";
     series1.XValueType  = System.Windows.Forms.DataVisualization.Charting.ChartValueType.DateTime;
     this.chart.Series.Add(series1);
     this.chart.Size = new System.Drawing.Size(253, 169);
     this.chart.SuppressExceptions = true;
     this.chart.TabIndex           = 0;
     this.chart.GetToolTipText    += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.ToolTipEventArgs>(this.chart_GetToolTipText);
     this.chart.PostPaint         += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(this.chart_PostPaint);
     this.chart.PrePaint          += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(this.chart_PrePaint);
     this.chart.MouseDown         += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
     this.chart.MouseMove         += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
     this.chart.MouseUp           += new System.Windows.Forms.MouseEventHandler(this.chart_MouseUp);
     //
     // timer_Update
     //
     this.timer_Update.Interval = 50;
     this.timer_Update.Tick    += new System.EventHandler(this.timer_Update_Tick);
     //
     // DoubleTrendPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.chart);
     this.Margin       = new System.Windows.Forms.Padding(5);
     this.Name         = "DoubleTrendPanel";
     this.Size         = new System.Drawing.Size(253, 169);
     this.SizeChanged += new System.EventHandler(this.DoubleTrendPanel_SizeChanged);
     ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager            resources  = new System.ComponentModel.ComponentResourceManager(typeof(PlaybackForm));
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.toolStrip1                     = new System.Windows.Forms.ToolStrip();
     this.btnPlay                        = new System.Windows.Forms.ToolStripButton();
     this.btnPause                       = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1            = new System.Windows.Forms.ToolStripSeparator();
     this.labelPage                      = new System.Windows.Forms.ToolStripLabel();
     this.btnPrev                        = new System.Windows.Forms.ToolStripButton();
     this.btnNext                        = new System.Windows.Forms.ToolStripButton();
     this.InformationTSSSBt              = new System.Windows.Forms.ToolStripDropDownButton();
     this.pationInfoToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.detectionInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.hideingToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1                   = new System.Windows.Forms.StatusStrip();
     this.panelVideo                     = new System.Windows.Forms.Panel();
     this.chartWave                      = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.timer                  = new System.Windows.Forms.Timer(this.components);
     this.hsProgress             = new System.Windows.Forms.HScrollBar();
     this.panel_next             = new System.Windows.Forms.Panel();
     this.panel_prev             = new System.Windows.Forms.Panel();
     this.btn_enlarge            = new System.Windows.Forms.Button();
     this.btn_shrink             = new System.Windows.Forms.Button();
     this.hsProgerss_Video       = new System.Windows.Forms.HScrollBar();
     this.PationInfo             = new System.Windows.Forms.ToolStripMenuItem();
     this.DetectionInfo          = new System.Windows.Forms.ToolStripMenuItem();
     this.Hiding                 = new System.Windows.Forms.ToolStripMenuItem();
     this.PationInfoPanel        = new System.Windows.Forms.Panel();
     this.PatAgeL                = new System.Windows.Forms.Label();
     this.PatAgeTextBt           = new System.Windows.Forms.TextBox();
     this.SingleHandAdvanCB      = new System.Windows.Forms.ComboBox();
     this.SingleHandAdvanL       = new System.Windows.Forms.Label();
     this.PatGenderCB            = new System.Windows.Forms.ComboBox();
     this.PatGenderL             = new System.Windows.Forms.Label();
     this.PatNameL               = new System.Windows.Forms.Label();
     this.PatNameTextBt          = new System.Windows.Forms.TextBox();
     this.PatIDL                 = new System.Windows.Forms.Label();
     this.PatIDTextBt            = new System.Windows.Forms.TextBox();
     this.DetectionInfoPanel     = new System.Windows.Forms.Panel();
     this.FilePathL              = new System.Windows.Forms.Label();
     this.FilePathTextBt         = new System.Windows.Forms.TextBox();
     this.DetectionRemarksL      = new System.Windows.Forms.Label();
     this.DetectionRemarksTextBt = new System.Windows.Forms.TextBox();
     this.PharmacyL              = new System.Windows.Forms.Label();
     this.PharmacyTextBt         = new System.Windows.Forms.TextBox();
     this.PationStateL           = new System.Windows.Forms.Label();
     this.PationStateTextBt      = new System.Windows.Forms.TextBox();
     this.PhysicianL             = new System.Windows.Forms.Label();
     this.PhysicianTextBT        = new System.Windows.Forms.TextBox();
     this.TechnicianL            = new System.Windows.Forms.Label();
     this.TechnicianTextBt       = new System.Windows.Forms.TextBox();
     this.RequesterL             = new System.Windows.Forms.Label();
     this.RequesterTextBt        = new System.Windows.Forms.TextBox();
     this.DetectinonL            = new System.Windows.Forms.Label();
     this.DetectionTextBt        = new System.Windows.Forms.TextBox();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartWave)).BeginInit();
     this.PationInfoPanel.SuspendLayout();
     this.DetectionInfoPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnPlay,
         this.btnPause,
         this.toolStripSeparator1,
         this.labelPage,
         this.btnPrev,
         this.btnNext,
         this.InformationTSSSBt
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(942, 25);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // btnPlay
     //
     this.btnPlay.Image = ((System.Drawing.Image)(resources.GetObject("btnPlay.Image")));
     this.btnPlay.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPlay.Name   = "btnPlay";
     this.btnPlay.Size   = new System.Drawing.Size(52, 22);
     this.btnPlay.Text   = "播放";
     this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
     //
     // btnPause
     //
     this.btnPause.Enabled = false;
     this.btnPause.Image   = ((System.Drawing.Image)(resources.GetObject("btnPause.Image")));
     this.btnPause.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPause.Name   = "btnPause";
     this.btnPause.Size   = new System.Drawing.Size(52, 22);
     this.btnPause.Text   = "暂停";
     this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // labelPage
     //
     this.labelPage.AutoSize = false;
     this.labelPage.Name     = "labelPage";
     this.labelPage.Size     = new System.Drawing.Size(77, 22);
     this.labelPage.Text     = "####/####";
     //
     // btnPrev
     //
     this.btnPrev.Enabled = false;
     this.btnPrev.Image   = ((System.Drawing.Image)(resources.GetObject("btnPrev.Image")));
     this.btnPrev.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPrev.Name   = "btnPrev";
     this.btnPrev.Size   = new System.Drawing.Size(46, 22);
     this.btnPrev.Text   = "<<";
     this.btnPrev.Click += new System.EventHandler(this.btnPrev_Click);
     //
     // btnNext
     //
     this.btnNext.Image = ((System.Drawing.Image)(resources.GetObject("btnNext.Image")));
     this.btnNext.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnNext.Name   = "btnNext";
     this.btnNext.Size   = new System.Drawing.Size(46, 22);
     this.btnNext.Text   = ">>";
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // InformationTSSSBt
     //
     this.InformationTSSSBt.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.pationInfoToolStripMenuItem,
         this.detectionInfoToolStripMenuItem,
         this.hideingToolStripMenuItem
     });
     this.InformationTSSSBt.Image = ((System.Drawing.Image)(resources.GetObject("InformationTSSSBt.Image")));
     this.InformationTSSSBt.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.InformationTSSSBt.Name = "InformationTSSSBt";
     this.InformationTSSSBt.Size = new System.Drawing.Size(61, 22);
     this.InformationTSSSBt.Text = "信息";
     //
     // pationInfoToolStripMenuItem
     //
     this.pationInfoToolStripMenuItem.Name   = "pationInfoToolStripMenuItem";
     this.pationInfoToolStripMenuItem.Size   = new System.Drawing.Size(124, 22);
     this.pationInfoToolStripMenuItem.Text   = "病人属性";
     this.pationInfoToolStripMenuItem.Click += new System.EventHandler(this.pationInfoToolStripMenuItem_Click);
     //
     // detectionInfoToolStripMenuItem
     //
     this.detectionInfoToolStripMenuItem.Name   = "detectionInfoToolStripMenuItem";
     this.detectionInfoToolStripMenuItem.Size   = new System.Drawing.Size(124, 22);
     this.detectionInfoToolStripMenuItem.Text   = "检查属性";
     this.detectionInfoToolStripMenuItem.Click += new System.EventHandler(this.detectionInfoToolStripMenuItem_Click);
     //
     // hideingToolStripMenuItem
     //
     this.hideingToolStripMenuItem.Name   = "hideingToolStripMenuItem";
     this.hideingToolStripMenuItem.Size   = new System.Drawing.Size(124, 22);
     this.hideingToolStripMenuItem.Text   = "隐藏";
     this.hideingToolStripMenuItem.Click += new System.EventHandler(this.hideingToolStripMenuItem_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Location = new System.Drawing.Point(0, 560);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(942, 22);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // panelVideo
     //
     this.panelVideo.AccessibleRole = System.Windows.Forms.AccessibleRole.Cursor;
     this.panelVideo.Anchor         = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.panelVideo.BackColor      = System.Drawing.SystemColors.ControlDark;
     this.panelVideo.Location       = new System.Drawing.Point(770, 28);
     this.panelVideo.Name           = "panelVideo";
     this.panelVideo.Size           = new System.Drawing.Size(160, 120);
     this.panelVideo.TabIndex       = 2;
     this.panelVideo.Click         += new System.EventHandler(this.panelVideo_Click);
     //
     // chartWave
     //
     this.chartWave.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.LabelStyle.Interval          = 1D;
     chartArea1.AxisX.LabelStyle.IntervalOffset    = 0D;
     chartArea1.AxisX.MajorGrid.Interval           = 1D;
     chartArea1.AxisX.MajorGrid.IntervalOffset     = 1D;
     chartArea1.AxisX.MajorGrid.LineColor          = System.Drawing.Color.LightSalmon;
     chartArea1.AxisX.MajorGrid.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisX.MajorTickMark.Interval       = 1D;
     chartArea1.AxisX.MajorTickMark.IntervalOffset = 0D;
     chartArea1.AxisX.Maximum   = 8D;
     chartArea1.AxisX.Minimum   = 0D;
     stripLine1.BorderColor     = System.Drawing.Color.Orange;
     stripLine1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDot;
     stripLine1.StripWidth      = 0.01D;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisY.InterlacedColor              = System.Drawing.Color.WhiteSmoke;
     chartArea1.AxisY.IsInterlaced                 = true;
     chartArea1.AxisY.LabelStyle.Enabled           = false;
     chartArea1.AxisY.MajorGrid.Interval           = 100D;
     chartArea1.AxisY.MajorGrid.IntervalOffset     = 0D;
     chartArea1.AxisY.MajorGrid.LineColor          = System.Drawing.Color.Transparent;
     chartArea1.AxisY.MajorTickMark.Interval       = 100D;
     chartArea1.AxisY.MajorTickMark.IntervalOffset = 0D;
     chartArea1.AxisY.Maximum = 2000D;
     chartArea1.AxisY.Minimum = 0D;
     chartArea1.Name          = "mainArea";
     this.chartWave.ChartAreas.Add(chartArea1);
     legend1.Enabled = false;
     legend1.Name    = "Legend1";
     this.chartWave.Legends.Add(legend1);
     this.chartWave.Location = new System.Drawing.Point(12, 49);
     this.chartWave.Name     = "chartWave";
     series1.ChartArea       = "mainArea";
     series1.ChartType       = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series1.Legend          = "Legend1";
     series1.Name            = "Series1";
     this.chartWave.Series.Add(series1);
     this.chartWave.Size     = new System.Drawing.Size(752, 508);
     this.chartWave.TabIndex = 3;
     this.chartWave.Text     = "chart1";
     //
     // timer
     //
     this.timer.Tick += new System.EventHandler(this.timer_Tick);
     //
     // hsProgress
     //
     this.hsProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.hsProgress.Location             = new System.Drawing.Point(12, 29);
     this.hsProgress.Name                 = "hsProgress";
     this.hsProgress.Size                 = new System.Drawing.Size(752, 17);
     this.hsProgress.TabIndex             = 4;
     this.hsProgress.Scroll              += new System.Windows.Forms.ScrollEventHandler(this.hsProgress_ValueChanged);
     this.hsProgress.MouseCaptureChanged += new System.EventHandler(this.hsProgress_MouseCaptureChanged);
     //
     // panel_next
     //
     this.panel_next.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.panel_next.AutoScroll = true;
     this.panel_next.BackColor  = System.Drawing.Color.White;
     this.panel_next.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.panel_next.Location   = new System.Drawing.Point(718, 49);
     this.panel_next.Margin     = new System.Windows.Forms.Padding(0, 3, 30, 3);
     this.panel_next.Name       = "panel_next";
     this.panel_next.Size       = new System.Drawing.Size(37, 460);
     this.panel_next.TabIndex   = 5;
     this.panel_next.Click     += new System.EventHandler(this.panel_next_click);
     //
     // panel_prev
     //
     this.panel_prev.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)));
     this.panel_prev.BackColor = System.Drawing.Color.White;
     this.panel_prev.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.panel_prev.Location  = new System.Drawing.Point(12, 49);
     this.panel_prev.Name      = "panel_prev";
     this.panel_prev.Size      = new System.Drawing.Size(35, 460);
     this.panel_prev.TabIndex  = 0;
     this.panel_prev.Visible   = false;
     this.panel_prev.Click    += new System.EventHandler(this.panel_prev_click);
     //
     // btn_enlarge
     //
     this.btn_enlarge.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_enlarge.Location = new System.Drawing.Point(770, 154);
     this.btn_enlarge.Name     = "btn_enlarge";
     this.btn_enlarge.Size     = new System.Drawing.Size(79, 25);
     this.btn_enlarge.TabIndex = 6;
     this.btn_enlarge.Text     = "放大";
     this.btn_enlarge.UseVisualStyleBackColor = true;
     this.btn_enlarge.Click += new System.EventHandler(this.btn_enlarge_Click);
     //
     // btn_shrink
     //
     this.btn_shrink.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_shrink.Location = new System.Drawing.Point(858, 154);
     this.btn_shrink.Name     = "btn_shrink";
     this.btn_shrink.Size     = new System.Drawing.Size(71, 24);
     this.btn_shrink.TabIndex = 7;
     this.btn_shrink.Text     = "缩小";
     this.btn_shrink.UseVisualStyleBackColor = true;
     this.btn_shrink.Click += new System.EventHandler(this.btn_shrink_Click);
     //
     // hsProgerss_Video
     //
     this.hsProgerss_Video.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.hsProgerss_Video.Location = new System.Drawing.Point(12, 539);
     this.hsProgerss_Video.Name     = "hsProgerss_Video";
     this.hsProgerss_Video.Size     = new System.Drawing.Size(743, 17);
     this.hsProgerss_Video.TabIndex = 8;
     this.hsProgerss_Video.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.hsProgerss_Video_Scroll);
     //
     // PationInfo
     //
     this.PationInfo.Name = "PationInfo";
     this.PationInfo.Size = new System.Drawing.Size(158, 22);
     this.PationInfo.Text = "Pation Info";
     //
     // DetectionInfo
     //
     this.DetectionInfo.Name = "DetectionInfo";
     this.DetectionInfo.Size = new System.Drawing.Size(158, 22);
     this.DetectionInfo.Text = "Detection Info";
     //
     // Hiding
     //
     this.Hiding.Name = "Hiding";
     this.Hiding.Size = new System.Drawing.Size(158, 22);
     this.Hiding.Text = "Hiding";
     //
     // PationInfoPanel
     //
     this.PationInfoPanel.AllowDrop = true;
     this.PationInfoPanel.BackColor = System.Drawing.SystemColors.ControlLight;
     this.PationInfoPanel.Controls.Add(this.PatAgeL);
     this.PationInfoPanel.Controls.Add(this.PatAgeTextBt);
     this.PationInfoPanel.Controls.Add(this.SingleHandAdvanCB);
     this.PationInfoPanel.Controls.Add(this.SingleHandAdvanL);
     this.PationInfoPanel.Controls.Add(this.PatGenderCB);
     this.PationInfoPanel.Controls.Add(this.PatGenderL);
     this.PationInfoPanel.Controls.Add(this.PatNameL);
     this.PationInfoPanel.Controls.Add(this.PatNameTextBt);
     this.PationInfoPanel.Controls.Add(this.PatIDL);
     this.PationInfoPanel.Controls.Add(this.PatIDTextBt);
     this.PationInfoPanel.Location   = new System.Drawing.Point(76, 63);
     this.PationInfoPanel.Name       = "PationInfoPanel";
     this.PationInfoPanel.Size       = new System.Drawing.Size(264, 145);
     this.PationInfoPanel.TabIndex   = 1;
     this.PationInfoPanel.Visible    = false;
     this.PationInfoPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PationInfoPanel_MouseDown);
     this.PationInfoPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.PationInfoPanel_MouseMove);
     //
     // PatAgeL
     //
     this.PatAgeL.AllowDrop  = true;
     this.PatAgeL.AutoSize   = true;
     this.PatAgeL.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.PatAgeL.Location   = new System.Drawing.Point(12, 62);
     this.PatAgeL.Name       = "PatAgeL";
     this.PatAgeL.Size       = new System.Drawing.Size(29, 12);
     this.PatAgeL.TabIndex   = 21;
     this.PatAgeL.Text       = "年龄";
     this.PatAgeL.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // PatAgeTextBt
     //
     this.PatAgeTextBt.Enabled   = false;
     this.PatAgeTextBt.Location  = new System.Drawing.Point(59, 57);
     this.PatAgeTextBt.Multiline = true;
     this.PatAgeTextBt.Name      = "PatAgeTextBt";
     this.PatAgeTextBt.Size      = new System.Drawing.Size(190, 20);
     this.PatAgeTextBt.TabIndex  = 20;
     //
     // SingleHandAdvanCB
     //
     this.SingleHandAdvanCB.AllowDrop         = true;
     this.SingleHandAdvanCB.Enabled           = false;
     this.SingleHandAdvanCB.FormattingEnabled = true;
     this.SingleHandAdvanCB.Location          = new System.Drawing.Point(59, 115);
     this.SingleHandAdvanCB.MaxLength         = 32767;
     this.SingleHandAdvanCB.Name     = "SingleHandAdvanCB";
     this.SingleHandAdvanCB.Size     = new System.Drawing.Size(190, 20);
     this.SingleHandAdvanCB.TabIndex = 19;
     //
     // SingleHandAdvanL
     //
     this.SingleHandAdvanL.Location = new System.Drawing.Point(12, 118);
     this.SingleHandAdvanL.Name     = "SingleHandAdvanL";
     this.SingleHandAdvanL.Size     = new System.Drawing.Size(41, 14);
     this.SingleHandAdvanL.TabIndex = 18;
     this.SingleHandAdvanL.Text     = "左右利";
     //
     // PatGenderCB
     //
     this.PatGenderCB.AllowDrop         = true;
     this.PatGenderCB.Enabled           = false;
     this.PatGenderCB.FormattingEnabled = true;
     this.PatGenderCB.Location          = new System.Drawing.Point(59, 85);
     this.PatGenderCB.MaxLength         = 32767;
     this.PatGenderCB.Name     = "PatGenderCB";
     this.PatGenderCB.Size     = new System.Drawing.Size(190, 20);
     this.PatGenderCB.TabIndex = 17;
     //
     // PatGenderL
     //
     this.PatGenderL.AutoSize = true;
     this.PatGenderL.Location = new System.Drawing.Point(12, 88);
     this.PatGenderL.Name     = "PatGenderL";
     this.PatGenderL.Size     = new System.Drawing.Size(29, 12);
     this.PatGenderL.TabIndex = 16;
     this.PatGenderL.Text     = "性别";
     //
     // PatNameL
     //
     this.PatNameL.AllowDrop  = true;
     this.PatNameL.AutoSize   = true;
     this.PatNameL.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.PatNameL.Location   = new System.Drawing.Point(12, 36);
     this.PatNameL.Name       = "PatNameL";
     this.PatNameL.Size       = new System.Drawing.Size(29, 12);
     this.PatNameL.TabIndex   = 3;
     this.PatNameL.Text       = "姓名";
     this.PatNameL.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // PatNameTextBt
     //
     this.PatNameTextBt.Enabled   = false;
     this.PatNameTextBt.Location  = new System.Drawing.Point(59, 31);
     this.PatNameTextBt.Multiline = true;
     this.PatNameTextBt.Name      = "PatNameTextBt";
     this.PatNameTextBt.Size      = new System.Drawing.Size(190, 20);
     this.PatNameTextBt.TabIndex  = 2;
     //
     // PatIDL
     //
     this.PatIDL.AutoSize = true;
     this.PatIDL.Location = new System.Drawing.Point(12, 8);
     this.PatIDL.Name     = "PatIDL";
     this.PatIDL.Size     = new System.Drawing.Size(41, 12);
     this.PatIDL.TabIndex = 1;
     this.PatIDL.Text     = "病人ID";
     //
     // PatIDTextBt
     //
     this.PatIDTextBt.Enabled   = false;
     this.PatIDTextBt.Location  = new System.Drawing.Point(59, 5);
     this.PatIDTextBt.Multiline = true;
     this.PatIDTextBt.Name      = "PatIDTextBt";
     this.PatIDTextBt.Size      = new System.Drawing.Size(190, 20);
     this.PatIDTextBt.TabIndex  = 0;
     //
     // DetectionInfoPanel
     //
     this.DetectionInfoPanel.BackColor = System.Drawing.SystemColors.ControlLight;
     this.DetectionInfoPanel.Controls.Add(this.FilePathL);
     this.DetectionInfoPanel.Controls.Add(this.FilePathTextBt);
     this.DetectionInfoPanel.Controls.Add(this.DetectionRemarksL);
     this.DetectionInfoPanel.Controls.Add(this.DetectionRemarksTextBt);
     this.DetectionInfoPanel.Controls.Add(this.PharmacyL);
     this.DetectionInfoPanel.Controls.Add(this.PharmacyTextBt);
     this.DetectionInfoPanel.Controls.Add(this.PationStateL);
     this.DetectionInfoPanel.Controls.Add(this.PationStateTextBt);
     this.DetectionInfoPanel.Controls.Add(this.PhysicianL);
     this.DetectionInfoPanel.Controls.Add(this.PhysicianTextBT);
     this.DetectionInfoPanel.Controls.Add(this.TechnicianL);
     this.DetectionInfoPanel.Controls.Add(this.TechnicianTextBt);
     this.DetectionInfoPanel.Controls.Add(this.RequesterL);
     this.DetectionInfoPanel.Controls.Add(this.RequesterTextBt);
     this.DetectionInfoPanel.Controls.Add(this.DetectinonL);
     this.DetectionInfoPanel.Controls.Add(this.DetectionTextBt);
     this.DetectionInfoPanel.Location   = new System.Drawing.Point(76, 63);
     this.DetectionInfoPanel.Name       = "DetectionInfoPanel";
     this.DetectionInfoPanel.Size       = new System.Drawing.Size(280, 291);
     this.DetectionInfoPanel.TabIndex   = 2;
     this.DetectionInfoPanel.Visible    = false;
     this.DetectionInfoPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.DetectionInfoPanel_MouseDown);
     this.DetectionInfoPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.DetectionInfoPanel_MouseMove);
     //
     // FilePathL
     //
     this.FilePathL.AutoSize = true;
     this.FilePathL.Location = new System.Drawing.Point(13, 245);
     this.FilePathL.Name     = "FilePathL";
     this.FilePathL.Size     = new System.Drawing.Size(53, 12);
     this.FilePathL.TabIndex = 43;
     this.FilePathL.Text     = "文件路径";
     //
     // FilePathTextBt
     //
     this.FilePathTextBt.Enabled    = false;
     this.FilePathTextBt.Location   = new System.Drawing.Point(72, 223);
     this.FilePathTextBt.Multiline  = true;
     this.FilePathTextBt.Name       = "FilePathTextBt";
     this.FilePathTextBt.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.FilePathTextBt.Size       = new System.Drawing.Size(190, 56);
     this.FilePathTextBt.TabIndex   = 42;
     //
     // DetectionRemarksL
     //
     this.DetectionRemarksL.AutoSize = true;
     this.DetectionRemarksL.Location = new System.Drawing.Point(13, 182);
     this.DetectionRemarksL.Name     = "DetectionRemarksL";
     this.DetectionRemarksL.Size     = new System.Drawing.Size(53, 12);
     this.DetectionRemarksL.TabIndex = 39;
     this.DetectionRemarksL.Text     = "检验备注";
     //
     // DetectionRemarksTextBt
     //
     this.DetectionRemarksTextBt.Enabled    = false;
     this.DetectionRemarksTextBt.Location   = new System.Drawing.Point(72, 159);
     this.DetectionRemarksTextBt.Multiline  = true;
     this.DetectionRemarksTextBt.Name       = "DetectionRemarksTextBt";
     this.DetectionRemarksTextBt.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.DetectionRemarksTextBt.Size       = new System.Drawing.Size(190, 58);
     this.DetectionRemarksTextBt.TabIndex   = 38;
     //
     // PharmacyL
     //
     this.PharmacyL.AutoSize = true;
     this.PharmacyL.Location = new System.Drawing.Point(13, 137);
     this.PharmacyL.Name     = "PharmacyL";
     this.PharmacyL.Size     = new System.Drawing.Size(29, 12);
     this.PharmacyL.TabIndex = 37;
     this.PharmacyL.Text     = "用药";
     //
     // PharmacyTextBt
     //
     this.PharmacyTextBt.Enabled   = false;
     this.PharmacyTextBt.Location  = new System.Drawing.Point(72, 133);
     this.PharmacyTextBt.Multiline = true;
     this.PharmacyTextBt.Name      = "PharmacyTextBt";
     this.PharmacyTextBt.Size      = new System.Drawing.Size(190, 20);
     this.PharmacyTextBt.TabIndex  = 36;
     //
     // PationStateL
     //
     this.PationStateL.AutoSize = true;
     this.PationStateL.Location = new System.Drawing.Point(13, 111);
     this.PationStateL.Name     = "PationStateL";
     this.PationStateL.Size     = new System.Drawing.Size(53, 12);
     this.PationStateL.TabIndex = 35;
     this.PationStateL.Text     = "病人状态";
     //
     // PationStateTextBt
     //
     this.PationStateTextBt.Enabled   = false;
     this.PationStateTextBt.Location  = new System.Drawing.Point(72, 107);
     this.PationStateTextBt.Multiline = true;
     this.PationStateTextBt.Name      = "PationStateTextBt";
     this.PationStateTextBt.Size      = new System.Drawing.Size(190, 20);
     this.PationStateTextBt.TabIndex  = 34;
     //
     // PhysicianL
     //
     this.PhysicianL.AutoSize = true;
     this.PhysicianL.Location = new System.Drawing.Point(13, 85);
     this.PhysicianL.Name     = "PhysicianL";
     this.PhysicianL.Size     = new System.Drawing.Size(29, 12);
     this.PhysicianL.TabIndex = 29;
     this.PhysicianL.Text     = "医师";
     //
     // PhysicianTextBT
     //
     this.PhysicianTextBT.Enabled   = false;
     this.PhysicianTextBT.Location  = new System.Drawing.Point(72, 81);
     this.PhysicianTextBT.Multiline = true;
     this.PhysicianTextBT.Name      = "PhysicianTextBT";
     this.PhysicianTextBT.Size      = new System.Drawing.Size(190, 20);
     this.PhysicianTextBT.TabIndex  = 28;
     //
     // TechnicianL
     //
     this.TechnicianL.AutoSize = true;
     this.TechnicianL.Location = new System.Drawing.Point(13, 60);
     this.TechnicianL.Name     = "TechnicianL";
     this.TechnicianL.Size     = new System.Drawing.Size(29, 12);
     this.TechnicianL.TabIndex = 27;
     this.TechnicianL.Text     = "技师";
     //
     // TechnicianTextBt
     //
     this.TechnicianTextBt.Enabled   = false;
     this.TechnicianTextBt.Location  = new System.Drawing.Point(72, 56);
     this.TechnicianTextBt.Multiline = true;
     this.TechnicianTextBt.Name      = "TechnicianTextBt";
     this.TechnicianTextBt.Size      = new System.Drawing.Size(190, 20);
     this.TechnicianTextBt.TabIndex  = 26;
     //
     // RequesterL
     //
     this.RequesterL.AutoSize = true;
     this.RequesterL.Location = new System.Drawing.Point(13, 34);
     this.RequesterL.Name     = "RequesterL";
     this.RequesterL.Size     = new System.Drawing.Size(41, 12);
     this.RequesterL.TabIndex = 25;
     this.RequesterL.Text     = "申请者";
     //
     // RequesterTextBt
     //
     this.RequesterTextBt.Enabled   = false;
     this.RequesterTextBt.Location  = new System.Drawing.Point(72, 30);
     this.RequesterTextBt.Multiline = true;
     this.RequesterTextBt.Name      = "RequesterTextBt";
     this.RequesterTextBt.Size      = new System.Drawing.Size(190, 20);
     this.RequesterTextBt.TabIndex  = 24;
     //
     // DetectinonL
     //
     this.DetectinonL.AutoSize = true;
     this.DetectinonL.Location = new System.Drawing.Point(13, 8);
     this.DetectinonL.Name     = "DetectinonL";
     this.DetectinonL.Size     = new System.Drawing.Size(41, 12);
     this.DetectinonL.TabIndex = 21;
     this.DetectinonL.Text     = "检查号";
     //
     // DetectionTextBt
     //
     this.DetectionTextBt.Enabled   = false;
     this.DetectionTextBt.Location  = new System.Drawing.Point(72, 4);
     this.DetectionTextBt.Multiline = true;
     this.DetectionTextBt.Name      = "DetectionTextBt";
     this.DetectionTextBt.Size      = new System.Drawing.Size(190, 20);
     this.DetectionTextBt.TabIndex  = 20;
     //
     // PlaybackForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(942, 582);
     this.Controls.Add(this.panelVideo);
     this.Controls.Add(this.PationInfoPanel);
     this.Controls.Add(this.DetectionInfoPanel);
     this.Controls.Add(this.chartWave);
     this.Controls.Add(this.hsProgerss_Video);
     this.Controls.Add(this.btn_shrink);
     this.Controls.Add(this.btn_enlarge);
     this.Controls.Add(this.panel_prev);
     this.Controls.Add(this.panel_next);
     this.Controls.Add(this.hsProgress);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "PlaybackForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "脑电视频回放";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.PlaybackForm_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartWave)).EndInit();
     this.PationInfoPanel.ResumeLayout(false);
     this.PationInfoPanel.PerformLayout();
     this.DetectionInfoPanel.ResumeLayout(false);
     this.DetectionInfoPanel.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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GradientChart));
     System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation verticalLineAnnotation1 = new System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Title     title1     = new System.Windows.Forms.DataVisualization.Charting.Title();
     this.calculationPendingLabel = new System.Windows.Forms.Label();
     this.calculationPendingTimer = new System.Windows.Forms.Timer(this.components);
     this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
     this.configurationButton = new System.Windows.Forms.Button();
     this.toolTip             = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
     this.SuspendLayout();
     //
     // calculationPendingLabel
     //
     this.calculationPendingLabel.BackColor  = System.Drawing.Color.White;
     this.calculationPendingLabel.Image      = HeuristicLab.Common.Resources.VSImageLibrary.Timer;
     this.calculationPendingLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.calculationPendingLabel.Location   = new System.Drawing.Point(3, 3);
     this.calculationPendingLabel.Margin     = new System.Windows.Forms.Padding(0);
     this.calculationPendingLabel.Name       = "calculationPendingLabel";
     this.calculationPendingLabel.Size       = new System.Drawing.Size(17, 17);
     this.calculationPendingLabel.TabIndex   = 1;
     this.calculationPendingLabel.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.calculationPendingLabel.Visible    = false;
     //
     // calculationPendingTimer
     //
     this.calculationPendingTimer.Tick += new System.EventHandler(this.calculationPendingTimer_Tick);
     //
     // chart
     //
     this.chart.AllowDrop = true;
     verticalLineAnnotation1.AllowMoving     = true;
     verticalLineAnnotation1.AxisXName       = "ChartArea\\rX";
     verticalLineAnnotation1.ClipToChartArea = "ChartArea";
     verticalLineAnnotation1.IsInfinitive    = true;
     verticalLineAnnotation1.LineColor       = System.Drawing.Color.Red;
     verticalLineAnnotation1.LineDashStyle   = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     verticalLineAnnotation1.Name            = "VerticalLineAnnotation";
     verticalLineAnnotation1.YAxisName       = "ChartArea\\rY";
     this.chart.Annotations.Add(verticalLineAnnotation1);
     stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
     stripLine2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.StripLines.Add(stripLine2);
     chartArea1.Name            = "ChartArea";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 90F;
     chartArea1.Position.Width  = 100F;
     chartArea1.Position.Y      = 10F;
     this.chart.ChartAreas.Add(chartArea1);
     this.chart.Dock         = System.Windows.Forms.DockStyle.Fill;
     legend1.Alignment       = System.Drawing.StringAlignment.Center;
     legend1.Docking         = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     legend1.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.ReversedSeriesOrder;
     legend1.LegendStyle     = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend1.Name            = "Default";
     this.chart.Legends.Add(legend1);
     this.chart.Location      = new System.Drawing.Point(0, 0);
     this.chart.Name          = "chart";
     this.chart.Size          = new System.Drawing.Size(453, 308);
     this.chart.TabIndex      = 0;
     title1.Alignment         = System.Drawing.ContentAlignment.TopCenter;
     title1.DockedToChartArea = "ChartArea";
     title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     title1.IsDockedInsideChartArea = false;
     title1.Name = "Title";
     title1.Text = "[Title]";
     this.chart.Titles.Add(title1);
     this.chart.SelectionRangeChanged      += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chart_SelectionRangeChanged);
     this.chart.PostPaint                  += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(this.chart_PostPaint);
     this.chart.AnnotationPositionChanged  += new System.EventHandler(this.chart_AnnotationPositionChanged);
     this.chart.AnnotationPositionChanging += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
     this.chart.DragDrop  += new System.Windows.Forms.DragEventHandler(this.chart_DragDrop);
     this.chart.DragEnter += new System.Windows.Forms.DragEventHandler(this.chart_DragEnter);
     this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
     this.chart.Resize    += new System.EventHandler(this.chart_Resize);
     //
     // configurationButton
     //
     this.configurationButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.configurationButton.AutoSize = true;
     this.configurationButton.Image    = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
     this.configurationButton.Location = new System.Drawing.Point(426, 3);
     this.configurationButton.Name     = "configurationButton";
     this.configurationButton.Size     = new System.Drawing.Size(24, 24);
     this.configurationButton.TabIndex = 2;
     this.configurationButton.TabStop  = false;
     this.toolTip.SetToolTip(this.configurationButton, "Configuration");
     this.configurationButton.UseVisualStyleBackColor = true;
     this.configurationButton.Click += new System.EventHandler(this.config_Click);
     //
     // GradientChart
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.configurationButton);
     this.Controls.Add(this.calculationPendingLabel);
     this.Controls.Add(this.chart);
     this.Name = "GradientChart";
     this.Size = new System.Drawing.Size(453, 308);
     ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #28
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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series    series3    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.histogramPanel = new System.Windows.Forms.Panel();
     this.brightness     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.peakPoint      = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.brightness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.peakPoint)).BeginInit();
     this.SuspendLayout();
     //
     // histogramPanel
     //
     this.histogramPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.histogramPanel.Location    = new System.Drawing.Point(12, 12);
     this.histogramPanel.Name        = "histogramPanel";
     this.histogramPanel.Size        = new System.Drawing.Size(512, 512);
     this.histogramPanel.TabIndex    = 2;
     //
     // brightness
     //
     this.brightness.BackColor                = System.Drawing.Color.Black;
     chartArea1.AxisX.IsLabelAutoFit          = false;
     chartArea1.AxisX.LabelStyle.Font         = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisX.LabelStyle.ForeColor    = System.Drawing.Color.White;
     chartArea1.AxisX.LabelStyle.Interval     = 0D;
     chartArea1.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.LineColor               = System.Drawing.Color.Gray;
     stripLine1.BorderColor = System.Drawing.Color.White;
     stripLine1.ForeColor   = System.Drawing.Color.White;
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisX.Title                     = "Samples";
     chartArea1.AxisX.TitleFont                 = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisX.TitleForeColor            = System.Drawing.Color.White;
     chartArea1.AxisY.IsLabelAutoFit            = false;
     chartArea1.AxisY.LabelStyle.Font           = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.LabelStyle.ForeColor      = System.Drawing.Color.White;
     chartArea1.AxisY.LabelStyle.Interval       = 0D;
     chartArea1.AxisY.LabelStyle.IntervalOffset = 0D;
     chartArea1.AxisY.LabelStyle.IntervalType   = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisY.LineColor                 = System.Drawing.Color.DimGray;
     chartArea1.AxisY.TextOrientation           = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Rotated270;
     chartArea1.AxisY.Title                     = "Brightness";
     chartArea1.AxisY.TitleFont                 = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.TitleForeColor            = System.Drawing.Color.White;
     chartArea1.BackColor       = System.Drawing.Color.Black;
     chartArea1.BorderColor     = System.Drawing.Color.Gray;
     chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     chartArea1.Name            = "bcArea";
     this.brightness.ChartAreas.Add(chartArea1);
     this.brightness.Location = new System.Drawing.Point(540, 12);
     this.brightness.Name     = "brightness";
     this.brightness.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Bright;
     series1.ChartArea        = "bcArea";
     series1.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series1.LabelForeColor   = System.Drawing.Color.White;
     series1.Name             = "bcSeries";
     series1.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series1.YValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.brightness.Series.Add(series1);
     this.brightness.Size     = new System.Drawing.Size(368, 241);
     this.brightness.TabIndex = 4;
     //
     // peakPoint
     //
     this.peakPoint.BackColor                 = System.Drawing.Color.Black;
     chartArea2.AxisX.IsLabelAutoFit          = false;
     chartArea2.AxisX.LabelStyle.Font         = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea2.AxisX.LabelStyle.ForeColor    = System.Drawing.Color.White;
     chartArea2.AxisX.LabelStyle.Interval     = 0D;
     chartArea2.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea2.AxisX.LineColor               = System.Drawing.Color.Gray;
     stripLine2.BorderColor = System.Drawing.Color.White;
     stripLine2.ForeColor   = System.Drawing.Color.White;
     chartArea2.AxisX.StripLines.Add(stripLine2);
     chartArea2.AxisX.Title                     = "Samples";
     chartArea2.AxisX.TitleFont                 = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea2.AxisX.TitleForeColor            = System.Drawing.Color.White;
     chartArea2.AxisY.IsLabelAutoFit            = false;
     chartArea2.AxisY.LabelStyle.Font           = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea2.AxisY.LabelStyle.ForeColor      = System.Drawing.Color.White;
     chartArea2.AxisY.LabelStyle.Interval       = 0D;
     chartArea2.AxisY.LabelStyle.IntervalOffset = 0D;
     chartArea2.AxisY.LabelStyle.IntervalType   = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea2.AxisY.LineColor                 = System.Drawing.Color.DimGray;
     chartArea2.AxisY.TextOrientation           = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Rotated270;
     chartArea2.AxisY.Title                     = "Accumulation";
     chartArea2.AxisY.TitleFont                 = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea2.AxisY.TitleForeColor            = System.Drawing.Color.White;
     chartArea2.BackColor       = System.Drawing.Color.Black;
     chartArea2.BorderColor     = System.Drawing.Color.Gray;
     chartArea2.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     chartArea2.Name            = "bcArea";
     this.peakPoint.ChartAreas.Add(chartArea2);
     legend1.Alignment     = System.Drawing.StringAlignment.Far;
     legend1.BackColor     = System.Drawing.Color.Black;
     legend1.Docking       = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
     legend1.Font          = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     legend1.ForeColor     = System.Drawing.Color.White;
     legend1.IsTextAutoFit = false;
     legend1.LegendStyle   = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Column;
     legend1.Name          = "Legend1";
     legend1.TableStyle    = System.Windows.Forms.DataVisualization.Charting.LegendTableStyle.Tall;
     this.peakPoint.Legends.Add(legend1);
     this.peakPoint.Location = new System.Drawing.Point(540, 259);
     this.peakPoint.Name     = "peakPoint";
     this.peakPoint.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
     series2.ChartArea       = "bcArea";
     series2.ChartType       = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series2.LabelForeColor  = System.Drawing.Color.White;
     series2.Legend          = "Legend1";
     series2.Name            = "High acc";
     series2.XValueType      = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.YValueType      = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series3.ChartArea       = "bcArea";
     series3.ChartType       = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series3.Legend          = "Legend1";
     series3.Name            = "Low acc";
     this.peakPoint.Series.Add(series2);
     this.peakPoint.Series.Add(series3);
     this.peakPoint.Size     = new System.Drawing.Size(368, 264);
     this.peakPoint.TabIndex = 5;
     //
     // DiagnosticsWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.Black;
     this.ClientSize          = new System.Drawing.Size(920, 535);
     this.Controls.Add(this.peakPoint);
     this.Controls.Add(this.brightness);
     this.Controls.Add(this.histogramPanel);
     this.Font            = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "DiagnosticsWindow";
     this.ShowIcon        = false;
     this.Text            = "Control panel";
     ((System.ComponentModel.ISupportInitialize)(this.brightness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.peakPoint)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1    = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1       = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Title       title1        = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2    = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel5  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel6  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel7  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine1    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine2    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine3    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine4    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine5    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel8  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel9  = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel10 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel11 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel12 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel13 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel14 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine6    = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2       = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2       = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint5    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint6    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint7    = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0D, 0D);
     System.Windows.Forms.DataVisualization.Charting.Title       title2        = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmModoAutonomo));
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.graficoCancelamento = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label3       = new System.Windows.Forms.Label();
     this.graficoVenda = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.toolTip1     = new System.Windows.Forms.ToolTip(this.components);
     this.button2      = new System.Windows.Forms.Button();
     this.pictureBox2  = new System.Windows.Forms.PictureBox();
     this.pictureBox1  = new System.Windows.Forms.PictureBox();
     this.txtLogin     = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.graficoCancelamento)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.graficoVenda)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.AutoSize     = true;
     this.label2.Font         = new System.Drawing.Font("Tw Cen MT Condensed", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location     = new System.Drawing.Point(10, 252);
     this.label2.Margin       = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name         = "label2";
     this.label2.Size         = new System.Drawing.Size(264, 51);
     this.label2.TabIndex     = 9;
     this.label2.Text         = "Visualizar Graficos";
     this.label2.Click       += new System.EventHandler(this.Label2_Click);
     this.label2.DoubleClick += new System.EventHandler(this.Label2_DoubleClick);
     this.label2.MouseLeave  += new System.EventHandler(this.Label2_MouseLeave);
     this.label2.MouseMove   += new System.Windows.Forms.MouseEventHandler(this.Label2_MouseMove);
     //
     // label1
     //
     this.label1.AutoSize    = true;
     this.label1.Font        = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location    = new System.Drawing.Point(10, 192);
     this.label1.Margin      = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(122, 29);
     this.label1.TabIndex    = 8;
     this.label1.Text        = "Autônomo";
     this.label1.MouseLeave += new System.EventHandler(this.Label1_MouseLeave);
     this.label1.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.Label1_MouseMove);
     //
     // graficoCancelamento
     //
     this.graficoCancelamento.BorderlineDashStyle  = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     this.graficoCancelamento.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.Enable3D = true;
     chartArea1.Name = "ChartArea1";
     this.graficoCancelamento.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.graficoCancelamento.Legends.Add(legend1);
     this.graficoCancelamento.Location = new System.Drawing.Point(20, 582);
     this.graficoCancelamento.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.graficoCancelamento.Name     = "graficoCancelamento";
     series1.ChartArea = "ChartArea1";
     series1.Legend    = "Legend1";
     series1.Name      = "Series1";
     this.graficoCancelamento.Series.Add(series1);
     this.graficoCancelamento.Size     = new System.Drawing.Size(450, 232);
     this.graficoCancelamento.TabIndex = 11;
     this.graficoCancelamento.Text     = "Cancelamentos";
     title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     title1.Name = "Title2";
     title1.Text = "Cancelamentos";
     this.graficoCancelamento.Titles.Add(title1);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(14, 306);
     this.label3.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(33, 20);
     this.label3.TabIndex = 10;
     this.label3.Text     = "Olá";
     //
     // graficoVenda
     //
     this.graficoVenda.BackSecondaryColor   = System.Drawing.Color.White;
     this.graficoVenda.BorderlineColor      = System.Drawing.Color.DarkGray;
     this.graficoVenda.BorderlineDashStyle  = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     this.graficoVenda.BorderSkin.SkinStyle = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea2.Area3DStyle.Enable3D        = true;
     customLabel1.ForeColor = System.Drawing.Color.Black;
     customLabel1.Text      = "Dom";
     customLabel2.ForeColor = System.Drawing.Color.White;
     customLabel2.Text      = "Seg";
     customLabel3.Text      = "Ter";
     customLabel4.Text      = "Qua";
     customLabel5.Text      = "Qui";
     customLabel6.ForeColor = System.Drawing.Color.White;
     customLabel6.Text      = "Sex";
     customLabel7.Text      = "Sáb";
     chartArea2.AxisX.CustomLabels.Add(customLabel1);
     chartArea2.AxisX.CustomLabels.Add(customLabel2);
     chartArea2.AxisX.CustomLabels.Add(customLabel3);
     chartArea2.AxisX.CustomLabels.Add(customLabel4);
     chartArea2.AxisX.CustomLabels.Add(customLabel5);
     chartArea2.AxisX.CustomLabels.Add(customLabel6);
     chartArea2.AxisX.CustomLabels.Add(customLabel7);
     stripLine1.Text = "Sáb";
     stripLine2.Text = "Seg";
     stripLine3.Text = "Ter";
     stripLine4.Text = "Qua";
     stripLine5.Text = "Qui";
     chartArea2.AxisX.StripLines.Add(stripLine1);
     chartArea2.AxisX.StripLines.Add(stripLine2);
     chartArea2.AxisX.StripLines.Add(stripLine3);
     chartArea2.AxisX.StripLines.Add(stripLine4);
     chartArea2.AxisX.StripLines.Add(stripLine5);
     chartArea2.AxisX.Title = "Semana";
     chartArea2.AxisY.Title = "Valor(R$)";
     customLabel8.Text      = "Sáb";
     customLabel9.Text      = "Seg";
     customLabel10.Text     = "Ter";
     customLabel11.Text     = "Qua";
     customLabel12.Text     = "Qui";
     customLabel13.Text     = "Sex";
     customLabel14.Text     = "Dom";
     chartArea2.AxisY2.CustomLabels.Add(customLabel8);
     chartArea2.AxisY2.CustomLabels.Add(customLabel9);
     chartArea2.AxisY2.CustomLabels.Add(customLabel10);
     chartArea2.AxisY2.CustomLabels.Add(customLabel11);
     chartArea2.AxisY2.CustomLabels.Add(customLabel12);
     chartArea2.AxisY2.CustomLabels.Add(customLabel13);
     chartArea2.AxisY2.CustomLabels.Add(customLabel14);
     stripLine6.Text = "Dom";
     chartArea2.AxisY2.StripLines.Add(stripLine6);
     chartArea2.Name = "ChartArea1";
     this.graficoVenda.ChartAreas.Add(chartArea2);
     this.graficoVenda.Cursor = System.Windows.Forms.Cursors.Default;
     legend2.Name             = "Legend1";
     legend2.Title            = "Total \\n de \\n vendas";
     this.graficoVenda.Legends.Add(legend2);
     this.graficoVenda.Location = new System.Drawing.Point(20, 329);
     this.graficoVenda.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.graficoVenda.Name     = "graficoVenda";
     this.graficoVenda.Palette  = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Berry;
     series2.ChartArea          = "ChartArea1";
     series2.Legend             = "Legend1";
     series2.MarkerBorderColor  = System.Drawing.SystemColors.Control;
     series2.Name                 = "Series1";
     dataPoint1.AxisLabel         = "Dom";
     dataPoint1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint1.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint1.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Top;
     dataPoint2.AxisLabel          = "Seg\\n";
     dataPoint2.BackGradientStyle  = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint2.BackImage          = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                     "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint3.AxisLabel         = "Ter\\n";
     dataPoint3.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint3.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint4.AxisLabel         = "Qua\\n";
     dataPoint4.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint4.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint5.AxisLabel         = "Qui";
     dataPoint5.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint5.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint6.AxisLabel         = "Sex";
     dataPoint6.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint6.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     dataPoint7.AxisLabel         = "Sab";
     dataPoint7.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.VerticalCenter;
     dataPoint7.BackImage         = "C:\\Users\\bruno\\source\\repos\\Projeto_VismoNew-master-2-\\imagens\\thumb2-blue-textur" +
                                    "e-background-blue-paint-texture-painted-wall-stone-texture.jpg";
     series2.Points.Add(dataPoint1);
     series2.Points.Add(dataPoint2);
     series2.Points.Add(dataPoint3);
     series2.Points.Add(dataPoint4);
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.XAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
     this.graficoVenda.Series.Add(series2);
     this.graficoVenda.Size     = new System.Drawing.Size(450, 232);
     this.graficoVenda.TabIndex = 13;
     this.graficoVenda.Text     = "Vendas";
     title2.BorderDashStyle     = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     title2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     title2.Name = "Title1";
     title2.Text = "Vendas";
     this.graficoVenda.Titles.Add(title2);
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(464, 852);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(116, 35);
     this.button2.TabIndex = 15;
     this.button2.Text     = "Confirmar";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor       = System.Drawing.Color.DeepSkyBlue;
     this.pictureBox2.BackgroundImage = global::Vismo_New_.Properties.Resources.thumb2_blue_texture_background_blue_paint_texture_painted_wall_stone_texture;
     this.pictureBox2.Image           = global::Vismo_New_.Properties.Resources.Seta_direita_azul_200x200px1;
     this.pictureBox2.Location        = new System.Drawing.Point(10, 5);
     this.pictureBox2.Margin          = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.pictureBox2.Name            = "pictureBox2";
     this.pictureBox2.Size            = new System.Drawing.Size(82, 77);
     this.pictureBox2.SizeMode        = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex        = 12;
     this.pictureBox2.TabStop         = false;
     this.pictureBox2.Click          += new System.EventHandler(this.PictureBox2_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = global::Vismo_New_.Properties.Resources.thumb2_blue_texture_background_blue_paint_texture_painted_wall_stone_texture;
     this.pictureBox1.Location = new System.Drawing.Point(-34, -62);
     this.pictureBox1.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(670, 215);
     this.pictureBox1.TabIndex = 7;
     this.pictureBox1.TabStop  = false;
     //
     // txtLogin
     //
     this.txtLogin.Location = new System.Drawing.Point(426, 178);
     this.txtLogin.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.txtLogin.Name     = "txtLogin";
     this.txtLogin.Size     = new System.Drawing.Size(148, 26);
     this.txtLogin.TabIndex = 16;
     this.txtLogin.Visible  = false;
     //
     // FrmModoAutonomo
     //
     this.AccessibleRole      = System.Windows.Forms.AccessibleRole.None;
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor           = System.Drawing.SystemColors.ButtonHighlight;
     this.ClientSize          = new System.Drawing.Size(608, 749);
     this.Controls.Add(this.txtLogin);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.graficoVenda);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.graficoCancelamento);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.pictureBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FrmModoAutonomo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Modo Autonomo - Vismo";
     this.Load         += new System.EventHandler(this.FrmModoAutonomo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.graficoCancelamento)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.graficoVenda)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #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.ImageAnnotation  imageAnnotation1  = new System.Windows.Forms.DataVisualization.Charting.ImageAnnotation();
     System.Windows.Forms.DataVisualization.Charting.ChartArea        chartArea1        = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel1      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel2      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel3      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel4      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel5      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel6      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel7      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel8      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel9      = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel10     = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel      customLabel11     = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine1        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine2        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine3        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine4        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine5        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.StripLine        stripLine6        = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend           legend1           = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn1 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn2 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.Legend           legend2           = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn3 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.LegendCellColumn legendCellColumn4 = new System.Windows.Forms.DataVisualization.Charting.LegendCellColumn();
     System.Windows.Forms.DataVisualization.Charting.Series           series1           = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.Series           series2           = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Chart));
     this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // chart1
     //
     this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     imageAnnotation1.AnchorAlignment      = System.Drawing.ContentAlignment.TopCenter;
     imageAnnotation1.Height               = 12D;
     imageAnnotation1.IsSizeAlwaysRelative = false;
     imageAnnotation1.Name  = "logo";
     imageAnnotation1.Width = 15D;
     imageAnnotation1.X     = 10D;
     imageAnnotation1.Y     = 0D;
     this.chart1.Annotations.Add(imageAnnotation1);
     this.chart1.BackColor                         = System.Drawing.Color.Black;
     chartArea1.AxisX.Interval                     = 30D;
     chartArea1.AxisX.IntervalOffset               = 1D;
     chartArea1.AxisX.IntervalOffsetType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.IntervalType                 = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.IsMarginVisible              = false;
     chartArea1.AxisX.LabelAutoFitMaxFontSize      = 12;
     chartArea1.AxisX.LabelAutoFitMinFontSize      = 12;
     chartArea1.AxisX.LabelStyle.Enabled           = false;
     chartArea1.AxisX.MajorGrid.Enabled            = false;
     chartArea1.AxisX.MajorGrid.Interval           = 30D;
     chartArea1.AxisX.MajorGrid.IntervalOffset     = 30D;
     chartArea1.AxisX.MajorGrid.LineColor          = System.Drawing.Color.DimGray;
     chartArea1.AxisX.MajorGrid.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisX.MajorTickMark.Enabled        = false;
     chartArea1.AxisX.MajorTickMark.Interval       = 15D;
     chartArea1.AxisX.Minimum                      = 0D;
     chartArea1.AxisX.ScaleView.Position           = 0D;
     chartArea1.AxisX.ScaleView.Size               = 120D;
     chartArea1.AxisX.ScaleView.SizeType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.AxisX.ScaleView.SmallScrollMinSize = 0D;
     chartArea1.AxisX.ScaleView.Zoomable           = false;
     chartArea1.AxisX.ScrollBar.Enabled            = false;
     chartArea1.AxisY.Crossing                     = -0.5D;
     customLabel1.ForeColor                        = System.Drawing.Color.White;
     customLabel1.Text          = "Baubiologie\nIdéal";
     customLabel1.ToPosition    = 0.06D;
     customLabel2.ForeColor     = System.Drawing.Color.White;
     customLabel2.FromPosition  = 0.06D;
     customLabel2.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel2.LabelMark     = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel2.ToPosition    = 0.06D;
     customLabel3.ForeColor     = System.Drawing.Color.White;
     customLabel3.FromPosition  = 0.06D;
     customLabel3.Text          = "Baubiologie\nMax";
     customLabel3.ToPosition    = 0.6D;
     customLabel4.ForeColor     = System.Drawing.Color.White;
     customLabel4.FromPosition  = 0.6D;
     customLabel4.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel4.LabelMark     = System.Windows.Forms.DataVisualization.Charting.LabelMarkStyle.SideMark;
     customLabel4.ToPosition    = 0.6D;
     customLabel5.ForeColor     = System.Drawing.Color.White;
     customLabel5.FromPosition  = 0.3D;
     customLabel5.Text          = "Recom-\nmandation\nUE 0.6 V/m";
     customLabel5.ToPosition    = 0.9D;
     customLabel6.ForeColor     = System.Drawing.Color.White;
     customLabel6.FromPosition  = 6D;
     customLabel6.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel6.ToPosition    = 6D;
     customLabel7.ForeColor     = System.Drawing.Color.White;
     customLabel7.FromPosition  = 3D;
     customLabel7.Text          = "Seuil légal\nSuisse\nRussie\nPologne\nBulgarie\nItalie";
     customLabel7.ToPosition    = 9D;
     customLabel8.FromPosition  = 12D;
     customLabel8.GridTicks     = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel8.ToPosition    = 12D;
     customLabel9.ForeColor     = System.Drawing.Color.White;
     customLabel9.FromPosition  = 9D;
     customLabel9.Text          = "Seuil légal\nChine";
     customLabel9.ToPosition    = 15D;
     customLabel10.FromPosition = 20D;
     customLabel10.GridTicks    = ((System.Windows.Forms.DataVisualization.Charting.GridTickTypes)((System.Windows.Forms.DataVisualization.Charting.GridTickTypes.TickMark | System.Windows.Forms.DataVisualization.Charting.GridTickTypes.Gridline)));
     customLabel10.ToPosition   = 20D;
     customLabel11.FromPosition = 17D;
     customLabel11.Text         = "Seuil légal\nLituanie\nInde";
     customLabel11.ToPosition   = 23D;
     chartArea1.AxisY.CustomLabels.Add(customLabel1);
     chartArea1.AxisY.CustomLabels.Add(customLabel2);
     chartArea1.AxisY.CustomLabels.Add(customLabel3);
     chartArea1.AxisY.CustomLabels.Add(customLabel4);
     chartArea1.AxisY.CustomLabels.Add(customLabel5);
     chartArea1.AxisY.CustomLabels.Add(customLabel6);
     chartArea1.AxisY.CustomLabels.Add(customLabel7);
     chartArea1.AxisY.CustomLabels.Add(customLabel8);
     chartArea1.AxisY.CustomLabels.Add(customLabel9);
     chartArea1.AxisY.CustomLabels.Add(customLabel10);
     chartArea1.AxisY.CustomLabels.Add(customLabel11);
     chartArea1.AxisY.Enabled                 = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY.Interval                = 1D;
     chartArea1.AxisY.IsLabelAutoFit          = false;
     chartArea1.AxisY.LabelAutoFitMaxFontSize = 12;
     chartArea1.AxisY.LabelAutoFitMinFontSize = 10;
     chartArea1.AxisY.LabelAutoFitStyle       = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)(((((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.StaggeredLabels | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep30)
                                                                                                                         | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep45)
                                                                                                                        | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.LabelsAngleStep90)
                                                                                                                       | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
     chartArea1.AxisY.LabelStyle.Font             = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.LabelStyle.ForeColor        = System.Drawing.Color.White;
     chartArea1.AxisY.MajorTickMark.LineColor     = System.Drawing.Color.White;
     chartArea1.AxisY.MajorTickMark.LineWidth     = 3;
     chartArea1.AxisY.MajorTickMark.Size          = 1.5F;
     chartArea1.AxisY.MajorTickMark.TickMarkStyle = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
     chartArea1.AxisY.Maximum           = 20D;
     chartArea1.AxisY.MaximumAutoSize   = 15F;
     chartArea1.AxisY.Minimum           = -0.5D;
     chartArea1.AxisY.ScrollBar.Enabled = false;
     stripLine1.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(3)))), ((int)(((byte)(3)))));
     stripLine1.ForeColor         = System.Drawing.Color.White;
     stripLine1.IntervalOffset    = -0.5D;
     stripLine1.StripWidth        = 0.56D;
     stripLine1.TextAlignment     = System.Drawing.StringAlignment.Near;
     stripLine1.TextLineAlignment = System.Drawing.StringAlignment.Center;
     stripLine2.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(73)))), ((int)(((byte)(22)))), ((int)(((byte)(23)))));
     stripLine2.IntervalOffset    = 0.06D;
     stripLine2.StripWidth        = 0.54D;
     stripLine3.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(41)))), ((int)(((byte)(31)))));
     stripLine3.IntervalOffset    = 0.6D;
     stripLine3.StripWidth        = 5.4D;
     stripLine4.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(63)))), ((int)(((byte)(35)))));
     stripLine4.IntervalOffset    = 6D;
     stripLine4.StripWidth        = 6D;
     stripLine5.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(91)))), ((int)(((byte)(33)))));
     stripLine5.IntervalOffset    = 12D;
     stripLine5.StripWidth        = 8D;
     stripLine6.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(122)))), ((int)(((byte)(21)))));
     stripLine6.IntervalOffset    = 20D;
     stripLine6.StripWidth        = 50D;
     chartArea1.AxisY.StripLines.Add(stripLine1);
     chartArea1.AxisY.StripLines.Add(stripLine2);
     chartArea1.AxisY.StripLines.Add(stripLine3);
     chartArea1.AxisY.StripLines.Add(stripLine4);
     chartArea1.AxisY.StripLines.Add(stripLine5);
     chartArea1.AxisY.StripLines.Add(stripLine6);
     chartArea1.AxisY.TitleFont                     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY.TitleForeColor                = System.Drawing.Color.White;
     chartArea1.AxisY2.Crossing                     = -0.5D;
     chartArea1.AxisY2.Enabled                      = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
     chartArea1.AxisY2.Interval                     = 1D;
     chartArea1.AxisY2.IsLabelAutoFit               = false;
     chartArea1.AxisY2.IsMarginVisible              = false;
     chartArea1.AxisY2.LabelAutoFitMinFontSize      = 10;
     chartArea1.AxisY2.LabelStyle.Font              = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chartArea1.AxisY2.LabelStyle.ForeColor         = System.Drawing.Color.White;
     chartArea1.AxisY2.LabelStyle.Format            = "0.0# V/m";
     chartArea1.AxisY2.LabelStyle.IsEndLabelVisible = false;
     chartArea1.AxisY2.LineColor                    = System.Drawing.Color.DimGray;
     chartArea1.AxisY2.MajorGrid.Interval           = 0.5D;
     chartArea1.AxisY2.MajorGrid.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea1.AxisY2.MajorGrid.LineColor          = System.Drawing.Color.DimGray;
     chartArea1.AxisY2.MajorGrid.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisY2.MajorTickMark.Interval       = 0.1D;
     chartArea1.AxisY2.MajorTickMark.LineColor      = System.Drawing.Color.White;
     chartArea1.AxisY2.MajorTickMark.LineWidth      = 2;
     chartArea1.AxisY2.MajorTickMark.Size           = 0.5F;
     chartArea1.AxisY2.MajorTickMark.TickMarkStyle  = System.Windows.Forms.DataVisualization.Charting.TickMarkStyle.AcrossAxis;
     chartArea1.AxisY2.Maximum                      = 20D;
     chartArea1.AxisY2.Minimum                      = -0.5D;
     chartArea1.AxisY2.ScrollBar.Enabled            = false;
     chartArea1.AxisY2.TitleForeColor               = System.Drawing.Color.White;
     chartArea1.BackColor          = System.Drawing.Color.Black;
     chartArea1.BackImageAlignment = System.Windows.Forms.DataVisualization.Charting.ChartImageAlignmentStyle.Top;
     chartArea1.BackImageWrapMode  = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.Unscaled;
     chartArea1.BorderColor        = System.Drawing.Color.Transparent;
     chartArea1.Name            = "ChartArea1";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 100F;
     chartArea1.Position.Width  = 100F;
     this.chart1.ChartAreas.Add(chartArea1);
     legend1.Alignment              = System.Drawing.StringAlignment.Center;
     legend1.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     legend1.BorderColor            = System.Drawing.Color.Transparent;
     legendCellColumn1.ColumnType   = System.Windows.Forms.DataVisualization.Charting.LegendCellColumnType.SeriesSymbol;
     legendCellColumn1.Name         = "Column1";
     legendCellColumn2.Alignment    = System.Drawing.ContentAlignment.MiddleLeft;
     legendCellColumn2.MinimumWidth = 5000;
     legendCellColumn2.Name         = "Column2";
     legend1.CellColumns.Add(legendCellColumn1);
     legend1.CellColumns.Add(legendCellColumn2);
     legend1.DockedToChartArea = "ChartArea1";
     legend1.Docking           = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     legend1.Font                   = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     legend1.ForeColor              = System.Drawing.Color.White;
     legend1.IsTextAutoFit          = false;
     legend1.LegendStyle            = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Column;
     legend1.Name                   = "LegendS1";
     legend1.Position.Auto          = false;
     legend1.Position.Height        = 10F;
     legend1.Position.Width         = 18F;
     legend1.Position.X             = 31F;
     legend1.Position.Y             = 1F;
     legend1.TableStyle             = System.Windows.Forms.DataVisualization.Charting.LegendTableStyle.Wide;
     legend1.TextWrapThreshold      = 50;
     legend1.TitleFont              = new System.Drawing.Font("Microsoft Sans Serif", 2.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     legend2.Alignment              = System.Drawing.StringAlignment.Center;
     legend2.AutoFitMinFontSize     = 12;
     legend2.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     legend2.BorderColor            = System.Drawing.Color.Transparent;
     legendCellColumn3.ColumnType   = System.Windows.Forms.DataVisualization.Charting.LegendCellColumnType.SeriesSymbol;
     legendCellColumn3.Name         = "Column1";
     legendCellColumn4.Alignment    = System.Drawing.ContentAlignment.MiddleLeft;
     legendCellColumn4.MinimumWidth = 5000;
     legendCellColumn4.Name         = "Column2";
     legend2.CellColumns.Add(legendCellColumn3);
     legend2.CellColumns.Add(legendCellColumn4);
     legend2.DockedToChartArea = "ChartArea1";
     legend2.Docking           = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     legend2.Font              = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
     legend2.ForeColor         = System.Drawing.Color.White;
     legend2.IsTextAutoFit     = false;
     legend2.Name              = "LegendS2";
     legend2.Position.Auto     = false;
     legend2.Position.Height   = 10F;
     legend2.Position.Width    = 18F;
     legend2.Position.X        = 51F;
     legend2.Position.Y        = 1F;
     legend2.TextWrapThreshold = 50;
     legend2.TitleFont         = new System.Drawing.Font("Microsoft Sans Serif", 2.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chart1.Legends.Add(legend1);
     this.chart1.Legends.Add(legend2);
     this.chart1.Location     = new System.Drawing.Point(-25, 0);
     this.chart1.Name         = "chart1";
     series1.BorderWidth      = 5;
     series1.ChartArea        = "ChartArea1";
     series1.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series1.Color            = System.Drawing.Color.DodgerBlue;
     series1.CustomProperties = "PointWidth=1";
     series1.Font             = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.LabelBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series1.LabelBorderWidth = 0;
     series1.LabelForeColor   = System.Drawing.Color.White;
     series1.Legend           = "LegendS1";
     series1.Name             = "Series1";
     series1.ShadowColor      = System.Drawing.Color.Empty;
     series1.SmartLabelStyle.CalloutLineColor = System.Drawing.Color.White;
     series1.SmartLabelStyle.Enabled          = false;
     series1.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
     series2.BorderWidth      = 5;
     series2.ChartArea        = "ChartArea1";
     series2.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
     series2.Color            = System.Drawing.Color.YellowGreen;
     series2.CustomProperties = "PointWidth=1";
     series2.Font             = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series2.IsXValueIndexed  = true;
     series2.LabelBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series2.LabelBorderWidth = 0;
     series2.LabelForeColor   = System.Drawing.Color.White;
     series2.Legend           = "LegendS2";
     series2.Name             = "Series2";
     series2.SmartLabelStyle.CalloutLineColor = System.Drawing.Color.White;
     series2.SmartLabelStyle.Enabled          = false;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(1030, 731);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // Chart
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(1008, 729);
     this.Controls.Add(this.chart1);
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name           = "Chart";
     this.Text           = "Remous (graphique)";
     this.FormClosed    += new System.Windows.Forms.FormClosedEventHandler(this.Chart_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #31
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     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.Legend    legend2    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     this.chartMain    = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.controlPanel = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.chartMain)).BeginInit();
     this.controlPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // chartMain
     //
     chartArea1.AlignWithChartArea                  = "ChartArea2";
     chartArea1.AxisX.Interval                      = 1D;
     chartArea1.AxisX.IntervalType                  = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.AxisX.LabelStyle.Angle              = -90;
     chartArea1.AxisX.LabelStyle.Format             = "dd.MM-HH:mm";
     chartArea1.AxisX.LabelStyle.Interval           = 6D;
     chartArea1.AxisX.LabelStyle.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.AxisX.MajorGrid.Interval            = 6D;
     chartArea1.AxisX.MajorGrid.IntervalType        = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.AxisX.MajorGrid.LineColor           = System.Drawing.Color.LightGray;
     chartArea1.AxisX.MajorGrid.LineDashStyle       = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea1.AxisX.MinorGrid.Interval            = 1D;
     chartArea1.AxisX.MinorGrid.IntervalType        = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.AxisX.MinorGrid.LineColor           = System.Drawing.Color.LightGray;
     chartArea1.AxisX.MinorGrid.LineDashStyle       = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea1.AxisX.ScaleView.SizeType            = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.AxisX.ScaleView.SmallScrollSize     = 1D;
     chartArea1.AxisX.ScaleView.SmallScrollSizeType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.AxisX.ScrollBar.IsPositionedInside  = false;
     stripLine1.Interval     = 1D;
     stripLine1.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Days;
     stripLine1.Text         = "new day";
     chartArea1.AxisX.StripLines.Add(stripLine1);
     chartArea1.AxisY.LabelStyle.IsEndLabelVisible = false;
     chartArea1.AxisY.MajorGrid.Interval           = 5D;
     chartArea1.AxisY.MajorGrid.LineColor          = System.Drawing.Color.LightGray;
     chartArea1.AxisY.MajorGrid.LineDashStyle      = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea1.CursorX.IntervalType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea1.CursorX.IsUserEnabled          = true;
     chartArea1.CursorX.IsUserSelectionEnabled = true;
     chartArea1.CursorX.SelectionColor         = System.Drawing.Color.LightBlue;
     chartArea1.CursorY.IntervalType           = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea1.Name                                = "ChartArea1";
     chartArea1.Position.Auto                       = false;
     chartArea1.Position.Height                     = 78.5F;
     chartArea1.Position.Width                      = 91F;
     chartArea1.Position.Y                          = 20F;
     chartArea2.AlignWithChartArea                  = "ChartArea1";
     chartArea2.AxisX.Interval                      = 1D;
     chartArea2.AxisX.IntervalType                  = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea2.AxisX.LabelStyle.Angle              = -90;
     chartArea2.AxisX.LabelStyle.Enabled            = false;
     chartArea2.AxisX.MajorGrid.Interval            = 6D;
     chartArea2.AxisX.MajorGrid.IntervalType        = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea2.AxisX.MajorGrid.LineColor           = System.Drawing.Color.LightGray;
     chartArea2.AxisX.MajorGrid.LineDashStyle       = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisX.MajorTickMark.Enabled         = false;
     chartArea2.AxisX.MinorGrid.Interval            = 1D;
     chartArea2.AxisX.MinorGrid.IntervalType        = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea2.AxisX.MinorGrid.LineColor           = System.Drawing.Color.LightGray;
     chartArea2.AxisX.MinorGrid.LineDashStyle       = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
     chartArea2.AxisX.ScaleView.SizeType            = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea2.AxisX.ScaleView.SmallScrollSize     = 1D;
     chartArea2.AxisX.ScaleView.SmallScrollSizeType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea2.AxisX.ScrollBar.Enabled             = false;
     chartArea2.AxisX.ScrollBar.IsPositionedInside  = false;
     chartArea2.AxisY.LabelStyle.Interval           = 100D;
     chartArea2.AxisY.LabelStyle.IntervalType       = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Auto;
     chartArea2.AxisY.MajorGrid.Interval            = 100D;
     chartArea2.AxisY.MajorGrid.LineColor           = System.Drawing.Color.LightGray;
     chartArea2.AxisY.MajorGrid.LineDashStyle       = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisY.MajorTickMark.Interval        = 100D;
     chartArea2.CursorX.IntervalType                = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
     chartArea2.CursorX.IsUserEnabled               = true;
     chartArea2.CursorX.IsUserSelectionEnabled      = true;
     chartArea2.CursorX.SelectionColor              = System.Drawing.Color.LightBlue;
     chartArea2.CursorY.Interval                    = 10D;
     chartArea2.CursorY.IntervalType                = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
     chartArea2.Name                                = "ChartArea2";
     chartArea2.Position.Auto                       = false;
     chartArea2.Position.Height                     = 18F;
     chartArea2.Position.Width                      = 91F;
     chartArea2.Position.Y                          = 1.5F;
     this.chartMain.ChartAreas.Add(chartArea1);
     this.chartMain.ChartAreas.Add(chartArea2);
     this.chartMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     legend1.Alignment       = System.Drawing.StringAlignment.Center;
     legend1.Name            = "Legend1";
     legend1.Position.Auto   = false;
     legend1.Position.Height = 30F;
     legend1.Position.Width  = 7F;
     legend1.Position.X      = 92F;
     legend1.Position.Y      = 20F;
     legend2.Name            = "Legend2";
     legend2.Position.Auto   = false;
     legend2.Position.Height = 18.5F;
     legend2.Position.Width  = 7F;
     legend2.Position.X      = 92F;
     this.chartMain.Legends.Add(legend1);
     this.chartMain.Legends.Add(legend2);
     this.chartMain.Location = new System.Drawing.Point(0, 0);
     this.chartMain.Margin   = new System.Windows.Forms.Padding(0);
     this.chartMain.Name     = "chartMain";
     this.chartMain.Size     = new System.Drawing.Size(778, 499);
     this.chartMain.TabIndex = 0;
     this.chartMain.TextAntiAliasingQuality = System.Windows.Forms.DataVisualization.Charting.TextAntiAliasingQuality.Normal;
     //
     // controlPanel
     //
     this.controlPanel.AutoScroll  = true;
     this.controlPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.controlPanel.Controls.Add(this.chartMain);
     this.controlPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.controlPanel.Location = new System.Drawing.Point(0, 0);
     this.controlPanel.Name     = "controlPanel";
     this.controlPanel.Size     = new System.Drawing.Size(782, 503);
     this.controlPanel.TabIndex = 0;
     //
     // ChartControl
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.controlPanel);
     this.Name = "ChartControl";
     this.Size = new System.Drawing.Size(782, 503);
     ((System.ComponentModel.ISupportInitialize)(this.chartMain)).EndInit();
     this.controlPanel.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GradientChart));
      System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation verticalLineAnnotation1 = new System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation();
      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
      System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
      System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
      System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
      this.calculationPendingLabel = new System.Windows.Forms.Label();
      this.calculationPendingTimer = new System.Windows.Forms.Timer(this.components);
      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
      this.configurationButton = new System.Windows.Forms.Button();
      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
      this.SuspendLayout();
      // 
      // calculationPendingLabel
      // 
      this.calculationPendingLabel.BackColor = System.Drawing.Color.White;
      this.calculationPendingLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Timer;
      this.calculationPendingLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
      this.calculationPendingLabel.Location = new System.Drawing.Point(3, 3);
      this.calculationPendingLabel.Margin = new System.Windows.Forms.Padding(0);
      this.calculationPendingLabel.Name = "calculationPendingLabel";
      this.calculationPendingLabel.Size = new System.Drawing.Size(17, 17);
      this.calculationPendingLabel.TabIndex = 1;
      this.calculationPendingLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
      this.calculationPendingLabel.Visible = false;
      // 
      // calculationPendingTimer
      // 
      this.calculationPendingTimer.Tick += new System.EventHandler(this.calculationPendingTimer_Tick);
      // 
      // chart
      // 
      this.chart.AllowDrop = true;
      verticalLineAnnotation1.AllowMoving = true;
      verticalLineAnnotation1.AxisXName = "ChartArea\\rX";
      verticalLineAnnotation1.ClipToChartArea = "ChartArea";
      verticalLineAnnotation1.IsInfinitive = true;
      verticalLineAnnotation1.LineColor = System.Drawing.Color.Red;
      verticalLineAnnotation1.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
      verticalLineAnnotation1.Name = "VerticalLineAnnotation";
      verticalLineAnnotation1.YAxisName = "ChartArea\\rY";
      this.chart.Annotations.Add(verticalLineAnnotation1);
      stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
      stripLine2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
      chartArea1.AxisX.StripLines.Add(stripLine1);
      chartArea1.AxisX.StripLines.Add(stripLine2);
      chartArea1.Name = "ChartArea";
      chartArea1.Position.Auto = false;
      chartArea1.Position.Height = 90F;
      chartArea1.Position.Width = 100F;
      chartArea1.Position.Y = 10F;
      this.chart.ChartAreas.Add(chartArea1);
      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
      legend1.Alignment = System.Drawing.StringAlignment.Center;
      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
      legend1.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.ReversedSeriesOrder;
      legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
      legend1.Name = "Default";
      this.chart.Legends.Add(legend1);
      this.chart.Location = new System.Drawing.Point(0, 0);
      this.chart.Name = "chart";
      this.chart.Size = new System.Drawing.Size(453, 308);
      this.chart.TabIndex = 0;
      title1.Alignment = System.Drawing.ContentAlignment.TopCenter;
      title1.DockedToChartArea = "ChartArea";
      title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      title1.IsDockedInsideChartArea = false;
      title1.Name = "Title";
      title1.Text = "[Title]";
      this.chart.Titles.Add(title1);
      this.chart.SelectionRangeChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chart_SelectionRangeChanged);
      this.chart.PostPaint += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(this.chart_PostPaint);
      this.chart.AnnotationPositionChanged += new System.EventHandler(this.chart_AnnotationPositionChanged);
      this.chart.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
      this.chart.DragDrop += new System.Windows.Forms.DragEventHandler(this.chart_DragDrop);
      this.chart.DragEnter += new System.Windows.Forms.DragEventHandler(this.chart_DragEnter);
      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
      this.chart.Resize += new System.EventHandler(this.chart_Resize);
      // 
      // configurationButton
      // 
      this.configurationButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.configurationButton.AutoSize = true;
      this.configurationButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
      this.configurationButton.Location = new System.Drawing.Point(426, 3);
      this.configurationButton.Name = "configurationButton";
      this.configurationButton.Size = new System.Drawing.Size(24, 24);
      this.configurationButton.TabIndex = 2;
      this.configurationButton.TabStop = false;
      this.toolTip.SetToolTip(this.configurationButton, "Configuration");
      this.configurationButton.UseVisualStyleBackColor = true;
      this.configurationButton.Click += new System.EventHandler(this.config_Click);
      // 
      // GradientChart
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.Controls.Add(this.configurationButton);
      this.Controls.Add(this.calculationPendingLabel);
      this.Controls.Add(this.chart);
      this.Name = "GradientChart";
      this.Size = new System.Drawing.Size(453, 308);
      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
      this.ResumeLayout(false);
      this.PerformLayout();

    }
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea2   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.StripLine   stripLine2   = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend2      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2        = new System.Windows.Forms.DataGridViewCellStyle();
     this.factorX_label    = new System.Windows.Forms.Label();
     this.factorY_label    = new System.Windows.Forms.Label();
     this.factorX          = new System.Windows.Forms.ComboBox();
     this.factorY          = new System.Windows.Forms.ComboBox();
     this.getListProvince  = new System.Windows.Forms.Button();
     this.paintDendrogram  = new System.Windows.Forms.Button();
     this.chart1           = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.paintCrab        = new System.Windows.Forms.Button();
     this.infoOutPut       = new System.Windows.Forms.TextBox();
     this.countCrab        = new System.Windows.Forms.TextBox();
     this.selectCountCrab  = new System.Windows.Forms.Button();
     this.paintForel       = new System.Windows.Forms.Button();
     this.dataGridView1    = new System.Windows.Forms.DataGridView();
     this.NumGrid          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NameRows         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Faq1             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Faq2             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numberForel      = new System.Windows.Forms.TextBox();
     this.radiusForel      = new System.Windows.Forms.TextBox();
     this.Radius_label     = new System.Windows.Forms.Label();
     this.NumberP_label    = new System.Windows.Forms.Label();
     this.showPoints       = new System.Windows.Forms.Button();
     this.Xmax             = new System.Windows.Forms.TextBox();
     this.Ymax             = new System.Windows.Forms.TextBox();
     this.intervalXY       = new System.Windows.Forms.TextBox();
     this.setScale         = new System.Windows.Forms.Button();
     this.Xmax_label       = new System.Windows.Forms.Label();
     this.Ymax_label       = new System.Windows.Forms.Label();
     this.intervalXY_label = new System.Windows.Forms.Label();
     this.initData         = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // factorX_label
     //
     this.factorX_label.AutoSize = true;
     this.factorX_label.Location = new System.Drawing.Point(6, 11);
     this.factorX_label.Name     = "factorX_label";
     this.factorX_label.Size     = new System.Drawing.Size(72, 13);
     this.factorX_label.TabIndex = 1;
     this.factorX_label.Text     = "Фактор 1 [X]";
     //
     // factorY_label
     //
     this.factorY_label.AutoSize = true;
     this.factorY_label.Location = new System.Drawing.Point(252, 11);
     this.factorY_label.Name     = "factorY_label";
     this.factorY_label.Size     = new System.Drawing.Size(72, 13);
     this.factorY_label.TabIndex = 2;
     this.factorY_label.Text     = "Фактор 2 [Y]";
     //
     // factorX
     //
     this.factorX.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.factorX.Font              = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.factorX.ForeColor         = System.Drawing.Color.Black;
     this.factorX.FormattingEnabled = true;
     this.factorX.Items.AddRange(new object[] {
         "[1] Происшествий.ДТП",
         "[2] Пострадавшие.ДТП",
         "[3] Погибшие.ДТП",
         "[4] Происшествия.Пожары",
         "[5] Пострадавшие.Пожары",
         "[6] Погибшие.Пожары",
         "[7] Энергоснабжение"
     });
     this.factorX.Location = new System.Drawing.Point(84, 8);
     this.factorX.Name     = "factorX";
     this.factorX.Size     = new System.Drawing.Size(162, 21);
     this.factorX.TabIndex = 3;
     //
     // factorY
     //
     this.factorY.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.factorY.FormattingEnabled = true;
     this.factorY.Items.AddRange(new object[] {
         "[1] Происшествий.ДТП",
         "[2] Пострадавшие.ДТП",
         "[3] Погибшие.ДТП",
         "[4] Происшествия.Пожары",
         "[5] Пострадавшие.Пожары",
         "[6] Погибшие.Пожары",
         "[7] Энергоснабжение"
     });
     this.factorY.Location = new System.Drawing.Point(335, 8);
     this.factorY.Name     = "factorY";
     this.factorY.Size     = new System.Drawing.Size(162, 21);
     this.factorY.TabIndex = 4;
     //
     // getListProvince
     //
     this.getListProvince.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.getListProvince.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.getListProvince.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.getListProvince.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.getListProvince.Location  = new System.Drawing.Point(597, 8);
     this.getListProvince.Name      = "getListProvince";
     this.getListProvince.Size      = new System.Drawing.Size(75, 23);
     this.getListProvince.TabIndex  = 6;
     this.getListProvince.Text      = "Список";
     this.getListProvince.UseVisualStyleBackColor = true;
     this.getListProvince.Click += new System.EventHandler(this.getListProvince_Click);
     //
     // paintDendrogram
     //
     this.paintDendrogram.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.paintDendrogram.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.paintDendrogram.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.paintDendrogram.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.paintDendrogram.Location  = new System.Drawing.Point(335, 37);
     this.paintDendrogram.Name      = "paintDendrogram";
     this.paintDendrogram.Size      = new System.Drawing.Size(133, 23);
     this.paintDendrogram.TabIndex  = 8;
     this.paintDendrogram.Text      = "Дендрограмма";
     this.paintDendrogram.UseVisualStyleBackColor = true;
     this.paintDendrogram.Click += new System.EventHandler(this.paintDendrogram_Click);
     //
     // chart1
     //
     chartArea2.AxisX.ArrowStyle              = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
     chartArea2.AxisX.MajorGrid.Interval      = 0D;
     chartArea2.AxisX.MajorGrid.LineColor     = System.Drawing.Color.DarkGray;
     chartArea2.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisX.MajorTickMark.Interval  = 0D;
     chartArea2.AxisX.MinorGrid.Enabled       = true;
     chartArea2.AxisX.MinorGrid.LineColor     = System.Drawing.Color.LightGray;
     chartArea2.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisX.MinorTickMark.Enabled   = true;
     chartArea2.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Silver;
     chartArea2.AxisX2.CustomLabels.Add(customLabel2);
     chartArea2.AxisY.ArrowStyle              = System.Windows.Forms.DataVisualization.Charting.AxisArrowStyle.Triangle;
     chartArea2.AxisY.MajorGrid.LineColor     = System.Drawing.Color.Gray;
     chartArea2.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisY.MinorGrid.Enabled       = true;
     chartArea2.AxisY.MinorGrid.LineColor     = System.Drawing.Color.LightGray;
     chartArea2.AxisY.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
     chartArea2.AxisY.MinorTickMark.Enabled   = true;
     chartArea2.AxisY.MinorTickMark.LineColor = System.Drawing.Color.Silver;
     chartArea2.AxisY.StripLines.Add(stripLine2);
     chartArea2.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea2);
     this.chart1.Cursor = System.Windows.Forms.Cursors.Arrow;
     legend2.Name       = "Legend1";
     this.chart1.Legends.Add(legend2);
     this.chart1.Location = new System.Drawing.Point(6, 72);
     this.chart1.Name     = "chart1";
     series2.ChartArea    = "ChartArea1";
     series2.ChartType    = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
     series2.Color        = System.Drawing.Color.Black;
     series2.Legend       = "Legend1";
     series2.MarkerStyle  = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
     series2.Name         = "Начальный график";
     this.chart1.Series.Add(series2);
     this.chart1.Size     = new System.Drawing.Size(769, 639);
     this.chart1.TabIndex = 0;
     this.chart1.Text     = "chart1";
     //
     // paintCrab
     //
     this.paintCrab.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.paintCrab.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.paintCrab.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.paintCrab.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.paintCrab.Location  = new System.Drawing.Point(503, 38);
     this.paintCrab.Name      = "paintCrab";
     this.paintCrab.Size      = new System.Drawing.Size(75, 23);
     this.paintCrab.TabIndex  = 9;
     this.paintCrab.Text      = "Краб";
     this.paintCrab.UseVisualStyleBackColor = true;
     this.paintCrab.Click += new System.EventHandler(this.paintCrab_Click);
     //
     // infoOutPut
     //
     this.infoOutPut.Location   = new System.Drawing.Point(781, 7);
     this.infoOutPut.Multiline  = true;
     this.infoOutPut.Name       = "infoOutPut";
     this.infoOutPut.ReadOnly   = true;
     this.infoOutPut.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.infoOutPut.Size       = new System.Drawing.Size(404, 177);
     this.infoOutPut.TabIndex   = 10;
     //
     // countCrab
     //
     this.countCrab.AcceptsReturn = true;
     this.countCrab.Location      = new System.Drawing.Point(597, 40);
     this.countCrab.Name          = "countCrab";
     this.countCrab.Size          = new System.Drawing.Size(39, 20);
     this.countCrab.TabIndex      = 12;
     this.countCrab.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.countCrab_KeyPress);
     //
     // selectCountCrab
     //
     this.selectCountCrab.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.selectCountCrab.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.selectCountCrab.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.selectCountCrab.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.selectCountCrab.Location  = new System.Drawing.Point(639, 38);
     this.selectCountCrab.Name      = "selectCountCrab";
     this.selectCountCrab.Size      = new System.Drawing.Size(33, 23);
     this.selectCountCrab.TabIndex  = 13;
     this.selectCountCrab.Text      = "OK";
     this.selectCountCrab.UseVisualStyleBackColor = true;
     this.selectCountCrab.Click += new System.EventHandler(this.selectCountCrab_Click);
     //
     // paintForel
     //
     this.paintForel.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.paintForel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.paintForel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.paintForel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.paintForel.Location  = new System.Drawing.Point(164, 38);
     this.paintForel.Name      = "paintForel";
     this.paintForel.Size      = new System.Drawing.Size(121, 23);
     this.paintForel.TabIndex  = 14;
     this.paintForel.Text      = "Форель";
     this.paintForel.UseVisualStyleBackColor = true;
     this.paintForel.Click += new System.EventHandler(this.paintForel_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView1.BackgroundColor             = System.Drawing.Color.White;
     this.dataGridView1.BorderStyle                 = System.Windows.Forms.BorderStyle.None;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.NumGrid,
         this.NameRows,
         this.Faq1,
         this.Faq2
     });
     dataGridViewCellStyle2.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor          = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.DarkGray;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode           = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.DefaultCellStyle       = dataGridViewCellStyle2;
     this.dataGridView1.Location               = new System.Drawing.Point(781, 269);
     this.dataGridView1.Name     = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.Size     = new System.Drawing.Size(404, 442);
     this.dataGridView1.TabIndex = 15;
     //
     // NumGrid
     //
     this.NumGrid.HeaderText = "№";
     this.NumGrid.Name       = "NumGrid";
     this.NumGrid.ReadOnly   = true;
     this.NumGrid.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // NameRows
     //
     this.NameRows.HeaderText = "Район";
     this.NameRows.Name       = "NameRows";
     this.NameRows.ReadOnly   = true;
     this.NameRows.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Faq1
     //
     this.Faq1.FillWeight = 35.7868F;
     this.Faq1.HeaderText = "NameФактор1";
     this.Faq1.Name       = "Faq1";
     this.Faq1.ReadOnly   = true;
     this.Faq1.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Faq2
     //
     this.Faq2.FillWeight = 35.7868F;
     this.Faq2.HeaderText = "NameФактор2";
     this.Faq2.Name       = "Faq2";
     this.Faq2.ReadOnly   = true;
     this.Faq2.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // numberForel
     //
     this.numberForel.Location  = new System.Drawing.Point(103, 40);
     this.numberForel.Name      = "numberForel";
     this.numberForel.Size      = new System.Drawing.Size(50, 20);
     this.numberForel.TabIndex  = 16;
     this.numberForel.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numberForel_KeyPress);
     this.numberForel.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.numberForel_KeyUp);
     //
     // radiusForel
     //
     this.radiusForel.Location  = new System.Drawing.Point(30, 40);
     this.radiusForel.Name      = "radiusForel";
     this.radiusForel.Size      = new System.Drawing.Size(38, 20);
     this.radiusForel.TabIndex  = 17;
     this.radiusForel.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.radiusForel_KeyPress);
     this.radiusForel.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.radiusForel_KeyUp);
     //
     // Radius_label
     //
     this.Radius_label.AutoSize = true;
     this.Radius_label.Location = new System.Drawing.Point(6, 43);
     this.Radius_label.Name     = "Radius_label";
     this.Radius_label.Size     = new System.Drawing.Size(21, 13);
     this.Radius_label.TabIndex = 18;
     this.Radius_label.Text     = "R=";
     //
     // NumberP_label
     //
     this.NumberP_label.AutoSize = true;
     this.NumberP_label.Location = new System.Drawing.Point(76, 43);
     this.NumberP_label.Name     = "NumberP_label";
     this.NumberP_label.Size     = new System.Drawing.Size(27, 13);
     this.NumberP_label.TabIndex = 19;
     this.NumberP_label.Text     = "№ =";
     //
     // showPoints
     //
     this.showPoints.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.showPoints.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.showPoints.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.showPoints.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.showPoints.Location  = new System.Drawing.Point(503, 8);
     this.showPoints.Name      = "showPoints";
     this.showPoints.Size      = new System.Drawing.Size(75, 23);
     this.showPoints.TabIndex  = 20;
     this.showPoints.Text      = "OK";
     this.showPoints.UseVisualStyleBackColor = true;
     this.showPoints.Click += new System.EventHandler(this.showPoints_Click);
     //
     // Xmax
     //
     this.Xmax.Location  = new System.Drawing.Point(851, 190);
     this.Xmax.Name      = "Xmax";
     this.Xmax.Size      = new System.Drawing.Size(100, 20);
     this.Xmax.TabIndex  = 21;
     this.Xmax.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Xmax_KeyPress);
     //
     // Ymax
     //
     this.Ymax.Location  = new System.Drawing.Point(851, 216);
     this.Ymax.Name      = "Ymax";
     this.Ymax.Size      = new System.Drawing.Size(100, 20);
     this.Ymax.TabIndex  = 22;
     this.Ymax.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Ymax_KeyPress);
     //
     // intervalXY
     //
     this.intervalXY.Location  = new System.Drawing.Point(851, 243);
     this.intervalXY.Name      = "intervalXY";
     this.intervalXY.Size      = new System.Drawing.Size(100, 20);
     this.intervalXY.TabIndex  = 23;
     this.intervalXY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.intervalXY_KeyPress);
     //
     // setScale
     //
     this.setScale.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.setScale.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.setScale.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.setScale.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.setScale.Location  = new System.Drawing.Point(973, 214);
     this.setScale.Name      = "setScale";
     this.setScale.Size      = new System.Drawing.Size(75, 23);
     this.setScale.TabIndex  = 24;
     this.setScale.Text      = "Масштаб";
     this.setScale.UseVisualStyleBackColor = true;
     this.setScale.Click += new System.EventHandler(this.setScale_Click);
     //
     // Xmax_label
     //
     this.Xmax_label.AutoSize = true;
     this.Xmax_label.Location = new System.Drawing.Point(781, 190);
     this.Xmax_label.Name     = "Xmax_label";
     this.Xmax_label.Size     = new System.Drawing.Size(36, 13);
     this.Xmax_label.TabIndex = 25;
     this.Xmax_label.Text     = "X max";
     //
     // Ymax_label
     //
     this.Ymax_label.AutoSize = true;
     this.Ymax_label.Location = new System.Drawing.Point(781, 216);
     this.Ymax_label.Name     = "Ymax_label";
     this.Ymax_label.Size     = new System.Drawing.Size(36, 13);
     this.Ymax_label.TabIndex = 26;
     this.Ymax_label.Text     = "Y max";
     //
     // intervalXY_label
     //
     this.intervalXY_label.AutoSize = true;
     this.intervalXY_label.Location = new System.Drawing.Point(781, 243);
     this.intervalXY_label.Name     = "intervalXY_label";
     this.intervalXY_label.Size     = new System.Drawing.Size(56, 13);
     this.intervalXY_label.TabIndex = 27;
     this.intervalXY_label.Text     = "Интервал";
     //
     // initData
     //
     this.initData.FlatAppearance.BorderColor        = System.Drawing.Color.DarkGray;
     this.initData.FlatAppearance.MouseDownBackColor = System.Drawing.Color.LightGray;
     this.initData.FlatAppearance.MouseOverBackColor = System.Drawing.Color.WhiteSmoke;
     this.initData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.initData.Location  = new System.Drawing.Point(692, 8);
     this.initData.Name      = "initData";
     this.initData.Size      = new System.Drawing.Size(83, 52);
     this.initData.TabIndex  = 28;
     this.initData.Text      = "Исходные данные";
     this.initData.UseVisualStyleBackColor = true;
     this.initData.Click += new System.EventHandler(this.initData_Click);
     //
     // ClusterOut
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.LightGray;
     this.ClientSize          = new System.Drawing.Size(1190, 714);
     this.Controls.Add(this.initData);
     this.Controls.Add(this.intervalXY_label);
     this.Controls.Add(this.Ymax_label);
     this.Controls.Add(this.Xmax_label);
     this.Controls.Add(this.setScale);
     this.Controls.Add(this.intervalXY);
     this.Controls.Add(this.Ymax);
     this.Controls.Add(this.Xmax);
     this.Controls.Add(this.showPoints);
     this.Controls.Add(this.NumberP_label);
     this.Controls.Add(this.Radius_label);
     this.Controls.Add(this.radiusForel);
     this.Controls.Add(this.numberForel);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.paintForel);
     this.Controls.Add(this.selectCountCrab);
     this.Controls.Add(this.countCrab);
     this.Controls.Add(this.infoOutPut);
     this.Controls.Add(this.paintCrab);
     this.Controls.Add(this.paintDendrogram);
     this.Controls.Add(this.getListProvince);
     this.Controls.Add(this.factorY);
     this.Controls.Add(this.factorX);
     this.Controls.Add(this.factorY_label);
     this.Controls.Add(this.factorX_label);
     this.Controls.Add(this.chart1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "ClusterOut";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Кластерный Анализ";
     this.Load           += new System.EventHandler(this.Cluster_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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.AGaugeRange aGaugeRange1 = new System.Windows.Forms.AGaugeRange();
            System.Windows.Forms.AGaugeRange aGaugeRange2 = new System.Windows.Forms.AGaugeRange();
            System.Windows.Forms.AGaugeRange aGaugeRange3 = new System.Windows.Forms.AGaugeRange();
            System.Windows.Forms.AGaugeRange aGaugeRange4 = new System.Windows.Forms.AGaugeRange();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine4 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine5 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine6 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = 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.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.Series series9 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.Title title2 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.Windows.Forms.DataVisualization.Charting.Title title3 = new System.Windows.Forms.DataVisualization.Charting.Title();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.btnStart = new System.Windows.Forms.Button();
            this.btnSettings = new System.Windows.Forms.Button();
            this.btnAbout = new System.Windows.Forms.Button();
            this.btnLog = new System.Windows.Forms.Button();
            this.aFanGauge = new System.Windows.Forms.AGauge();
            this.aHeaterGauge = new System.Windows.Forms.AGauge();
            this.trackBar_HeaterPWM = new System.Windows.Forms.TrackBar();
            this.txtLog = new System.Windows.Forms.RichTextBox();
            this.txtFldTemp2 = new System.Windows.Forms.TextBox();
            this.txtFldTemp3 = new System.Windows.Forms.TextBox();
            this.txtFldTemp1 = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.logRefreshTimer = new System.Windows.Forms.Timer(this.components);
            this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
            this.timer_main = new System.Windows.Forms.Timer(this.components);
            this.timer_debug_changetext = new System.Windows.Forms.Timer(this.components);
            this.timer_debug_portread = new System.Windows.Forms.Timer(this.components);
            this.btnSimulate = new System.Windows.Forms.Button();
            this.trackBar_FanPWM = new System.Windows.Forms.TrackBar();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.txtControlFanPWM = new System.Windows.Forms.TextBox();
            this.txtControlHeaterPWM = new System.Windows.Forms.TextBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.txtFldDTemp = new System.Windows.Forms.TextBox();
            this.txtDewPoint = new System.Windows.Forms.TextBox();
            this.txtFldHumidity = new System.Windows.Forms.TextBox();
            this.txtSecondaryDelta = new System.Windows.Forms.TextBox();
            this.txtMainDelta = new System.Windows.Forms.TextBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.chkAutoHeatingControlling = new System.Windows.Forms.CheckBox();
            this.chkAutoFanControlling = new System.Windows.Forms.CheckBox();
            this.txtFldHeaterPWM = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.txtFldRPM = new System.Windows.Forms.TextBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.btnOnOff = new System.Windows.Forms.Button();
            this.backgroundWorker_SocketServer = new System.ComponentModel.BackgroundWorker();
            ((System.ComponentModel.ISupportInitialize)(this.trackBar_HeaterPWM)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBar_FanPWM)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnStart
            // 
            this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnStart.Location = new System.Drawing.Point(1317, 11);
            this.btnStart.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.btnStart.Name = "btnStart";
            this.btnStart.Size = new System.Drawing.Size(172, 35);
            this.btnStart.TabIndex = 1;
            this.btnStart.Text = "Start";
            this.toolTip1.SetToolTip(this.btnStart, "Start/stop program (start/stop reading/writing data to hardware module)");
            this.btnStart.UseVisualStyleBackColor = true;
            this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
            // 
            // btnSettings
            // 
            this.btnSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSettings.Location = new System.Drawing.Point(1317, 151);
            this.btnSettings.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.btnSettings.Name = "btnSettings";
            this.btnSettings.Size = new System.Drawing.Size(172, 35);
            this.btnSettings.TabIndex = 1;
            this.btnSettings.Text = "Settings";
            this.btnSettings.UseVisualStyleBackColor = true;
            this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click);
            // 
            // btnAbout
            // 
            this.btnAbout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAbout.Location = new System.Drawing.Point(1317, 314);
            this.btnAbout.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.btnAbout.Name = "btnAbout";
            this.btnAbout.Size = new System.Drawing.Size(172, 35);
            this.btnAbout.TabIndex = 1;
            this.btnAbout.Text = "About";
            this.btnAbout.UseVisualStyleBackColor = true;
            this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
            // 
            // btnLog
            // 
            this.btnLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnLog.Location = new System.Drawing.Point(1317, 195);
            this.btnLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.btnLog.Name = "btnLog";
            this.btnLog.Size = new System.Drawing.Size(172, 35);
            this.btnLog.TabIndex = 1;
            this.btnLog.Text = "Log";
            this.btnLog.UseVisualStyleBackColor = true;
            this.btnLog.Click += new System.EventHandler(this.btnLog_Click);
            // 
            // aFanGauge
            // 
            this.aFanGauge.BaseArcColor = System.Drawing.Color.Gray;
            this.aFanGauge.BaseArcRadius = 60;
            this.aFanGauge.BaseArcStart = 135;
            this.aFanGauge.BaseArcSweep = 270;
            this.aFanGauge.BaseArcWidth = 2;
            this.aFanGauge.Center = new System.Drawing.Point(110, 90);
            aGaugeRange1.Color = System.Drawing.Color.Red;
            aGaugeRange1.EndValue = 1300F;
            aGaugeRange1.InnerRadius = 50;
            aGaugeRange1.InRange = false;
            aGaugeRange1.Name = "GaugeRange1";
            aGaugeRange1.OuterRadius = 60;
            aGaugeRange1.StartValue = 1000F;
            aGaugeRange2.Color = System.Drawing.Color.DimGray;
            aGaugeRange2.EndValue = 150F;
            aGaugeRange2.InnerRadius = 50;
            aGaugeRange2.InRange = false;
            aGaugeRange2.Name = "GaugeRange2";
            aGaugeRange2.OuterRadius = 60;
            aGaugeRange2.StartValue = 0F;
            aGaugeRange3.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            aGaugeRange3.EndValue = 400F;
            aGaugeRange3.InnerRadius = 50;
            aGaugeRange3.InRange = false;
            aGaugeRange3.Name = "GaugeRange3";
            aGaugeRange3.OuterRadius = 60;
            aGaugeRange3.StartValue = 150F;
            this.aFanGauge.GaugeRanges.Add(aGaugeRange1);
            this.aFanGauge.GaugeRanges.Add(aGaugeRange2);
            this.aFanGauge.GaugeRanges.Add(aGaugeRange3);
            this.aFanGauge.Location = new System.Drawing.Point(6, 26);
            this.aFanGauge.MaxValue = 1300F;
            this.aFanGauge.MinValue = 0F;
            this.aFanGauge.Name = "aFanGauge";
            this.aFanGauge.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray;
            this.aFanGauge.NeedleColor2 = System.Drawing.Color.DimGray;
            this.aFanGauge.NeedleRadius = 60;
            this.aFanGauge.NeedleType = System.Windows.Forms.NeedleType.Advance;
            this.aFanGauge.NeedleWidth = 2;
            this.aFanGauge.ScaleLinesInterColor = System.Drawing.Color.Black;
            this.aFanGauge.ScaleLinesInterInnerRadius = 53;
            this.aFanGauge.ScaleLinesInterOuterRadius = 60;
            this.aFanGauge.ScaleLinesInterWidth = 1;
            this.aFanGauge.ScaleLinesMajorColor = System.Drawing.Color.Black;
            this.aFanGauge.ScaleLinesMajorInnerRadius = 50;
            this.aFanGauge.ScaleLinesMajorOuterRadius = 60;
            this.aFanGauge.ScaleLinesMajorStepValue = 100F;
            this.aFanGauge.ScaleLinesMajorWidth = 2;
            this.aFanGauge.ScaleLinesMinorColor = System.Drawing.Color.Gray;
            this.aFanGauge.ScaleLinesMinorInnerRadius = 55;
            this.aFanGauge.ScaleLinesMinorOuterRadius = 60;
            this.aFanGauge.ScaleLinesMinorTicks = 9;
            this.aFanGauge.ScaleLinesMinorWidth = 1;
            this.aFanGauge.ScaleNumbersColor = System.Drawing.Color.Black;
            this.aFanGauge.ScaleNumbersFormat = null;
            this.aFanGauge.ScaleNumbersRadius = 75;
            this.aFanGauge.ScaleNumbersRotation = 0;
            this.aFanGauge.ScaleNumbersStartScaleLine = 0;
            this.aFanGauge.ScaleNumbersStepScaleLines = 1;
            this.aFanGauge.Size = new System.Drawing.Size(330, 231);
            this.aFanGauge.TabIndex = 3;
            this.aFanGauge.Text = "aFanGauge";
            this.aFanGauge.Value = 0F;
            // 
            // aHeaterGauge
            // 
            this.aHeaterGauge.BaseArcColor = System.Drawing.Color.Gray;
            this.aHeaterGauge.BaseArcRadius = 60;
            this.aHeaterGauge.BaseArcStart = 135;
            this.aHeaterGauge.BaseArcSweep = 270;
            this.aHeaterGauge.BaseArcWidth = 2;
            this.aHeaterGauge.Center = new System.Drawing.Point(110, 90);
            aGaugeRange4.Color = System.Drawing.Color.Red;
            aGaugeRange4.EndValue = 100F;
            aGaugeRange4.InnerRadius = 40;
            aGaugeRange4.InRange = false;
            aGaugeRange4.Name = "GaugeRange1";
            aGaugeRange4.OuterRadius = 50;
            aGaugeRange4.StartValue = 90F;
            this.aHeaterGauge.GaugeRanges.Add(aGaugeRange4);
            this.aHeaterGauge.Location = new System.Drawing.Point(339, 26);
            this.aHeaterGauge.MaxValue = 100F;
            this.aHeaterGauge.MinValue = 0F;
            this.aHeaterGauge.Name = "aHeaterGauge";
            this.aHeaterGauge.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray;
            this.aHeaterGauge.NeedleColor2 = System.Drawing.Color.DimGray;
            this.aHeaterGauge.NeedleRadius = 60;
            this.aHeaterGauge.NeedleType = System.Windows.Forms.NeedleType.Advance;
            this.aHeaterGauge.NeedleWidth = 2;
            this.aHeaterGauge.ScaleLinesInterColor = System.Drawing.Color.Black;
            this.aHeaterGauge.ScaleLinesInterInnerRadius = 53;
            this.aHeaterGauge.ScaleLinesInterOuterRadius = 60;
            this.aHeaterGauge.ScaleLinesInterWidth = 1;
            this.aHeaterGauge.ScaleLinesMajorColor = System.Drawing.Color.Black;
            this.aHeaterGauge.ScaleLinesMajorInnerRadius = 50;
            this.aHeaterGauge.ScaleLinesMajorOuterRadius = 60;
            this.aHeaterGauge.ScaleLinesMajorStepValue = 10F;
            this.aHeaterGauge.ScaleLinesMajorWidth = 2;
            this.aHeaterGauge.ScaleLinesMinorColor = System.Drawing.Color.Gray;
            this.aHeaterGauge.ScaleLinesMinorInnerRadius = 55;
            this.aHeaterGauge.ScaleLinesMinorOuterRadius = 60;
            this.aHeaterGauge.ScaleLinesMinorTicks = 9;
            this.aHeaterGauge.ScaleLinesMinorWidth = 1;
            this.aHeaterGauge.ScaleNumbersColor = System.Drawing.Color.Black;
            this.aHeaterGauge.ScaleNumbersFormat = null;
            this.aHeaterGauge.ScaleNumbersRadius = 72;
            this.aHeaterGauge.ScaleNumbersRotation = 0;
            this.aHeaterGauge.ScaleNumbersStartScaleLine = 2;
            this.aHeaterGauge.ScaleNumbersStepScaleLines = 1;
            this.aHeaterGauge.Size = new System.Drawing.Size(330, 231);
            this.aHeaterGauge.TabIndex = 3;
            this.aHeaterGauge.Text = "aFanGauge";
            this.aHeaterGauge.Value = 0F;
            // 
            // trackBar_HeaterPWM
            // 
            this.trackBar_HeaterPWM.LargeChange = 10;
            this.trackBar_HeaterPWM.Location = new System.Drawing.Point(394, 260);
            this.trackBar_HeaterPWM.Maximum = 255;
            this.trackBar_HeaterPWM.Name = "trackBar_HeaterPWM";
            this.trackBar_HeaterPWM.Size = new System.Drawing.Size(228, 69);
            this.trackBar_HeaterPWM.SmallChange = 5;
            this.trackBar_HeaterPWM.TabIndex = 4;
            this.trackBar_HeaterPWM.TickFrequency = 10;
            this.trackBar_HeaterPWM.ValueChanged += new System.EventHandler(this.trackBar_HeaterPWM_ValueChanged);
            // 
            // txtLog
            // 
            this.txtLog.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtLog.Location = new System.Drawing.Point(692, 14);
            this.txtLog.Name = "txtLog";
            this.txtLog.Size = new System.Drawing.Size(602, 458);
            this.txtLog.TabIndex = 5;
            this.txtLog.Text = "";
            // 
            // txtFldTemp2
            // 
            this.txtFldTemp2.BackColor = System.Drawing.SystemColors.Window;
            this.txtFldTemp2.Location = new System.Drawing.Point(62, 49);
            this.txtFldTemp2.Name = "txtFldTemp2";
            this.txtFldTemp2.ReadOnly = true;
            this.txtFldTemp2.Size = new System.Drawing.Size(64, 26);
            this.txtFldTemp2.TabIndex = 6;
            // 
            // txtFldTemp3
            // 
            this.txtFldTemp3.BackColor = System.Drawing.SystemColors.Window;
            this.txtFldTemp3.Location = new System.Drawing.Point(290, 49);
            this.txtFldTemp3.Name = "txtFldTemp3";
            this.txtFldTemp3.ReadOnly = true;
            this.txtFldTemp3.Size = new System.Drawing.Size(60, 26);
            this.txtFldTemp3.TabIndex = 6;
            // 
            // txtFldTemp1
            // 
            this.txtFldTemp1.BackColor = System.Drawing.SystemColors.Window;
            this.txtFldTemp1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtFldTemp1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.txtFldTemp1.Location = new System.Drawing.Point(168, 49);
            this.txtFldTemp1.Name = "txtFldTemp1";
            this.txtFldTemp1.ReadOnly = true;
            this.txtFldTemp1.Size = new System.Drawing.Size(71, 25);
            this.txtFldTemp1.TabIndex = 6;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(48, 23);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(89, 20);
            this.label1.TabIndex = 7;
            this.label1.Text = "Mirror temp";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(256, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(125, 20);
            this.label2.TabIndex = 7;
            this.label2.Text = "Secondary temp";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(180, 25);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(49, 20);
            this.label3.TabIndex = 7;
            this.label3.Text = "Temp";
            // 
            // logRefreshTimer
            // 
            this.logRefreshTimer.Enabled = true;
            this.logRefreshTimer.Interval = 1500;
            this.logRefreshTimer.Tick += new System.EventHandler(this.logRefreshTimer_Tick);
            // 
            // timer_main
            // 
            this.timer_main.Interval = 5000;
            this.timer_main.Tick += new System.EventHandler(this.timer_main_Tick);
            // 
            // timer_debug_changetext
            // 
            this.timer_debug_changetext.Interval = 4400;
            this.timer_debug_changetext.Tick += new System.EventHandler(this.timer_debug_Tick);
            // 
            // timer_debug_portread
            // 
            this.timer_debug_portread.Tick += new System.EventHandler(this.timer_debug_portread_Tick);
            // 
            // btnSimulate
            // 
            this.btnSimulate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSimulate.Location = new System.Drawing.Point(1317, 271);
            this.btnSimulate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.btnSimulate.Name = "btnSimulate";
            this.btnSimulate.Size = new System.Drawing.Size(172, 35);
            this.btnSimulate.TabIndex = 1;
            this.btnSimulate.Text = "Simulate";
            this.btnSimulate.UseVisualStyleBackColor = true;
            this.btnSimulate.Click += new System.EventHandler(this.btnSimulate_Click);
            // 
            // trackBar_FanPWM
            // 
            this.trackBar_FanPWM.LargeChange = 10;
            this.trackBar_FanPWM.Location = new System.Drawing.Point(80, 254);
            this.trackBar_FanPWM.Maximum = 255;
            this.trackBar_FanPWM.Name = "trackBar_FanPWM";
            this.trackBar_FanPWM.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.trackBar_FanPWM.RightToLeftLayout = true;
            this.trackBar_FanPWM.Size = new System.Drawing.Size(195, 69);
            this.trackBar_FanPWM.SmallChange = 5;
            this.trackBar_FanPWM.TabIndex = 4;
            this.trackBar_FanPWM.TickFrequency = 10;
            this.trackBar_FanPWM.ValueChanged += new System.EventHandler(this.trackBar_FanPWM_ValueChanged);
            // 
            // 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.Color.Transparent;
            this.chart1.BorderlineColor = System.Drawing.Color.LightGray;
            this.chart1.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea1.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisX.LabelAutoFitMaxFontSize = 7;
            chartArea1.AxisX.LabelAutoFitMinFontSize = 7;
            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.WordWrap)));
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
            chartArea1.AxisX.LabelStyle.Interval = 1D;
            chartArea1.AxisX.LabelStyle.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
            chartArea1.AxisX.MajorGrid.Interval = 1D;
            chartArea1.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver;
            chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea1.AxisX.MajorTickMark.Interval = 1D;
            chartArea1.AxisX.MajorTickMark.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
            chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.DarkRed;
            chartArea1.AxisX.MaximumAutoSize = 7F;
            chartArea1.AxisX.MinorGrid.Enabled = true;
            chartArea1.AxisX.MinorGrid.LineColor = System.Drawing.Color.WhiteSmoke;
            chartArea1.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea1.AxisX.MinorTickMark.LineColor = System.Drawing.Color.Yellow;
            chartArea1.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisY.LabelAutoFitMaxFontSize = 7;
            chartArea1.AxisY.LabelAutoFitMinFontSize = 7;
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver;
            chartArea1.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea1.AxisY.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea1.AxisY.MajorTickMark.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            stripLine1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            stripLine1.BackSecondaryColor = System.Drawing.Color.White;
            stripLine1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            stripLine1.IntervalOffset = 0.2D;
            stripLine1.StripWidth = 1.8D;
            stripLine2.BorderColor = System.Drawing.Color.Silver;
            stripLine3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            stripLine3.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            stripLine3.BackSecondaryColor = System.Drawing.SystemColors.Highlight;
            stripLine3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            stripLine3.IntervalOffset = -10D;
            stripLine3.StripWidth = 10.1D;
            chartArea1.AxisY.StripLines.Add(stripLine1);
            chartArea1.AxisY.StripLines.Add(stripLine2);
            chartArea1.AxisY.StripLines.Add(stripLine3);
            chartArea1.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea1.AxisY2.LabelAutoFitMaxFontSize = 7;
            chartArea1.AxisY2.LabelAutoFitMinFontSize = 7;
            chartArea1.AxisY2.MajorGrid.Enabled = false;
            chartArea1.AxisY2.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea1.BackColor = System.Drawing.Color.White;
            chartArea1.BorderColor = System.Drawing.Color.Silver;
            chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea1.CursorY.IsUserEnabled = true;
            chartArea1.CursorY.IsUserSelectionEnabled = true;
            chartArea1.InnerPlotPosition.Auto = false;
            chartArea1.InnerPlotPosition.Height = 95F;
            chartArea1.InnerPlotPosition.Width = 92F;
            chartArea1.InnerPlotPosition.X = 4F;
            chartArea1.Name = "ChartArea1_main";
            chartArea1.Position.Auto = false;
            chartArea1.Position.Height = 30F;
            chartArea1.Position.Width = 100F;
            chartArea1.Position.Y = 3F;
            chartArea2.AlignWithChartArea = "ChartArea1_main";
            chartArea2.AxisX.LabelAutoFitMaxFontSize = 7;
            chartArea2.AxisX.LabelAutoFitMinFontSize = 7;
            chartArea2.AxisX.MajorGrid.Interval = 1D;
            chartArea2.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
            chartArea2.AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver;
            chartArea2.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea2.AxisX.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea2.AxisX.MinorGrid.Enabled = true;
            chartArea2.AxisX.MinorGrid.LineColor = System.Drawing.Color.Gainsboro;
            chartArea2.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea2.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea2.AxisY.LabelAutoFitMaxFontSize = 7;
            chartArea2.AxisY.LabelAutoFitMinFontSize = 7;
            chartArea2.AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver;
            chartArea2.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea2.AxisY.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            stripLine4.BackColor = System.Drawing.Color.White;
            stripLine4.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            stripLine4.BackSecondaryColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            stripLine4.StripWidth = 2D;
            stripLine5.BorderColor = System.Drawing.Color.Gray;
            stripLine6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            stripLine6.IntervalOffset = -2D;
            stripLine6.StripWidth = 2D;
            chartArea2.AxisY.StripLines.Add(stripLine4);
            chartArea2.AxisY.StripLines.Add(stripLine5);
            chartArea2.AxisY.StripLines.Add(stripLine6);
            chartArea2.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea2.AxisY2.LabelAutoFitMaxFontSize = 7;
            chartArea2.AxisY2.LabelAutoFitMinFontSize = 7;
            chartArea2.AxisY2.MajorGrid.Enabled = false;
            chartArea2.AxisY2.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea2.BackColor = System.Drawing.Color.White;
            chartArea2.BorderColor = System.Drawing.Color.Silver;
            chartArea2.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea2.InnerPlotPosition.Auto = false;
            chartArea2.InnerPlotPosition.Height = 100F;
            chartArea2.InnerPlotPosition.Width = 92F;
            chartArea2.InnerPlotPosition.X = 4F;
            chartArea2.Name = "ChartArea2_secondary";
            chartArea2.Position.Auto = false;
            chartArea2.Position.Height = 30F;
            chartArea2.Position.Width = 100F;
            chartArea2.Position.Y = 37F;
            chartArea3.AlignWithChartArea = "ChartArea1_main";
            chartArea3.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea3.AxisX.LabelAutoFitMaxFontSize = 7;
            chartArea3.AxisX.LabelAutoFitMinFontSize = 7;
            chartArea3.AxisX.MajorGrid.Interval = 1D;
            chartArea3.AxisX.MajorGrid.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Hours;
            chartArea3.AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver;
            chartArea3.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea3.AxisX.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea3.AxisX.MinorGrid.Enabled = true;
            chartArea3.AxisX.MinorGrid.LineColor = System.Drawing.Color.Gainsboro;
            chartArea3.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
            chartArea3.AxisX2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
            chartArea3.AxisY.Crossing = -1.7976931348623157E+308D;
            chartArea3.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea3.AxisY.LabelAutoFitMaxFontSize = 7;
            chartArea3.AxisY.LabelAutoFitMinFontSize = 7;
            chartArea3.AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver;
            chartArea3.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea3.AxisY.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea3.AxisY2.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea3.AxisY2.LabelAutoFitMaxFontSize = 7;
            chartArea3.AxisY2.LabelAutoFitMinFontSize = 7;
            chartArea3.AxisY2.MajorGrid.Enabled = false;
            chartArea3.AxisY2.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea3.AxisY2.MajorTickMark.LineColor = System.Drawing.Color.Silver;
            chartArea3.BackColor = System.Drawing.Color.White;
            chartArea3.BorderColor = System.Drawing.Color.Silver;
            chartArea3.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea3.InnerPlotPosition.Auto = false;
            chartArea3.InnerPlotPosition.Height = 100F;
            chartArea3.InnerPlotPosition.Width = 92F;
            chartArea3.InnerPlotPosition.X = 4F;
            chartArea3.Name = "ChartArea3_temp";
            chartArea3.Position.Auto = false;
            chartArea3.Position.Height = 30F;
            chartArea3.Position.Width = 100F;
            chartArea3.Position.Y = 69F;
            this.chart1.ChartAreas.Add(chartArea1);
            this.chart1.ChartAreas.Add(chartArea2);
            this.chart1.ChartAreas.Add(chartArea3);
            this.chart1.Location = new System.Drawing.Point(10, 477);
            this.chart1.Margin = new System.Windows.Forms.Padding(0);
            this.chart1.Name = "chart1";
            series1.BorderColor = System.Drawing.SystemColors.HotTrack;
            series1.BorderWidth = 3;
            series1.ChartArea = "ChartArea1_main";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series1.Color = System.Drawing.SystemColors.HotTrack;
            series1.Name = "Temp_main_delta";
            series2.ChartArea = "ChartArea1_main";
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
            series2.Name = "RPM";
            series2.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
            series2.YAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
            series3.BorderWidth = 3;
            series3.ChartArea = "ChartArea2_secondary";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series3.Color = System.Drawing.Color.Red;
            series3.Name = "Temp_sec_delta";
            series4.ChartArea = "ChartArea2_secondary";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series4.Color = System.Drawing.Color.Green;
            series4.Name = "Heater";
            series4.YAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
            series5.BorderWidth = 3;
            series5.ChartArea = "ChartArea3_temp";
            series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series5.Color = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            series5.Name = "Temp_ext";
            series5.ShadowOffset = 2;
            series5.ToolTip = "Temp1 (#VAL{F1} at #VALX{dd.MM.yyyy HH:mm})\\nlast value: #LAST{F1} \\nmin:#MIN{F1}" +
    " max:#MAX{F1} avg:#AVG{F1}\\n";
            series6.ChartArea = "ChartArea3_temp";
            series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series6.Color = System.Drawing.Color.Blue;
            series6.Name = "Temp_main";
            series6.ToolTip = "Temp2 #VAL{F1} (at #VALX{dd.MM.yyyy HH:mm})\\nlast value: #LAST{F1} \\nmin:#MIN{F1}" +
    " max:#MAX{F1} avg:#AVG{F1}\\n";
            series7.ChartArea = "ChartArea3_temp";
            series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series7.Color = System.Drawing.Color.Red;
            series7.Name = "Temp_sec";
            series7.ToolTip = "Temp3 (#VAL{F1} at #VALX{dd.MM.yyyy HH:mm})\\nlast value: #LAST{F1} \\nmin:#MIN{F1}" +
    " max:#MAX{F1} avg:#AVG{F1}\\n";
            series8.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            series8.ChartArea = "ChartArea3_temp";
            series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
            series8.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            series8.Name = "Humidity";
            series8.YAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
            series9.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            series9.ChartArea = "ChartArea3_temp";
            series9.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area;
            series9.Color = System.Drawing.Color.Aqua;
            series9.Name = "Dew_point";
            this.chart1.Series.Add(series1);
            this.chart1.Series.Add(series2);
            this.chart1.Series.Add(series3);
            this.chart1.Series.Add(series4);
            this.chart1.Series.Add(series5);
            this.chart1.Series.Add(series6);
            this.chart1.Series.Add(series7);
            this.chart1.Series.Add(series8);
            this.chart1.Series.Add(series9);
            this.chart1.Size = new System.Drawing.Size(1490, 586);
            this.chart1.TabIndex = 25;
            this.chart1.Text = "Sensors data";
            title1.DockedToChartArea = "ChartArea1_main";
            title1.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            title1.ForeColor = System.Drawing.Color.LightGray;
            title1.Name = "Main";
            title1.Text = "Main mirror";
            title2.DockedToChartArea = "ChartArea2_secondary";
            title2.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            title2.ForeColor = System.Drawing.Color.LightGray;
            title2.Name = "Secondary";
            title2.Text = "Secondary mirror";
            title3.DockedToChartArea = "ChartArea3_temp";
            title3.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            title3.ForeColor = System.Drawing.Color.LightGray;
            title3.Name = "Temp";
            title3.Text = "Temperature";
            this.chart1.Titles.Add(title1);
            this.chart1.Titles.Add(title2);
            this.chart1.Titles.Add(title3);
            // 
            // txtControlFanPWM
            // 
            this.txtControlFanPWM.BackColor = System.Drawing.SystemColors.Window;
            this.txtControlFanPWM.Location = new System.Drawing.Point(28, 260);
            this.txtControlFanPWM.Name = "txtControlFanPWM";
            this.txtControlFanPWM.Size = new System.Drawing.Size(43, 26);
            this.txtControlFanPWM.TabIndex = 26;
            this.txtControlFanPWM.TextChanged += new System.EventHandler(this.txtControlFanPWM_TextChanged);
            // 
            // txtControlHeaterPWM
            // 
            this.txtControlHeaterPWM.BackColor = System.Drawing.SystemColors.Window;
            this.txtControlHeaterPWM.Location = new System.Drawing.Point(339, 266);
            this.txtControlHeaterPWM.Name = "txtControlHeaterPWM";
            this.txtControlHeaterPWM.Size = new System.Drawing.Size(43, 26);
            this.txtControlHeaterPWM.TabIndex = 26;
            this.txtControlHeaterPWM.TextChanged += new System.EventHandler(this.txtControlHeaterPWM_TextChanged);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label10);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.txtFldDTemp);
            this.groupBox1.Controls.Add(this.txtDewPoint);
            this.groupBox1.Controls.Add(this.txtFldTemp1);
            this.groupBox1.Controls.Add(this.txtFldHumidity);
            this.groupBox1.Controls.Add(this.txtFldTemp3);
            this.groupBox1.Controls.Add(this.txtSecondaryDelta);
            this.groupBox1.Controls.Add(this.txtMainDelta);
            this.groupBox1.Controls.Add(this.txtFldTemp2);
            this.groupBox1.Location = new System.Drawing.Point(10, 348);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(675, 126);
            this.groupBox1.TabIndex = 27;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Temperature";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(304, 89);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(79, 20);
            this.label5.TabIndex = 8;
            this.label5.Text = "Sec Delta";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(22, 88);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(82, 20);
            this.label4.TabIndex = 8;
            this.label4.Text = "Main delta";
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(396, 52);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(86, 20);
            this.label7.TabIndex = 7;
            this.label7.Text = "Temp DHT";
            // 
            // label10
            // 
            this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(514, 88);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(81, 20);
            this.label10.TabIndex = 7;
            this.label10.Text = "Dew Point";
            // 
            // label6
            // 
            this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(514, 52);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(70, 20);
            this.label6.TabIndex = 7;
            this.label6.Text = "Humidity";
            // 
            // txtFldDTemp
            // 
            this.txtFldDTemp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtFldDTemp.BackColor = System.Drawing.SystemColors.Window;
            this.txtFldDTemp.Location = new System.Drawing.Point(406, 85);
            this.txtFldDTemp.Name = "txtFldDTemp";
            this.txtFldDTemp.ReadOnly = true;
            this.txtFldDTemp.Size = new System.Drawing.Size(60, 26);
            this.txtFldDTemp.TabIndex = 6;
            // 
            // txtDewPoint
            // 
            this.txtDewPoint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDewPoint.BackColor = System.Drawing.SystemColors.Window;
            this.txtDewPoint.Location = new System.Drawing.Point(604, 85);
            this.txtDewPoint.Name = "txtDewPoint";
            this.txtDewPoint.ReadOnly = true;
            this.txtDewPoint.Size = new System.Drawing.Size(60, 26);
            this.txtDewPoint.TabIndex = 6;
            // 
            // txtFldHumidity
            // 
            this.txtFldHumidity.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtFldHumidity.BackColor = System.Drawing.SystemColors.Window;
            this.txtFldHumidity.Location = new System.Drawing.Point(604, 48);
            this.txtFldHumidity.Name = "txtFldHumidity";
            this.txtFldHumidity.ReadOnly = true;
            this.txtFldHumidity.Size = new System.Drawing.Size(60, 26);
            this.txtFldHumidity.TabIndex = 6;
            // 
            // txtSecondaryDelta
            // 
            this.txtSecondaryDelta.BackColor = System.Drawing.SystemColors.Window;
            this.txtSecondaryDelta.Location = new System.Drawing.Point(231, 85);
            this.txtSecondaryDelta.Name = "txtSecondaryDelta";
            this.txtSecondaryDelta.ReadOnly = true;
            this.txtSecondaryDelta.Size = new System.Drawing.Size(64, 26);
            this.txtSecondaryDelta.TabIndex = 6;
            // 
            // txtMainDelta
            // 
            this.txtMainDelta.BackColor = System.Drawing.SystemColors.Window;
            this.txtMainDelta.Location = new System.Drawing.Point(116, 83);
            this.txtMainDelta.Name = "txtMainDelta";
            this.txtMainDelta.ReadOnly = true;
            this.txtMainDelta.Size = new System.Drawing.Size(64, 26);
            this.txtMainDelta.TabIndex = 6;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.chkAutoHeatingControlling);
            this.groupBox2.Controls.Add(this.chkAutoFanControlling);
            this.groupBox2.Controls.Add(this.txtFldHeaterPWM);
            this.groupBox2.Controls.Add(this.label9);
            this.groupBox2.Controls.Add(this.label8);
            this.groupBox2.Controls.Add(this.txtControlHeaterPWM);
            this.groupBox2.Controls.Add(this.txtFldRPM);
            this.groupBox2.Controls.Add(this.txtControlFanPWM);
            this.groupBox2.Controls.Add(this.trackBar_HeaterPWM);
            this.groupBox2.Controls.Add(this.aHeaterGauge);
            this.groupBox2.Controls.Add(this.aFanGauge);
            this.groupBox2.Controls.Add(this.trackBar_FanPWM);
            this.groupBox2.Location = new System.Drawing.Point(10, 2);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(675, 340);
            this.groupBox2.TabIndex = 28;
            this.groupBox2.TabStop = false;
            // 
            // chkAutoHeatingControlling
            // 
            this.chkAutoHeatingControlling.AutoSize = true;
            this.chkAutoHeatingControlling.Location = new System.Drawing.Point(339, 300);
            this.chkAutoHeatingControlling.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.chkAutoHeatingControlling.Name = "chkAutoHeatingControlling";
            this.chkAutoHeatingControlling.Size = new System.Drawing.Size(120, 24);
            this.chkAutoHeatingControlling.TabIndex = 29;
            this.chkAutoHeatingControlling.Text = "Autocontroll";
            this.chkAutoHeatingControlling.UseVisualStyleBackColor = true;
            this.chkAutoHeatingControlling.CheckedChanged += new System.EventHandler(this.chkAutoHeatingControlling_CheckedChanged);
            // 
            // chkAutoFanControlling
            // 
            this.chkAutoFanControlling.AutoSize = true;
            this.chkAutoFanControlling.Location = new System.Drawing.Point(28, 298);
            this.chkAutoFanControlling.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.chkAutoFanControlling.Name = "chkAutoFanControlling";
            this.chkAutoFanControlling.Size = new System.Drawing.Size(120, 24);
            this.chkAutoFanControlling.TabIndex = 29;
            this.chkAutoFanControlling.Text = "Autocontroll";
            this.chkAutoFanControlling.UseVisualStyleBackColor = true;
            this.chkAutoFanControlling.CheckedChanged += new System.EventHandler(this.chkAutoFanControlling_CheckedChanged);
            // 
            // txtFldHeaterPWM
            // 
            this.txtFldHeaterPWM.BackColor = System.Drawing.SystemColors.Control;
            this.txtFldHeaterPWM.Location = new System.Drawing.Point(476, 220);
            this.txtFldHeaterPWM.Name = "txtFldHeaterPWM";
            this.txtFldHeaterPWM.ReadOnly = true;
            this.txtFldHeaterPWM.Size = new System.Drawing.Size(55, 26);
            this.txtFldHeaterPWM.TabIndex = 28;
            this.txtFldHeaterPWM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(74, 17);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(197, 20);
            this.label9.TabIndex = 27;
            this.label9.Text = "Main mirror fan speed, rpm";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(375, 17);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(248, 20);
            this.label8.TabIndex = 27;
            this.label8.Text = "Secondary mirror heater power, %";
            // 
            // txtFldRPM
            // 
            this.txtFldRPM.BackColor = System.Drawing.SystemColors.Control;
            this.txtFldRPM.Location = new System.Drawing.Point(142, 220);
            this.txtFldRPM.Name = "txtFldRPM";
            this.txtFldRPM.ReadOnly = true;
            this.txtFldRPM.Size = new System.Drawing.Size(55, 26);
            this.txtFldRPM.TabIndex = 26;
            this.txtFldRPM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // btnOnOff
            // 
            this.btnOnOff.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOnOff.Location = new System.Drawing.Point(1317, 69);
            this.btnOnOff.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.btnOnOff.Name = "btnOnOff";
            this.btnOnOff.Size = new System.Drawing.Size(172, 35);
            this.btnOnOff.TabIndex = 1;
            this.btnOnOff.Text = "On";
            this.toolTip1.SetToolTip(this.btnOnOff, "Autocontorl on/off");
            this.btnOnOff.UseVisualStyleBackColor = true;
            this.btnOnOff.Click += new System.EventHandler(this.btnOnOff_Click);
            // 
            // backgroundWorker_SocketServer
            // 
            this.backgroundWorker_SocketServer.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_SocketServer_DoWork);
            // 
            // MainForm
            // 
            this.AcceptButton = this.btnStart;
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1510, 1065);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.txtLog);
            this.Controls.Add(this.btnAbout);
            this.Controls.Add(this.btnSimulate);
            this.Controls.Add(this.btnLog);
            this.Controls.Add(this.btnSettings);
            this.Controls.Add(this.btnOnOff);
            this.Controls.Add(this.btnStart);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.MinimumSize = new System.Drawing.Size(1339, 967);
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Telescope Temp Control";
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.trackBar_HeaterPWM)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBar_FanPWM)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);

        }
Beispiel #35
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.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend2    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series2    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend3    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series3    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.label7  = new System.Windows.Forms.Label();
     this.label6  = new System.Windows.Forms.Label();
     this.label5  = new System.Windows.Forms.Label();
     this.panel6  = new System.Windows.Forms.Panel();
     this.panel5  = new System.Windows.Forms.Panel();
     this.panel4  = new System.Windows.Forms.Panel();
     this.panel3  = new System.Windows.Forms.Panel();
     this.label4  = new System.Windows.Forms.Label();
     this.label2  = new System.Windows.Forms.Label();
     this.chart3  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.chart2  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label3  = new System.Windows.Forms.Label();
     this.panel2  = new System.Windows.Forms.Panel();
     this.panel1  = new System.Windows.Forms.Panel();
     this.label1  = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.chart1  = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.button2 = new System.Windows.Forms.Button();
     this.panel7  = new System.Windows.Forms.Panel();
     this.panel8  = new System.Windows.Forms.Panel();
     this.panel9  = new System.Windows.Forms.Panel();
     this.panel10 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.panel12 = new System.Windows.Forms.Panel();
     this.label8  = new System.Windows.Forms.Label();
     this.label9  = new System.Windows.Forms.Label();
     this.button3 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.chart3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.SuspendLayout();
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(597, 557);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(14, 14);
     this.label7.TabIndex = 28;
     this.label7.Text     = "C";
     this.label7.Click   += new System.EventHandler(this.Label7_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(595, 350);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(14, 14);
     this.label6.TabIndex = 27;
     this.label6.Text     = "B";
     this.label6.Click   += new System.EventHandler(this.Label6_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(597, 139);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(14, 14);
     this.label5.TabIndex = 26;
     this.label5.Text     = "A";
     //
     // panel6
     //
     this.panel6.BackColor  = System.Drawing.Color.Red;
     this.panel6.Location   = new System.Drawing.Point(400, 473);
     this.panel6.Name       = "panel6";
     this.panel6.Size       = new System.Drawing.Size(5, 180);
     this.panel6.TabIndex   = 17;
     this.panel6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel6_MouseDown);
     this.panel6.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel6_MouseMove);
     this.panel6.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.Panel6_MouseUp);
     //
     // panel5
     //
     this.panel5.BackColor  = System.Drawing.Color.Red;
     this.panel5.Location   = new System.Drawing.Point(192, 473);
     this.panel5.Name       = "panel5";
     this.panel5.Size       = new System.Drawing.Size(5, 180);
     this.panel5.TabIndex   = 18;
     this.panel5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel5_MouseDown);
     this.panel5.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel5_MouseMove);
     this.panel5.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.Panel5_MouseUp);
     //
     // panel4
     //
     this.panel4.BackColor  = System.Drawing.Color.Red;
     this.panel4.Location   = new System.Drawing.Point(400, 259);
     this.panel4.Name       = "panel4";
     this.panel4.Size       = new System.Drawing.Size(5, 180);
     this.panel4.TabIndex   = 19;
     this.panel4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel4_MouseDown);
     this.panel4.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel4_MouseMove);
     this.panel4.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.Panel4_MouseUp);
     //
     // panel3
     //
     this.panel3.BackColor  = System.Drawing.Color.Red;
     this.panel3.Location   = new System.Drawing.Point(192, 259);
     this.panel3.Name       = "panel3";
     this.panel3.Size       = new System.Drawing.Size(5, 180);
     this.panel3.TabIndex   = 20;
     this.panel3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel3_MouseDown);
     this.panel3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel3_MouseMove);
     this.panel3.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.Panel3_MouseUp);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(631, 569);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(0, 12);
     this.label4.TabIndex = 25;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(631, 339);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(0, 12);
     this.label2.TabIndex = 24;
     //
     // chart3
     //
     chartArea1.AxisY2.StripLines.Add(stripLine1);
     chartArea1.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     chartArea1.Name = "ChartArea1";
     this.chart3.ChartAreas.Add(chartArea1);
     legend1.Name = "Legend1";
     this.chart3.Legends.Add(legend1);
     this.chart3.Location   = new System.Drawing.Point(-3, 461);
     this.chart3.Name       = "chart3";
     this.chart3.Palette    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series1.ChartArea      = "ChartArea1";
     series1.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     series1.Legend         = "Legend1";
     series1.Name           = "Series1";
     this.chart3.Series.Add(series1);
     this.chart3.Size     = new System.Drawing.Size(727, 208);
     this.chart3.TabIndex = 23;
     this.chart3.Text     = "chart3";
     //
     // chart2
     //
     chartArea2.AxisY2.StripLines.Add(stripLine2);
     chartArea2.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     chartArea2.Name = "ChartArea1";
     this.chart2.ChartAreas.Add(chartArea2);
     legend2.Name = "Legend1";
     this.chart2.Legends.Add(legend2);
     this.chart2.Location   = new System.Drawing.Point(-3, 248);
     this.chart2.Name       = "chart2";
     this.chart2.Palette    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series2.ChartArea      = "ChartArea1";
     series2.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     series2.Legend         = "Legend1";
     series2.Name           = "Series1";
     this.chart2.Series.Add(series2);
     this.chart2.Size     = new System.Drawing.Size(727, 208);
     this.chart2.TabIndex = 22;
     this.chart2.Text     = "chart2";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(633, 129);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(0, 12);
     this.label3.TabIndex = 14;
     //
     // panel2
     //
     this.panel2.BackColor  = System.Drawing.Color.Red;
     this.panel2.Location   = new System.Drawing.Point(500, 61);
     this.panel2.Name       = "panel2";
     this.panel2.Size       = new System.Drawing.Size(5, 180);
     this.panel2.TabIndex   = 21;
     this.panel2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel2_MouseDown);
     this.panel2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel2_MouseMove);
     this.panel2.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.Panel2_MouseUp);
     //
     // panel1
     //
     this.panel1.BackColor  = System.Drawing.Color.Red;
     this.panel1.Location   = new System.Drawing.Point(192, 61);
     this.panel1.Name       = "panel1";
     this.panel1.Size       = new System.Drawing.Size(5, 180);
     this.panel1.TabIndex   = 16;
     this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel1_MouseDown);
     this.panel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel1_MouseMove);
     this.panel1.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.Panel1_MouseUp);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.Green;
     this.label1.Location  = new System.Drawing.Point(78, 18);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(0, 20);
     this.label1.TabIndex  = 15;
     //
     // button1
     //
     this.button1.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button1.Location  = new System.Drawing.Point(41, 3);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(174, 31);
     this.button1.TabIndex  = 13;
     this.button1.Text      = "启用游标测量";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1_Click_1);
     //
     // chart1
     //
     chartArea3.AxisY2.StripLines.Add(stripLine3);
     chartArea3.BackImageWrapMode = System.Windows.Forms.DataVisualization.Charting.ChartImageWrapMode.TileFlipX;
     chartArea3.Name = "ChartArea1";
     this.chart1.ChartAreas.Add(chartArea3);
     legend3.Name = "Legend1";
     this.chart1.Legends.Add(legend3);
     this.chart1.Location   = new System.Drawing.Point(-2, 40);
     this.chart1.Name       = "chart1";
     this.chart1.Palette    = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
     series3.ChartArea      = "ChartArea1";
     series3.LabelForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     series3.Legend         = "Legend1";
     series3.Name           = "Series1";
     this.chart1.Series.Add(series3);
     this.chart1.Size     = new System.Drawing.Size(727, 208);
     this.chart1.TabIndex = 12;
     this.chart1.Text     = "chart1";
     this.chart1.Click   += new System.EventHandler(this.Chart1_Click);
     //
     // button2
     //
     this.button2.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button2.Location  = new System.Drawing.Point(459, 0);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(118, 37);
     this.button2.TabIndex  = 29;
     this.button2.Text      = "读取完成";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2_Click_1);
     //
     // panel7
     //
     this.panel7.BackColor  = System.Drawing.Color.Red;
     this.panel7.Location   = new System.Drawing.Point(286, 61);
     this.panel7.Name       = "panel7";
     this.panel7.Size       = new System.Drawing.Size(5, 180);
     this.panel7.TabIndex   = 22;
     this.panel7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel7_MouseDown);
     this.panel7.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel7_MouseMove);
     //
     // panel8
     //
     this.panel8.BackColor  = System.Drawing.Color.Red;
     this.panel8.Location   = new System.Drawing.Point(354, 61);
     this.panel8.Name       = "panel8";
     this.panel8.Size       = new System.Drawing.Size(5, 180);
     this.panel8.TabIndex   = 22;
     this.panel8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel8_MouseDown);
     this.panel8.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel8_MouseMove);
     //
     // panel9
     //
     this.panel9.BackColor  = System.Drawing.Color.Red;
     this.panel9.Location   = new System.Drawing.Point(237, 259);
     this.panel9.Name       = "panel9";
     this.panel9.Size       = new System.Drawing.Size(5, 180);
     this.panel9.TabIndex   = 21;
     this.panel9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel9_MouseDown);
     this.panel9.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel9_MouseMove);
     //
     // panel10
     //
     this.panel10.BackColor  = System.Drawing.Color.Red;
     this.panel10.Location   = new System.Drawing.Point(317, 259);
     this.panel10.Name       = "panel10";
     this.panel10.Size       = new System.Drawing.Size(5, 180);
     this.panel10.TabIndex   = 21;
     this.panel10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel10_MouseDown);
     this.panel10.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel10_MouseMove);
     //
     // panel11
     //
     this.panel11.BackColor  = System.Drawing.Color.Red;
     this.panel11.Location   = new System.Drawing.Point(237, 473);
     this.panel11.Name       = "panel11";
     this.panel11.Size       = new System.Drawing.Size(5, 180);
     this.panel11.TabIndex   = 21;
     this.panel11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel11_MouseDown);
     this.panel11.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel11_MouseMove);
     //
     // panel12
     //
     this.panel12.BackColor  = System.Drawing.Color.Red;
     this.panel12.Location   = new System.Drawing.Point(298, 473);
     this.panel12.Name       = "panel12";
     this.panel12.Size       = new System.Drawing.Size(5, 180);
     this.panel12.TabIndex   = 21;
     this.panel12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel12_MouseDown);
     this.panel12.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel12_MouseMove);
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Font      = new System.Drawing.Font("华文中宋", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.ForeColor = System.Drawing.Color.Red;
     this.label8.Location  = new System.Drawing.Point(372, 12);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(40, 16);
     this.label8.TabIndex  = 30;
     this.label8.Text      = "9->8";
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location  = new System.Drawing.Point(221, 12);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(133, 14);
     this.label9.TabIndex  = 31;
     this.label9.Text      = "当前有载分接位置:";
     //
     // button3
     //
     this.button3.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button3.Location  = new System.Drawing.Point(583, 1);
     this.button3.Name      = "button3";
     this.button3.Size      = new System.Drawing.Size(118, 37);
     this.button3.TabIndex  = 32;
     this.button3.Text      = "保存波形";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3_Click);
     //
     // Form2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(720, 669);
     this.ControlBox          = false;
     this.Controls.Add(this.button3);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.panel12);
     this.Controls.Add(this.panel11);
     this.Controls.Add(this.panel10);
     this.Controls.Add(this.panel9);
     this.Controls.Add(this.panel8);
     this.Controls.Add(this.panel7);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.panel6);
     this.Controls.Add(this.panel5);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.chart3);
     this.Controls.Add(this.chart2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chart1);
     this.Name  = "Form2";
     this.Text  = "Form2";
     this.Load += new System.EventHandler(this.Form2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #36
0
        /// <summary>
        /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
        ///
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine3 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.StripLine stripLine4 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
            System.Windows.Forms.DataVisualization.Charting.Legend legend3 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IQPlotForm));
            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 series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.iqChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.zoomInBtn = new System.Windows.Forms.Button();
            this.zoomOutBtn = new System.Windows.Forms.Button();
            this.dopplerChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.typeLbl = new System.Windows.Forms.Label();
            this.svidLbl = new System.Windows.Forms.Label();
            this.ingTimeLbl = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.scaleLbl = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.freqLbl = new System.Windows.Forms.Label();
            this.zoomInDopplerBtn = new System.Windows.Forms.Button();
            this.zoomOutDopplerBtn = new System.Windows.Forms.Button();
            this.autoScaleChk = new System.Windows.Forms.CheckBox();
            this.autoChk = new System.Windows.Forms.CheckBox();
            this.clLbl = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.cn0Lbl = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.csLbl = new System.Windows.Forms.Label();
            this.logLbl = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.openLogBtn = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.iqChart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dopplerChart)).BeginInit();
            this.SuspendLayout();
            // 
            // iqChart
            // 
            chartArea3.AxisX.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea3.AxisX.InterlacedColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            chartArea3.AxisX.Interval = 2500D;
            chartArea3.AxisX.IsLabelAutoFit = false;
            chartArea3.AxisX.IsStartedFromZero = false;
            chartArea3.AxisX.LabelStyle.Font = new System.Drawing.Font("Segoe UI Symbol", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea3.AxisX.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea3.AxisX.Maximum = 10000D;
            chartArea3.AxisX.Minimum = -10000D;
            chartArea3.AxisX.ScaleBreakStyle.LineColor = System.Drawing.Color.Olive;
            chartArea3.AxisX.ScaleBreakStyle.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.DashDotDot;
            stripLine3.BackColor = System.Drawing.Color.White;
            stripLine3.BackImageTransparentColor = System.Drawing.Color.White;
            stripLine3.BackSecondaryColor = System.Drawing.Color.White;
            stripLine3.BorderColor = System.Drawing.Color.Black;
            stripLine3.BorderWidth = 3;
            stripLine3.Text = "Q";
            stripLine3.TextAlignment = System.Drawing.StringAlignment.Near;
            stripLine3.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Horizontal;
            chartArea3.AxisX.StripLines.Add(stripLine3);
            chartArea3.AxisX.TitleFont = new System.Drawing.Font("Segoe Condensed", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea3.AxisX.TitleForeColor = System.Drawing.Color.Lime;
            chartArea3.AxisX2.LineColor = System.Drawing.Color.Gainsboro;
            chartArea3.AxisX2.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea3.AxisX2.TitleForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
            chartArea3.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.True;
            chartArea3.AxisY.Interval = 2500D;
            chartArea3.AxisY.IsLabelAutoFit = false;
            chartArea3.AxisY.LabelStyle.Font = new System.Drawing.Font("Segoe UI Symbol", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea3.AxisY.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
            chartArea3.AxisY.Maximum = 10000D;
            chartArea3.AxisY.Minimum = -10000D;
            stripLine4.BorderColor = System.Drawing.Color.Black;
            stripLine4.BorderWidth = 3;
            stripLine4.Text = "I";
            chartArea3.AxisY.StripLines.Add(stripLine4);
            chartArea3.AxisY.TitleFont = new System.Drawing.Font("Segoe UI Symbol", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            chartArea3.AxisY.TitleForeColor = System.Drawing.Color.Red;
            chartArea3.AxisY2.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.NotSet;
            chartArea3.AxisY2.TitleForeColor = System.Drawing.Color.Yellow;
            chartArea3.Name = "ChartArea1";
            chartArea3.Position.Auto = false;
            chartArea3.Position.Height = 100F;
            chartArea3.Position.Width = 100F;
            this.iqChart.ChartAreas.Add(chartArea3);
            legend3.Name = "Legend1";
            this.iqChart.Legends.Add(legend3);
            this.iqChart.Location = new System.Drawing.Point(7, 129);
            this.iqChart.Name = "iqChart";
            this.iqChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
            series3.ChartArea = "ChartArea1";
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
            series3.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            series3.IsVisibleInLegend = false;
            series3.Legend = "Legend1";
            series3.MarkerBorderColor = System.Drawing.Color.Aqua;
            series3.MarkerColor = System.Drawing.Color.Transparent;
            series3.MarkerSize = 15;
            series3.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series3.Name = "Series1";
            series3.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            series3.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            this.iqChart.Series.Add(series3);
            this.iqChart.Size = new System.Drawing.Size(550, 550);
            this.iqChart.TabIndex = 1;
            this.iqChart.Text = "chart1";
            // 
            // zoomInBtn
            // 
            this.zoomInBtn.Image = ((System.Drawing.Image)(resources.GetObject("zoomInBtn.Image")));
            this.zoomInBtn.Location = new System.Drawing.Point(7, 88);
            this.zoomInBtn.Name = "zoomInBtn";
            this.zoomInBtn.Size = new System.Drawing.Size(40, 40);
            this.zoomInBtn.TabIndex = 2;
            this.zoomInBtn.UseVisualStyleBackColor = true;
            this.zoomInBtn.Click += new System.EventHandler(this.zoomInBtn_Click);
            // 
            // zoomOutBtn
            // 
            this.zoomOutBtn.Image = ((System.Drawing.Image)(resources.GetObject("zoomOutBtn.Image")));
            this.zoomOutBtn.Location = new System.Drawing.Point(53, 88);
            this.zoomOutBtn.Name = "zoomOutBtn";
            this.zoomOutBtn.Size = new System.Drawing.Size(40, 40);
            this.zoomOutBtn.TabIndex = 2;
            this.zoomOutBtn.UseVisualStyleBackColor = true;
            this.zoomOutBtn.Click += new System.EventHandler(this.zoomOutBtn_Click);
            // 
            // dopplerChart
            // 
            chartArea4.AxisX.LabelStyle.Enabled = false;
            chartArea4.AxisY.IsLabelAutoFit = false;
            chartArea4.AxisY.LabelStyle.Interval = 0D;
            chartArea4.Name = "ChartArea1";
            this.dopplerChart.ChartAreas.Add(chartArea4);
            legend4.Name = "Legend1";
            this.dopplerChart.Legends.Add(legend4);
            this.dopplerChart.Location = new System.Drawing.Point(563, 129);
            this.dopplerChart.Name = "dopplerChart";
            series4.ChartArea = "ChartArea1";
            series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            series4.IsVisibleInLegend = false;
            series4.Legend = "Legend1";
            series4.Name = "Series1";
            this.dopplerChart.Series.Add(series4);
            this.dopplerChart.Size = new System.Drawing.Size(550, 550);
            this.dopplerChart.TabIndex = 3;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(15, 39);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(43, 21);
            this.label1.TabIndex = 4;
            this.label1.Text = "Type";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(160, 38);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(44, 21);
            this.label2.TabIndex = 4;
            this.label2.Text = "SVID";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location = new System.Drawing.Point(283, 38);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(150, 21);
            this.label3.TabIndex = 4;
            this.label3.Text = "Integ. Time / Divider";
            // 
            // typeLbl
            // 
            this.typeLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.typeLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.typeLbl.ForeColor = System.Drawing.Color.Blue;
            this.typeLbl.Location = new System.Drawing.Point(64, 39);
            this.typeLbl.Name = "typeLbl";
            this.typeLbl.Size = new System.Drawing.Size(90, 20);
            this.typeLbl.TabIndex = 4;
            // 
            // svidLbl
            // 
            this.svidLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.svidLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.svidLbl.ForeColor = System.Drawing.Color.Blue;
            this.svidLbl.Location = new System.Drawing.Point(210, 38);
            this.svidLbl.Name = "svidLbl";
            this.svidLbl.Size = new System.Drawing.Size(64, 20);
            this.svidLbl.TabIndex = 4;
            // 
            // ingTimeLbl
            // 
            this.ingTimeLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.ingTimeLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ingTimeLbl.ForeColor = System.Drawing.Color.Blue;
            this.ingTimeLbl.Location = new System.Drawing.Point(439, 38);
            this.ingTimeLbl.Name = "ingTimeLbl";
            this.ingTimeLbl.Size = new System.Drawing.Size(64, 20);
            this.ingTimeLbl.TabIndex = 4;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(559, 64);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(46, 21);
            this.label4.TabIndex = 4;
            this.label4.Text = "Scale";
            // 
            // scaleLbl
            // 
            this.scaleLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.scaleLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.scaleLbl.ForeColor = System.Drawing.Color.Blue;
            this.scaleLbl.Location = new System.Drawing.Point(611, 64);
            this.scaleLbl.Name = "scaleLbl";
            this.scaleLbl.Size = new System.Drawing.Size(64, 20);
            this.scaleLbl.TabIndex = 4;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location = new System.Drawing.Point(684, 64);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(82, 21);
            this.label6.TabIndex = 4;
            this.label6.Text = "Frequency";
            // 
            // freqLbl
            // 
            this.freqLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.freqLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.freqLbl.ForeColor = System.Drawing.Color.Blue;
            this.freqLbl.Location = new System.Drawing.Point(772, 64);
            this.freqLbl.Name = "freqLbl";
            this.freqLbl.Size = new System.Drawing.Size(64, 20);
            this.freqLbl.TabIndex = 4;
            // 
            // zoomInDopplerBtn
            // 
            this.zoomInDopplerBtn.Image = ((System.Drawing.Image)(resources.GetObject("zoomInDopplerBtn.Image")));
            this.zoomInDopplerBtn.Location = new System.Drawing.Point(563, 88);
            this.zoomInDopplerBtn.Name = "zoomInDopplerBtn";
            this.zoomInDopplerBtn.Size = new System.Drawing.Size(40, 40);
            this.zoomInDopplerBtn.TabIndex = 2;
            this.zoomInDopplerBtn.UseVisualStyleBackColor = true;
            this.zoomInDopplerBtn.Click += new System.EventHandler(this.zoomInDopplerBtn_Click);
            // 
            // zoomOutDopplerBtn
            // 
            this.zoomOutDopplerBtn.Image = ((System.Drawing.Image)(resources.GetObject("zoomOutDopplerBtn.Image")));
            this.zoomOutDopplerBtn.Location = new System.Drawing.Point(609, 88);
            this.zoomOutDopplerBtn.Name = "zoomOutDopplerBtn";
            this.zoomOutDopplerBtn.Size = new System.Drawing.Size(40, 40);
            this.zoomOutDopplerBtn.TabIndex = 2;
            this.zoomOutDopplerBtn.UseVisualStyleBackColor = true;
            this.zoomOutDopplerBtn.Click += new System.EventHandler(this.zoomOutDopplerBtn_Click);
            // 
            // autoScaleChk
            // 
            this.autoScaleChk.Appearance = System.Windows.Forms.Appearance.Button;
            this.autoScaleChk.AutoSize = true;
            this.autoScaleChk.Checked = true;
            this.autoScaleChk.CheckState = System.Windows.Forms.CheckState.Checked;
            this.autoScaleChk.Image = ((System.Drawing.Image)(resources.GetObject("autoScaleChk.Image")));
            this.autoScaleChk.Location = new System.Drawing.Point(655, 88);
            this.autoScaleChk.Name = "autoScaleChk";
            this.autoScaleChk.Size = new System.Drawing.Size(40, 40);
            this.autoScaleChk.TabIndex = 5;
            this.autoScaleChk.UseVisualStyleBackColor = true;
            this.autoScaleChk.CheckedChanged += new System.EventHandler(this.autoScaleChk_CheckedChanged);
            // 
            // autoChk
            // 
            this.autoChk.Appearance = System.Windows.Forms.Appearance.Button;
            this.autoChk.AutoSize = true;
            this.autoChk.Checked = true;
            this.autoChk.CheckState = System.Windows.Forms.CheckState.Checked;
            this.autoChk.Image = ((System.Drawing.Image)(resources.GetObject("autoChk.Image")));
            this.autoChk.Location = new System.Drawing.Point(99, 88);
            this.autoChk.Name = "autoChk";
            this.autoChk.Size = new System.Drawing.Size(40, 40);
            this.autoChk.TabIndex = 5;
            this.autoChk.UseVisualStyleBackColor = true;
            this.autoChk.CheckedChanged += new System.EventHandler(this.autoChk_CheckedChanged);
            // 
            // clLbl
            // 
            this.clLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.clLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.clLbl.ForeColor = System.Drawing.Color.Blue;
            this.clLbl.Location = new System.Drawing.Point(12, 64);
            this.clLbl.Name = "clLbl";
            this.clLbl.Size = new System.Drawing.Size(90, 20);
            this.clLbl.TabIndex = 4;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.Location = new System.Drawing.Point(120, 64);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(41, 21);
            this.label5.TabIndex = 4;
            this.label5.Text = "CN0";
            // 
            // cn0Lbl
            // 
            this.cn0Lbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.cn0Lbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cn0Lbl.ForeColor = System.Drawing.Color.Blue;
            this.cn0Lbl.Location = new System.Drawing.Point(167, 65);
            this.cn0Lbl.Name = "cn0Lbl";
            this.cn0Lbl.Size = new System.Drawing.Size(64, 20);
            this.cn0Lbl.TabIndex = 4;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.Location = new System.Drawing.Point(252, 65);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(79, 21);
            this.label10.TabIndex = 4;
            this.label10.Text = "Cycle-Slip";
            // 
            // csLbl
            // 
            this.csLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.csLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.csLbl.ForeColor = System.Drawing.Color.Blue;
            this.csLbl.Location = new System.Drawing.Point(337, 64);
            this.csLbl.Name = "csLbl";
            this.csLbl.Size = new System.Drawing.Size(64, 20);
            this.csLbl.TabIndex = 4;
            // 
            // logLbl
            // 
            this.logLbl.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.logLbl.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.logLbl.ForeColor = System.Drawing.Color.Blue;
            this.logLbl.Location = new System.Drawing.Point(137, 9);
            this.logLbl.Name = "logLbl";
            this.logLbl.Size = new System.Drawing.Size(976, 18);
            this.logLbl.TabIndex = 4;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Segoe UI Symbol", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(64, 9);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(67, 21);
            this.label8.TabIndex = 4;
            this.label8.Text = "Log File:";
            // 
            // openLogBtn
            // 
            this.openLogBtn.Location = new System.Drawing.Point(11, 8);
            this.openLogBtn.Name = "openLogBtn";
            this.openLogBtn.Size = new System.Drawing.Size(47, 29);
            this.openLogBtn.TabIndex = 6;
            this.openLogBtn.Text = "Show";
            this.openLogBtn.UseVisualStyleBackColor = true;
            this.openLogBtn.Click += new System.EventHandler(this.openLogBtn_Click);
            // 
            // IQPlotForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1122, 688);
            this.Controls.Add(this.openLogBtn);
            this.Controls.Add(this.autoChk);
            this.Controls.Add(this.autoScaleChk);
            this.Controls.Add(this.scaleLbl);
            this.Controls.Add(this.freqLbl);
            this.Controls.Add(this.ingTimeLbl);
            this.Controls.Add(this.csLbl);
            this.Controls.Add(this.cn0Lbl);
            this.Controls.Add(this.logLbl);
            this.Controls.Add(this.svidLbl);
            this.Controls.Add(this.clLbl);
            this.Controls.Add(this.typeLbl);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label10);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.dopplerChart);
            this.Controls.Add(this.zoomOutDopplerBtn);
            this.Controls.Add(this.zoomOutBtn);
            this.Controls.Add(this.zoomInDopplerBtn);
            this.Controls.Add(this.zoomInBtn);
            this.Controls.Add(this.iqChart);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.Name = "IQPlotForm";
            this.Text = "IQ Plot";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.IQPlotForm_FormClosing);
            this.Load += new System.EventHandler(this.IQPlotForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.iqChart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dopplerChart)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }