Beispiel #1
0
        //public void AutoStart(bool IsStartEvent) { Dispatcher.BeginInvoke((Action)(() => { if (BtnAutoStart.Enabled) BtnStart.Enabled = IsStartEvent; })); }

        // ------------------------------------------------------------

        private void SetMeterLimitsSigned(int MeterIndex, bool LowerEnable, float Lower, bool UpperEnable, float Upper)
        {
            MeterControl ctrl = meters.meter_controls[MeterIndex];

            if (LowerEnable && UpperEnable)
            {
                if (ctrl.NumThresholds != 3)
                {
                    ctrl.NumThresholds = 3;
                    Brush sbr = new SolidColorBrush(Color.FromArgb(0xff, 0xff, 0x44, 0x44));
                    ctrl.SetThresholdScaleBrush(0, sbr);
                    ctrl.SetThresholdScaleBrush(1, sbr);
                    ctrl.SetThresholdScaleBrush(2, sbr);
                    Brush obr1 = new SolidColorBrush(Color.FromArgb(0x88, 0xff, 0x44, 0xff));
                    ctrl.SetThresholdBrush(0, obr1);
                    Brush obr2 = new SolidColorBrush(Color.FromArgb(0x88, 0xff, 0x44, 0x44));
                    ctrl.SetThresholdBrush(3, obr2);
                    Brush normal = new SolidColorBrush(Color.FromArgb(0x44, 0xff, 0xff, 0xff));
                    ctrl.SetThresholdBrush(2, normal);
                    Brush minus = new SolidColorBrush(Color.FromArgb(0x99, 0x44, 0x44, 0xff));
                    ctrl.SetThresholdBrush(1, minus);
                }
                ctrl.SetThreshold(0, Lower);
                ctrl.SetThreshold(1, 0);
                ctrl.SetThreshold(2, Upper);
            }
            else
            {
                throw new NotImplementedException();
            }

            ctrl.RedrawScales();
        }
Beispiel #2
0
        private void SetMeterLimitsUnsigned(int MeterIndex, bool LowerEnable, float Lower, bool UpperEnable, float Upper)
        {
            MeterControl ctrl = meters.meter_controls[MeterIndex];

            if (LowerEnable && UpperEnable)
            {
                if (ctrl.NumThresholds != 2)
                {
                    ctrl.NumThresholds = 2;
                    Brush sbr = new SolidColorBrush(Color.FromArgb(0xff, 0xff, 0x44, 0x44));
                    ctrl.SetThresholdScaleBrush(0, sbr);
                    ctrl.SetThresholdScaleBrush(1, sbr);
                    Brush obr = new SolidColorBrush(Color.FromArgb(0x66, 0xff, 0x44, 0x44));
                    ctrl.SetThresholdBrush(0, obr);
                    ctrl.SetThresholdBrush(2, obr);
                    Brush normal = new SolidColorBrush(Color.FromArgb(0x44, 0xff, 0xff, 0xff));
                    ctrl.SetThresholdBrush(1, normal);
                }
                ctrl.SetThreshold(0, Lower);
                ctrl.SetThreshold(1, Upper);
            }
            else if (LowerEnable || UpperEnable)
            {
                if (ctrl.NumThresholds != 1)
                {
                    ctrl.NumThresholds = 1;
                    Brush sbr = new SolidColorBrush(Color.FromArgb(0xff, 0xff, 0x44, 0x44));
                    ctrl.SetThresholdScaleBrush(0, sbr);
                    Brush obr = new SolidColorBrush(Color.FromArgb(0x66, 0xff, 0x44, 0x44));
                    ctrl.SetThresholdBrush(LowerEnable ? 0 : 1, obr);
                    Brush normal = new SolidColorBrush(Color.FromArgb(0x44, 0xff, 0xff, 0xff));
                    ctrl.SetThresholdBrush(LowerEnable ? 1 : 0, normal);
                }
                ctrl.SetThreshold(0, LowerEnable ? Lower : Upper);
            }
            else
            {
                ctrl.NumThresholds = 0;
            }

            ctrl.RedrawScales();
        }
Beispiel #3
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();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement1 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.NumericSeries numericSeries1 = new Infragistics.UltraChart.Resources.Appearance.NumericSeries();
     Infragistics.UltraChart.Resources.Appearance.NumericDataPoint numericDataPoint1 = new Infragistics.UltraChart.Resources.Appearance.NumericDataPoint();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement2 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("语音表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_INSTRTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICEFILE");
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("语音表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_INSTRTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICEFILE");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CarWeigh));
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量点基础表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SIGN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_METERTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_METERPARA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MOXAIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MOXAPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOUSER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOPWD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTDEPART");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RTUIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RTUPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTERIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTTYPECODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_USEDPRINTPAPER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_USEDPRINTINK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEDIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEDPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_VALUE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ALLOWOTHERTARE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISPLAYPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISPLAYPARA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_READERPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_READERPARA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_READERTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISPLAYTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FF_CLEARVALUE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTSTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINTFLAG");
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YYDJ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("剩余纸张数");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("HZ");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YCJLTX");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("BDDY");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btCorrention");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YYDJ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("剩余纸张数");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("HZ");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QHSP");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YCJLTX");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("BDDY");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btCorrention");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane1 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.Floating, new System.Guid("5b8acd7d-e490-4d71-9a76-0e1f5de0745a"));
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane2 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedRight, new System.Guid("fab36dca-93df-47ae-a661-844c242a30e6"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane1 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("c5b64a87-9b91-46c1-af96-407f0c9a7a68"), new System.Guid("5b8acd7d-e490-4d71-9a76-0e1f5de0745a"), 0, new System.Guid("fab36dca-93df-47ae-a661-844c242a30e6"), -1);
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane3 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.Floating, new System.Guid("d4bf97a0-4113-40bb-bf58-1ccec85fb19f"));
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane4 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedRight, new System.Guid("d2d5fb92-0acb-49d3-8207-82e5bb965657"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane2 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("1e06945f-66c7-4bbc-96f6-b60616076aa9"), new System.Guid("d4bf97a0-4113-40bb-bf58-1ccec85fb19f"), 0, new System.Guid("d2d5fb92-0acb-49d3-8207-82e5bb965657"), -1);
     this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.panelYCSP = new System.Windows.Forms.Panel();
     this.panel16 = new System.Windows.Forms.Panel();
     this.panel20 = new System.Windows.Forms.Panel();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.videoChannel8 = new System.Windows.Forms.PictureBox();
     this.panel15 = new System.Windows.Forms.Panel();
     this.panel19 = new System.Windows.Forms.Panel();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.videoChannel7 = new System.Windows.Forms.PictureBox();
     this.panel22 = new System.Windows.Forms.Panel();
     this.panel18 = new System.Windows.Forms.Panel();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.videoChannel6 = new System.Windows.Forms.PictureBox();
     this.panel21 = new System.Windows.Forms.Panel();
     this.panel17 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.videoChannel5 = new System.Windows.Forms.PictureBox();
     this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraChart1 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.picHT = new System.Windows.Forms.PictureBox();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelYYBF = new System.Windows.Forms.Panel();
     this.panel23 = new System.Windows.Forms.Panel();
     this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn63 = new System.Data.DataColumn();
     this.dataColumn64 = new System.Data.DataColumn();
     this.dataColumn65 = new System.Data.DataColumn();
     this.dataColumn66 = new System.Data.DataColumn();
     this.dataColumn67 = new System.Data.DataColumn();
     this.dataColumn68 = new System.Data.DataColumn();
     this.dataColumn69 = new System.Data.DataColumn();
     this.dataColumn70 = new System.Data.DataColumn();
     this.dataColumn72 = new System.Data.DataColumn();
     this.dataColumn73 = new System.Data.DataColumn();
     this.dataColumn74 = new System.Data.DataColumn();
     this.dataColumn75 = new System.Data.DataColumn();
     this.dataColumn76 = new System.Data.DataColumn();
     this.dataColumn77 = new System.Data.DataColumn();
     this.dataColumn78 = new System.Data.DataColumn();
     this.dataColumn79 = new System.Data.DataColumn();
     this.dataColumn80 = new System.Data.DataColumn();
     this.dataColumn81 = new System.Data.DataColumn();
     this.dataColumn82 = new System.Data.DataColumn();
     this.dataColumn83 = new System.Data.DataColumn();
     this.dataColumn84 = new System.Data.DataColumn();
     this.dataColumn85 = new System.Data.DataColumn();
     this.dataColumn86 = new System.Data.DataColumn();
     this.dataColumn87 = new System.Data.DataColumn();
     this.dataColumn88 = new System.Data.DataColumn();
     this.dataColumn89 = new System.Data.DataColumn();
     this.dataColumn90 = new System.Data.DataColumn();
     this.dataColumn91 = new System.Data.DataColumn();
     this.dataColumn171 = new System.Data.DataColumn();
     this.dataColumn216 = new System.Data.DataColumn();
     this.dataColumn219 = new System.Data.DataColumn();
     this.dataColumn220 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn71 = new System.Data.DataColumn();
     this.dataColumn94 = new System.Data.DataColumn();
     this.dataColumn95 = new System.Data.DataColumn();
     this.dataColumn96 = new System.Data.DataColumn();
     this.dataColumn97 = new System.Data.DataColumn();
     this.dataColumn98 = new System.Data.DataColumn();
     this.dataColumn99 = new System.Data.DataColumn();
     this.dataColumn100 = new System.Data.DataColumn();
     this.dataColumn102 = new System.Data.DataColumn();
     this.dataColumn101 = new System.Data.DataColumn();
     this.dataColumn103 = new System.Data.DataColumn();
     this.dataColumn104 = new System.Data.DataColumn();
     this.dataColumn105 = new System.Data.DataColumn();
     this.dataColumn106 = new System.Data.DataColumn();
     this.dataColumn107 = new System.Data.DataColumn();
     this.dataColumn108 = new System.Data.DataColumn();
     this.dataColumn109 = new System.Data.DataColumn();
     this.dataColumn110 = new System.Data.DataColumn();
     this.dataColumn111 = new System.Data.DataColumn();
     this.dataColumn112 = new System.Data.DataColumn();
     this.dataColumn113 = new System.Data.DataColumn();
     this.dataColumn114 = new System.Data.DataColumn();
     this.dataColumn115 = new System.Data.DataColumn();
     this.dataColumn176 = new System.Data.DataColumn();
     this.dataColumn177 = new System.Data.DataColumn();
     this.dataColumn178 = new System.Data.DataColumn();
     this.dataColumn179 = new System.Data.DataColumn();
     this.dataColumn180 = new System.Data.DataColumn();
     this.dataColumn181 = new System.Data.DataColumn();
     this.dataColumn182 = new System.Data.DataColumn();
     this.dataColumn183 = new System.Data.DataColumn();
     this.dataColumn184 = new System.Data.DataColumn();
     this.dataColumn185 = new System.Data.DataColumn();
     this.dataColumn186 = new System.Data.DataColumn();
     this.dataColumn187 = new System.Data.DataColumn();
     this.dataColumn188 = new System.Data.DataColumn();
     this.dataColumn189 = new System.Data.DataColumn();
     this.dataColumn204 = new System.Data.DataColumn();
     this.dataColumn205 = new System.Data.DataColumn();
     this.dataColumn206 = new System.Data.DataColumn();
     this.dataColumn207 = new System.Data.DataColumn();
     this.dataColumn208 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn92 = new System.Data.DataColumn();
     this.dataColumn93 = new System.Data.DataColumn();
     this.dataTable4 = new System.Data.DataTable();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn172 = new System.Data.DataColumn();
     this.dataColumn173 = new System.Data.DataColumn();
     this.dataColumn174 = new System.Data.DataColumn();
     this.dataColumn175 = new System.Data.DataColumn();
     this.dataColumn217 = new System.Data.DataColumn();
     this.dataColumn218 = new System.Data.DataColumn();
     this.dataTable5 = new System.Data.DataTable();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataTable6 = new System.Data.DataTable();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn59 = new System.Data.DataColumn();
     this.dataColumn60 = new System.Data.DataColumn();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn62 = new System.Data.DataColumn();
     this.dataColumn221 = new System.Data.DataColumn();
     this.dataColumn222 = new System.Data.DataColumn();
     this.dataColumn223 = new System.Data.DataColumn();
     this.dataColumn224 = new System.Data.DataColumn();
     this.dataColumn225 = new System.Data.DataColumn();
     this.dataColumn226 = new System.Data.DataColumn();
     this.dataColumn227 = new System.Data.DataColumn();
     this.dataColumn228 = new System.Data.DataColumn();
     this.dataColumn229 = new System.Data.DataColumn();
     this.dataColumn230 = new System.Data.DataColumn();
     this.dataColumn231 = new System.Data.DataColumn();
     this.dataTable7 = new System.Data.DataTable();
     this.dataColumn116 = new System.Data.DataColumn();
     this.dataColumn117 = new System.Data.DataColumn();
     this.dataColumn118 = new System.Data.DataColumn();
     this.dataColumn119 = new System.Data.DataColumn();
     this.dataTable8 = new System.Data.DataTable();
     this.dataColumn120 = new System.Data.DataColumn();
     this.dataColumn121 = new System.Data.DataColumn();
     this.dataColumn122 = new System.Data.DataColumn();
     this.dataTable9 = new System.Data.DataTable();
     this.dataColumn123 = new System.Data.DataColumn();
     this.dataColumn124 = new System.Data.DataColumn();
     this.dataColumn125 = new System.Data.DataColumn();
     this.dataColumn126 = new System.Data.DataColumn();
     this.dataTable10 = new System.Data.DataTable();
     this.dataColumn127 = new System.Data.DataColumn();
     this.dataColumn128 = new System.Data.DataColumn();
     this.dataTable11 = new System.Data.DataTable();
     this.dataColumn129 = new System.Data.DataColumn();
     this.dataColumn130 = new System.Data.DataColumn();
     this.dataColumn131 = new System.Data.DataColumn();
     this.dataColumn132 = new System.Data.DataColumn();
     this.dataColumn133 = new System.Data.DataColumn();
     this.dataColumn134 = new System.Data.DataColumn();
     this.dataColumn135 = new System.Data.DataColumn();
     this.dataColumn136 = new System.Data.DataColumn();
     this.dataColumn137 = new System.Data.DataColumn();
     this.dataColumn138 = new System.Data.DataColumn();
     this.dataColumn139 = new System.Data.DataColumn();
     this.dataColumn140 = new System.Data.DataColumn();
     this.dataColumn141 = new System.Data.DataColumn();
     this.dataColumn142 = new System.Data.DataColumn();
     this.dataColumn143 = new System.Data.DataColumn();
     this.dataColumn144 = new System.Data.DataColumn();
     this.dataColumn145 = new System.Data.DataColumn();
     this.dataColumn146 = new System.Data.DataColumn();
     this.dataColumn147 = new System.Data.DataColumn();
     this.dataColumn148 = new System.Data.DataColumn();
     this.dataColumn149 = new System.Data.DataColumn();
     this.dataColumn150 = new System.Data.DataColumn();
     this.dataColumn151 = new System.Data.DataColumn();
     this.dataColumn152 = new System.Data.DataColumn();
     this.dataColumn153 = new System.Data.DataColumn();
     this.dataColumn154 = new System.Data.DataColumn();
     this.dataColumn155 = new System.Data.DataColumn();
     this.dataColumn156 = new System.Data.DataColumn();
     this.dataColumn157 = new System.Data.DataColumn();
     this.dataColumn158 = new System.Data.DataColumn();
     this.dataColumn159 = new System.Data.DataColumn();
     this.dataColumn160 = new System.Data.DataColumn();
     this.dataColumn161 = new System.Data.DataColumn();
     this.dataColumn162 = new System.Data.DataColumn();
     this.dataColumn163 = new System.Data.DataColumn();
     this.dataColumn164 = new System.Data.DataColumn();
     this.dataColumn165 = new System.Data.DataColumn();
     this.dataColumn166 = new System.Data.DataColumn();
     this.dataColumn167 = new System.Data.DataColumn();
     this.dataColumn168 = new System.Data.DataColumn();
     this.dataColumn169 = new System.Data.DataColumn();
     this.dataColumn170 = new System.Data.DataColumn();
     this.dataColumn190 = new System.Data.DataColumn();
     this.dataColumn191 = new System.Data.DataColumn();
     this.dataColumn192 = new System.Data.DataColumn();
     this.dataColumn193 = new System.Data.DataColumn();
     this.dataColumn194 = new System.Data.DataColumn();
     this.dataColumn195 = new System.Data.DataColumn();
     this.dataColumn196 = new System.Data.DataColumn();
     this.dataColumn197 = new System.Data.DataColumn();
     this.dataColumn198 = new System.Data.DataColumn();
     this.dataColumn199 = new System.Data.DataColumn();
     this.dataColumn200 = new System.Data.DataColumn();
     this.dataColumn201 = new System.Data.DataColumn();
     this.dataColumn202 = new System.Data.DataColumn();
     this.dataColumn203 = new System.Data.DataColumn();
     this.dataColumn209 = new System.Data.DataColumn();
     this.dataColumn210 = new System.Data.DataColumn();
     this.dataColumn211 = new System.Data.DataColumn();
     this.dataColumn212 = new System.Data.DataColumn();
     this.dataColumn213 = new System.Data.DataColumn();
     this.dataColumn214 = new System.Data.DataColumn();
     this.dataColumn215 = new System.Data.DataColumn();
     this.btn5 = new System.Windows.Forms.Button();
     this.btn6 = new System.Windows.Forms.Button();
     this.btn4 = new System.Windows.Forms.Button();
     this.btn3 = new System.Windows.Forms.Button();
     this.btn2 = new System.Windows.Forms.Button();
     this.btn1 = new System.Windows.Forms.Button();
     this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelSPKZ = new System.Windows.Forms.Panel();
     this.buttonSHORT = new System.Windows.Forms.Button();
     this.buttonLENGTH = new System.Windows.Forms.Button();
     this.buttonZOOMIN = new System.Windows.Forms.Button();
     this.buttonZOOMOUT = new System.Windows.Forms.Button();
     this.buttonRIGHTDOWN = new System.Windows.Forms.Button();
     this.buttonLEFTDOWN = new System.Windows.Forms.Button();
     this.buttonRIGHTUP = new System.Windows.Forms.Button();
     this.buttonLEFTUP = new System.Windows.Forms.Button();
     this.button15 = new System.Windows.Forms.Button();
     this.button14 = new System.Windows.Forms.Button();
     this.buttonRIGHT = new System.Windows.Forms.Button();
     this.buttonLEFT = new System.Windows.Forms.Button();
     this.buttonDOWN = new System.Windows.Forms.Button();
     this.buttonUP = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel7 = new System.Windows.Forms.Panel();
     this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.weighEditorControl1 = new YGJZJL.Car.WeighEditorControl();
     this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = 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.panel8 = new System.Windows.Forms.Panel();
     this.btnRefresh = new System.Windows.Forms.Button();
     this.btnJG = new System.Windows.Forms.Button();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.rtuControl1 = new YGJZJL.Car.RtuControl();
     this.meterControl1 = new YGJZJL.Car.MeterControl();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel14 = new System.Windows.Forms.Panel();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel13 = new System.Windows.Forms.Panel();
     this.videoChannel4 = new System.Windows.Forms.PictureBox();
     this.panel12 = new System.Windows.Forms.Panel();
     this.videoChannel3 = new System.Windows.Forms.PictureBox();
     this.panel11 = new System.Windows.Forms.Panel();
     this.videoChannel2 = new System.Windows.Forms.PictureBox();
     this.panel10 = new System.Windows.Forms.Panel();
     this.videoChannel1 = new System.Windows.Forms.PictureBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.txtZZ = new System.Windows.Forms.TextBox();
     this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this._panel2_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel2_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel2_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel2_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.bigVideoChannel = new System.Windows.Forms.PictureBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel6 = new System.Windows.Forms.Panel();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ultraDockManager1 = new Infragistics.Win.UltraWinDock.UltraDockManager(this.components);
     this._FrmBaseUnpinnedTabAreaLeft = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseUnpinnedTabAreaRight = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseUnpinnedTabAreaTop = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseUnpinnedTabAreaBottom = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseAutoHideControl = new Infragistics.Win.UltraWinDock.AutoHideControl();
     this.dockableWindow1 = new Infragistics.Win.UltraWinDock.DockableWindow();
     this.dockableWindow2 = new Infragistics.Win.UltraWinDock.DockableWindow();
     this.windowDockingArea3 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.windowDockingArea4 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.windowDockingArea2 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.windowDockingArea1 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.ultraTabPageControl3.SuspendLayout();
     this.panelYCSP.SuspendLayout();
     this.panel16.SuspendLayout();
     this.panel20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel8)).BeginInit();
     this.panel15.SuspendLayout();
     this.panel19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel7)).BeginInit();
     this.panel22.SuspendLayout();
     this.panel18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel6)).BeginInit();
     this.panel21.SuspendLayout();
     this.panel17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel5)).BeginInit();
     this.ultraTabPageControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picHT)).BeginInit();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     this.panelYYBF.SuspendLayout();
     this.panel23.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
     this.panelSPKZ.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     this.ultraGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
     this.ultraExpandableGroupBox2.SuspendLayout();
     this.ultraExpandableGroupBoxPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.panel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel4.SuspendLayout();
     this.panel14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel4)).BeginInit();
     this.panel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel3)).BeginInit();
     this.panel11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel2)).BeginInit();
     this.panel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bigVideoChannel)).BeginInit();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDockManager1)).BeginInit();
     this._FrmBaseAutoHideControl.SuspendLayout();
     this.dockableWindow1.SuspendLayout();
     this.dockableWindow2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl3
     //
     this.ultraTabPageControl3.Controls.Add(this.panelYCSP);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl3, null);
     this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 20);
     this.ultraTabPageControl3.Name = "ultraTabPageControl3";
     this.ultraTabPageControl3.Size = new System.Drawing.Size(587, 198);
     this.coreBind.SetVerification(this.ultraTabPageControl3, null);
     //
     // panelYCSP
     //
     this.panelYCSP.AutoScroll = true;
     this.panelYCSP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panelYCSP.Controls.Add(this.panel16);
     this.panelYCSP.Controls.Add(this.panel15);
     this.panelYCSP.Controls.Add(this.panel22);
     this.panelYCSP.Controls.Add(this.panel21);
     this.coreBind.SetDatabasecommand(this.panelYCSP, null);
     this.panelYCSP.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelYCSP.Location = new System.Drawing.Point(0, 0);
     this.panelYCSP.Name = "panelYCSP";
     this.panelYCSP.Size = new System.Drawing.Size(587, 198);
     this.panelYCSP.TabIndex = 17;
     this.coreBind.SetVerification(this.panelYCSP, null);
     //
     // panel16
     //
     this.panel16.Controls.Add(this.panel20);
     this.panel16.Controls.Add(this.videoChannel8);
     this.coreBind.SetDatabasecommand(this.panel16, null);
     this.panel16.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel16.Location = new System.Drawing.Point(900, 0);
     this.panel16.Name = "panel16";
     this.panel16.Size = new System.Drawing.Size(300, 181);
     this.panel16.TabIndex = 5;
     this.coreBind.SetVerification(this.panel16, null);
     //
     // panel20
     //
     this.panel20.Controls.Add(this.pictureBox4);
     this.coreBind.SetDatabasecommand(this.panel20, null);
     this.panel20.Location = new System.Drawing.Point(0, 0);
     this.panel20.Name = "panel20";
     this.panel20.Size = new System.Drawing.Size(29, 23);
     this.panel20.TabIndex = 5;
     this.coreBind.SetVerification(this.panel20, null);
     this.panel20.Visible = false;
     //
     // pictureBox4
     //
     this.coreBind.SetDatabasecommand(this.pictureBox4, null);
     this.pictureBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox4.Location = new System.Drawing.Point(0, 0);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(29, 23);
     this.pictureBox4.TabIndex = 0;
     this.pictureBox4.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox4, null);
     //
     // videoChannel8
     //
     this.videoChannel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel8, null);
     this.videoChannel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel8.Location = new System.Drawing.Point(0, 0);
     this.videoChannel8.Name = "videoChannel8";
     this.videoChannel8.Size = new System.Drawing.Size(300, 181);
     this.videoChannel8.TabIndex = 2;
     this.videoChannel8.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel8, null);
     this.videoChannel8.DoubleClick += new System.EventHandler(this.videoChannel8_DoubleClick);
     //
     // panel15
     //
     this.panel15.Controls.Add(this.panel19);
     this.panel15.Controls.Add(this.videoChannel7);
     this.coreBind.SetDatabasecommand(this.panel15, null);
     this.panel15.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel15.Location = new System.Drawing.Point(600, 0);
     this.panel15.Name = "panel15";
     this.panel15.Size = new System.Drawing.Size(300, 181);
     this.panel15.TabIndex = 4;
     this.coreBind.SetVerification(this.panel15, null);
     //
     // panel19
     //
     this.panel19.Controls.Add(this.pictureBox3);
     this.coreBind.SetDatabasecommand(this.panel19, null);
     this.panel19.Location = new System.Drawing.Point(0, 0);
     this.panel19.Name = "panel19";
     this.panel19.Size = new System.Drawing.Size(29, 23);
     this.panel19.TabIndex = 5;
     this.coreBind.SetVerification(this.panel19, null);
     this.panel19.Visible = false;
     //
     // pictureBox3
     //
     this.coreBind.SetDatabasecommand(this.pictureBox3, null);
     this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox3.Location = new System.Drawing.Point(0, 0);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(29, 23);
     this.pictureBox3.TabIndex = 0;
     this.pictureBox3.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox3, null);
     //
     // videoChannel7
     //
     this.videoChannel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel7, null);
     this.videoChannel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel7.Location = new System.Drawing.Point(0, 0);
     this.videoChannel7.Name = "videoChannel7";
     this.videoChannel7.Size = new System.Drawing.Size(300, 181);
     this.videoChannel7.TabIndex = 2;
     this.videoChannel7.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel7, null);
     this.videoChannel7.DoubleClick += new System.EventHandler(this.videoChannel7_DoubleClick);
     //
     // panel22
     //
     this.panel22.Controls.Add(this.panel18);
     this.panel22.Controls.Add(this.videoChannel6);
     this.coreBind.SetDatabasecommand(this.panel22, null);
     this.panel22.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel22.Location = new System.Drawing.Point(300, 0);
     this.panel22.Name = "panel22";
     this.panel22.Size = new System.Drawing.Size(300, 181);
     this.panel22.TabIndex = 3;
     this.coreBind.SetVerification(this.panel22, null);
     //
     // panel18
     //
     this.panel18.Controls.Add(this.pictureBox2);
     this.coreBind.SetDatabasecommand(this.panel18, null);
     this.panel18.Location = new System.Drawing.Point(0, 0);
     this.panel18.Name = "panel18";
     this.panel18.Size = new System.Drawing.Size(29, 23);
     this.panel18.TabIndex = 5;
     this.coreBind.SetVerification(this.panel18, null);
     this.panel18.Visible = false;
     //
     // pictureBox2
     //
     this.coreBind.SetDatabasecommand(this.pictureBox2, null);
     this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox2.Location = new System.Drawing.Point(0, 0);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(29, 23);
     this.pictureBox2.TabIndex = 0;
     this.pictureBox2.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox2, null);
     //
     // videoChannel6
     //
     this.videoChannel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel6, null);
     this.videoChannel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel6.Location = new System.Drawing.Point(0, 0);
     this.videoChannel6.Name = "videoChannel6";
     this.videoChannel6.Size = new System.Drawing.Size(300, 181);
     this.videoChannel6.TabIndex = 2;
     this.videoChannel6.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel6, null);
     this.videoChannel6.DoubleClick += new System.EventHandler(this.videoChannel6_DoubleClick);
     this.videoChannel6.Click += new System.EventHandler(this.pictureBox2_Click);
     //
     // panel21
     //
     this.panel21.Controls.Add(this.panel17);
     this.panel21.Controls.Add(this.videoChannel5);
     this.coreBind.SetDatabasecommand(this.panel21, null);
     this.panel21.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel21.Location = new System.Drawing.Point(0, 0);
     this.panel21.Name = "panel21";
     this.panel21.Size = new System.Drawing.Size(300, 181);
     this.panel21.TabIndex = 0;
     this.coreBind.SetVerification(this.panel21, null);
     //
     // panel17
     //
     this.panel17.Controls.Add(this.pictureBox1);
     this.coreBind.SetDatabasecommand(this.panel17, null);
     this.panel17.Location = new System.Drawing.Point(0, 0);
     this.panel17.Name = "panel17";
     this.panel17.Size = new System.Drawing.Size(29, 23);
     this.panel17.TabIndex = 4;
     this.coreBind.SetVerification(this.panel17, null);
     this.panel17.Visible = false;
     //
     // pictureBox1
     //
     this.coreBind.SetDatabasecommand(this.pictureBox1, null);
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(29, 23);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox1, null);
     //
     // videoChannel5
     //
     this.videoChannel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel5, null);
     this.videoChannel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel5.Location = new System.Drawing.Point(0, 0);
     this.videoChannel5.Name = "videoChannel5";
     this.videoChannel5.Size = new System.Drawing.Size(300, 181);
     this.videoChannel5.TabIndex = 3;
     this.videoChannel5.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel5, null);
     this.videoChannel5.DoubleClick += new System.EventHandler(this.videoChannel5_DoubleClick);
     //
     // ultraTabPageControl2
     //
     this.ultraTabPageControl2.Controls.Add(this.ultraChart1);
     this.ultraTabPageControl2.Controls.Add(this.picHT);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl2, null);
     this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl2.Name = "ultraTabPageControl2";
     this.ultraTabPageControl2.Size = new System.Drawing.Size(587, 198);
     this.coreBind.SetVerification(this.ultraTabPageControl2, null);
     //
     //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
     //			'ChartType' must be persisted ahead of any Axes change made in design time.
     //
     this.ultraChart1.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart1
     //
     this.ultraChart1.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     paintElement1.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
     paintElement1.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     this.ultraChart1.Axis.PE = paintElement1;
     this.ultraChart1.Axis.X.Extent = 5;
     this.ultraChart1.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X.Labels.Visible = false;
     this.ultraChart1.Axis.X.LineThickness = 1;
     this.ultraChart1.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart1.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart1.Axis.X.TickmarkPercentage = 5;
     this.ultraChart1.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.X.Visible = true;
     this.ultraChart1.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X2.Labels.Visible = false;
     this.ultraChart1.Axis.X2.LineThickness = 1;
     this.ultraChart1.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart1.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.X2.Visible = false;
     this.ultraChart1.Axis.Y.Extent = 40;
     this.ultraChart1.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart1.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y.LineThickness = 1;
     this.ultraChart1.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Y.TickmarkInterval = 0.2;
     this.ultraChart1.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Y.Visible = true;
     this.ultraChart1.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart1.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y2.Labels.Visible = false;
     this.ultraChart1.Axis.Y2.LineThickness = 1;
     this.ultraChart1.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Y2.TickmarkInterval = 50;
     this.ultraChart1.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Y2.Visible = false;
     this.ultraChart1.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z.Labels.Visible = false;
     this.ultraChart1.Axis.Z.LineThickness = 1;
     this.ultraChart1.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Z.Visible = false;
     this.ultraChart1.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z2.Labels.Visible = false;
     this.ultraChart1.Axis.Z2.LineThickness = 1;
     this.ultraChart1.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Z2.Visible = false;
     this.ultraChart1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart1.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart1.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart1.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart1.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     numericSeries1.Key = "series1";
     paintElement2.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
     numericDataPoint1.PE = paintElement2;
     numericSeries1.Points.AddRange(new Infragistics.UltraChart.Resources.Appearance.NumericDataPoint[] {
     numericDataPoint1});
     this.ultraChart1.CompositeChart.Series.AddRange(new Infragistics.UltraChart.Data.Series.ISeries[] {
     numericSeries1});
     this.ultraChart1.Data.DataMember = "曲线图";
     this.coreBind.SetDatabasecommand(this.ultraChart1, null);
     this.ultraChart1.DataMember = "曲线图";
     this.ultraChart1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart1.Effects.Effects.Add(gradientEffect1);
     this.ultraChart1.Location = new System.Drawing.Point(0, 0);
     this.ultraChart1.Name = "ultraChart1";
     this.ultraChart1.Size = new System.Drawing.Size(587, 198);
     this.ultraChart1.TabIndex = 3;
     this.ultraChart1.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart1, null);
     //
     // picHT
     //
     this.coreBind.SetDatabasecommand(this.picHT, null);
     this.picHT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.picHT.Location = new System.Drawing.Point(0, 0);
     this.picHT.Name = "picHT";
     this.picHT.Size = new System.Drawing.Size(587, 198);
     this.picHT.TabIndex = 1;
     this.picHT.TabStop = false;
     this.coreBind.SetVerification(this.picHT, null);
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl1, null);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl1.Name = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size = new System.Drawing.Size(587, 198);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     appearance31.BackColor = System.Drawing.Color.White;
     appearance31.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance31.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid3.DisplayLayout.Appearance = appearance31;
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance32.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance32;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterClearButtonLocation = Infragistics.Win.UltraWinGrid.FilterClearButtonLocation.Row;
     appearance33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance33.BackColor2 = System.Drawing.Color.White;
     appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance33.FontData.SizeInPoints = 11F;
     appearance33.FontData.UnderlineAsString = "False";
     appearance33.ForeColor = System.Drawing.Color.Black;
     appearance33.TextHAlignAsString = "Center";
     appearance33.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance33;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance34.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance34;
     appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance35.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance35;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance36.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance36.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance36;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid3.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid3.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid3.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(587, 198);
     this.ultraGrid3.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClick += new System.EventHandler(this.ultraGrid3_DoubleClick);
     //
     // panelYYBF
     //
     this.panelYYBF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panelYYBF.Controls.Add(this.panel23);
     this.panelYYBF.Controls.Add(this.btn5);
     this.panelYYBF.Controls.Add(this.btn6);
     this.panelYYBF.Controls.Add(this.btn4);
     this.panelYYBF.Controls.Add(this.btn3);
     this.panelYYBF.Controls.Add(this.btn2);
     this.panelYYBF.Controls.Add(this.btn1);
     this.panelYYBF.Controls.Add(this.ultraGrid4);
     this.coreBind.SetDatabasecommand(this.panelYYBF, null);
     this.panelYYBF.Location = new System.Drawing.Point(0, 28);
     this.panelYYBF.Name = "panelYYBF";
     this.panelYYBF.Size = new System.Drawing.Size(133, 718);
     this.panelYYBF.TabIndex = 8;
     this.panelYYBF.Tag = "";
     this.coreBind.SetVerification(this.panelYYBF, null);
     //
     // panel23
     //
     this.panel23.Controls.Add(this.ultraGrid5);
     this.coreBind.SetDatabasecommand(this.panel23, null);
     this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel23.Location = new System.Drawing.Point(0, 0);
     this.panel23.Name = "panel23";
     this.panel23.Size = new System.Drawing.Size(133, 718);
     this.panel23.TabIndex = 33;
     this.coreBind.SetVerification(this.panel23, null);
     //
     // ultraGrid5
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid5, null);
     this.ultraGrid5.DataMember = "语音表";
     this.ultraGrid5.DataSource = this.dataSet1;
     appearance19.BackColor = System.Drawing.Color.White;
     appearance19.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance19.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid5.DisplayLayout.Appearance = appearance19;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.Hidden = true;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4});
     this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid5.DisplayLayout.InterBandSpacing = 10;
     appearance20.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance20;
     appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance21.BackColor2 = System.Drawing.Color.White;
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance21.FontData.SizeInPoints = 11F;
     appearance21.FontData.UnderlineAsString = "False";
     appearance21.ForeColor = System.Drawing.Color.Black;
     appearance21.TextHAlignAsString = "Center";
     appearance21.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance21;
     appearance22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance22;
     appearance23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance23.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid5.DisplayLayout.Override.RowSelectorAppearance = appearance23;
     this.ultraGrid5.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid5.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance25.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance25.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid5.DisplayLayout.Override.SelectedRowAppearance = appearance25;
     this.ultraGrid5.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid5.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid5.Name = "ultraGrid5";
     this.ultraGrid5.Size = new System.Drawing.Size(133, 718);
     this.ultraGrid5.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraGrid5, null);
     this.ultraGrid5.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid5_ClickCell);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable3,
     this.dataTable4,
     this.dataTable5,
     this.dataTable6,
     this.dataTable7,
     this.dataTable8,
     this.dataTable9,
     this.dataTable10,
     this.dataTable11});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn52,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn68,
     this.dataColumn69,
     this.dataColumn70,
     this.dataColumn72,
     this.dataColumn73,
     this.dataColumn74,
     this.dataColumn75,
     this.dataColumn76,
     this.dataColumn77,
     this.dataColumn78,
     this.dataColumn79,
     this.dataColumn80,
     this.dataColumn81,
     this.dataColumn82,
     this.dataColumn83,
     this.dataColumn84,
     this.dataColumn85,
     this.dataColumn86,
     this.dataColumn87,
     this.dataColumn88,
     this.dataColumn89,
     this.dataColumn90,
     this.dataColumn91,
     this.dataColumn171,
     this.dataColumn216,
     this.dataColumn219,
     this.dataColumn220});
     this.dataTable1.TableName = "计量点基础表";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "计量点编码";
     this.dataColumn1.ColumnName = "FS_POINTCODE";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "计量点";
     this.dataColumn2.ColumnName = "FS_POINTNAME";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "接管";
     this.dataColumn3.ColumnName = "XZ";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "接管标志";
     this.dataColumn52.ColumnName = "FS_SIGN";
     //
     // dataColumn63
     //
     this.dataColumn63.Caption = "仪表类型";
     this.dataColumn63.ColumnName = "FS_METERTYPE";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "仪表参数";
     this.dataColumn64.ColumnName = "FS_METERPARA";
     //
     // dataColumn65
     //
     this.dataColumn65.Caption = "IP";
     this.dataColumn65.ColumnName = "FS_MOXAIP";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "端口";
     this.dataColumn66.ColumnName = "FS_MOXAPORT";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "VIEDOIP";
     this.dataColumn67.ColumnName = "FS_VIEDOIP";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "录像机端口";
     this.dataColumn68.ColumnName = "FS_VIEDOPORT";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "用户名";
     this.dataColumn69.ColumnName = "FS_VIEDOUSER";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "密码";
     this.dataColumn70.ColumnName = "FS_VIEDOPWD";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "FS_POINTDEPART";
     this.dataColumn72.ColumnName = "FS_POINTDEPART";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "FS_POINTTYPE";
     this.dataColumn73.ColumnName = "FS_POINTTYPE";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "FS_RTUIP";
     this.dataColumn74.ColumnName = "FS_RTUIP";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "FS_RTUPORT";
     this.dataColumn75.ColumnName = "FS_RTUPORT";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "FS_PRINTERIP";
     this.dataColumn76.ColumnName = "FS_PRINTERIP";
     //
     // dataColumn77
     //
     this.dataColumn77.Caption = "FS_PRINTERNAME";
     this.dataColumn77.ColumnName = "FS_PRINTERNAME";
     //
     // dataColumn78
     //
     this.dataColumn78.Caption = "FS_PRINTTYPECODE";
     this.dataColumn78.ColumnName = "FS_PRINTTYPECODE";
     //
     // dataColumn79
     //
     this.dataColumn79.Caption = "FN_USEDPRINTPAPER";
     this.dataColumn79.ColumnName = "FN_USEDPRINTPAPER";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "FN_USEDPRINTINK";
     this.dataColumn80.ColumnName = "FN_USEDPRINTINK";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "FS_LEDIP";
     this.dataColumn81.ColumnName = "FS_LEDIP";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "FS_LEDPORT";
     this.dataColumn82.ColumnName = "FS_LEDPORT";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "FN_VALUE";
     this.dataColumn83.ColumnName = "FN_VALUE";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "FS_ALLOWOTHERTARE";
     this.dataColumn84.ColumnName = "FS_ALLOWOTHERTARE";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "FS_DISPLAYPORT";
     this.dataColumn85.ColumnName = "FS_DISPLAYPORT";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "FS_DISPLAYPARA";
     this.dataColumn86.ColumnName = "FS_DISPLAYPARA";
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "FS_READERPORT";
     this.dataColumn87.ColumnName = "FS_READERPORT";
     //
     // dataColumn88
     //
     this.dataColumn88.Caption = "FS_READERPARA";
     this.dataColumn88.ColumnName = "FS_READERPARA";
     //
     // dataColumn89
     //
     this.dataColumn89.Caption = "FS_READERTYPE";
     this.dataColumn89.ColumnName = "FS_READERTYPE";
     //
     // dataColumn90
     //
     this.dataColumn90.Caption = "FS_DISPLAYTYPE";
     this.dataColumn90.ColumnName = "FS_DISPLAYTYPE";
     //
     // dataColumn91
     //
     this.dataColumn91.Caption = "FS_LEDTYPE";
     this.dataColumn91.ColumnName = "FS_LEDTYPE";
     //
     // dataColumn171
     //
     this.dataColumn171.ColumnName = "FF_CLEARVALUE";
     //
     // dataColumn216
     //
     this.dataColumn216.Caption = "计量点状态";
     this.dataColumn216.ColumnName = "FS_POINTSTATE";
     //
     // dataColumn219
     //
     this.dataColumn219.ColumnName = "FS_IP";
     //
     // dataColumn220
     //
     this.dataColumn220.ColumnName = "FN_POINTFLAG";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn51,
     this.dataColumn71,
     this.dataColumn94,
     this.dataColumn95,
     this.dataColumn96,
     this.dataColumn97,
     this.dataColumn98,
     this.dataColumn99,
     this.dataColumn100,
     this.dataColumn102,
     this.dataColumn101,
     this.dataColumn103,
     this.dataColumn104,
     this.dataColumn105,
     this.dataColumn106,
     this.dataColumn107,
     this.dataColumn108,
     this.dataColumn109,
     this.dataColumn110,
     this.dataColumn111,
     this.dataColumn112,
     this.dataColumn113,
     this.dataColumn114,
     this.dataColumn115,
     this.dataColumn176,
     this.dataColumn177,
     this.dataColumn178,
     this.dataColumn179,
     this.dataColumn180,
     this.dataColumn181,
     this.dataColumn182,
     this.dataColumn183,
     this.dataColumn184,
     this.dataColumn185,
     this.dataColumn186,
     this.dataColumn187,
     this.dataColumn188,
     this.dataColumn189,
     this.dataColumn204,
     this.dataColumn205,
     this.dataColumn206,
     this.dataColumn207,
     this.dataColumn208});
     this.dataTable2.TableName = "一次计量表";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "作业编号";
     this.dataColumn4.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "预报号";
     this.dataColumn5.ColumnName = "FS_PLANCODE";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "合同号";
     this.dataColumn6.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "合同项目编号";
     this.dataColumn7.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "炉号";
     this.dataColumn8.ColumnName = "FS_STOVENO";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "支数";
     this.dataColumn9.ColumnName = "FN_COUNT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "卡号";
     this.dataColumn10.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "车号";
     this.dataColumn11.ColumnName = "FS_CARNO";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "重量";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量点";
     this.dataColumn13.ColumnName = "FS_POUND";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "计量员";
     this.dataColumn14.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "计量时间";
     this.dataColumn15.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "班次";
     this.dataColumn16.ColumnName = "FS_SHIFT";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "流向";
     this.dataColumn17.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "发货单位";
     this.dataColumn18.ColumnName = "FS_SENDER";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "收货单位";
     this.dataColumn19.ColumnName = "FS_RECEIVER";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "承运单位";
     this.dataColumn20.ColumnName = "FS_TRANSNO";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "物料名称";
     this.dataColumn51.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "是否异常";
     this.dataColumn71.ColumnName = "FS_YCSFYC";
     //
     // dataColumn94
     //
     this.dataColumn94.Caption = "发货库存点代码";
     this.dataColumn94.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn95
     //
     this.dataColumn95.Caption = "收货库存点代码";
     this.dataColumn95.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn96
     //
     this.dataColumn96.Caption = "磅房编号";
     this.dataColumn96.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn97
     //
     this.dataColumn97.Caption = "预报总重";
     this.dataColumn97.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn98
     //
     this.dataColumn98.Caption = "预报皮重";
     this.dataColumn98.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn99
     //
     this.dataColumn99.Caption = "预报净量";
     this.dataColumn99.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn100
     //
     this.dataColumn100.Caption = "班别";
     this.dataColumn100.ColumnName = "FS_TERM";
     //
     // dataColumn102
     //
     this.dataColumn102.Caption = "发货单位";
     this.dataColumn102.ColumnName = "FS_FHDW";
     //
     // dataColumn101
     //
     this.dataColumn101.Caption = "收货单位";
     this.dataColumn101.ColumnName = "FS_SHDW";
     //
     // dataColumn103
     //
     this.dataColumn103.Caption = "承运单位";
     this.dataColumn103.ColumnName = "FS_CYDW";
     //
     // dataColumn104
     //
     this.dataColumn104.Caption = "流向";
     this.dataColumn104.ColumnName = "FS_LX";
     //
     // dataColumn105
     //
     this.dataColumn105.Caption = "装车入库时间";
     this.dataColumn105.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn106
     //
     this.dataColumn106.Caption = "装车出库时间";
     this.dataColumn106.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn107
     //
     this.dataColumn107.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn108
     //
     this.dataColumn108.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataColumn109
     //
     this.dataColumn109.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn110
     //
     this.dataColumn110.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn111
     //
     this.dataColumn111.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn112
     //
     this.dataColumn112.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn113
     //
     this.dataColumn113.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn114
     //
     this.dataColumn114.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn115
     //
     this.dataColumn115.ColumnName = "FS_MATERIAL";
     //
     // dataColumn176
     //
     this.dataColumn176.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn177
     //
     this.dataColumn177.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn178
     //
     this.dataColumn178.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn179
     //
     this.dataColumn179.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn180
     //
     this.dataColumn180.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn181
     //
     this.dataColumn181.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn182
     //
     this.dataColumn182.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn183
     //
     this.dataColumn183.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn184
     //
     this.dataColumn184.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn185
     //
     this.dataColumn185.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn186
     //
     this.dataColumn186.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn187
     //
     this.dataColumn187.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn188
     //
     this.dataColumn188.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn189
     //
     this.dataColumn189.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn204
     //
     this.dataColumn204.Caption = "应扣量";
     this.dataColumn204.ColumnName = "FS_YKL";
     //
     // dataColumn205
     //
     this.dataColumn205.Caption = "复磅标志";
     this.dataColumn205.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn206
     //
     this.dataColumn206.Caption = "复磅确认时间";
     this.dataColumn206.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn207
     //
     this.dataColumn207.Caption = "复磅确认地点";
     this.dataColumn207.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn208
     //
     this.dataColumn208.Caption = "复磅确认员";
     this.dataColumn208.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn92,
     this.dataColumn93});
     this.dataTable3.TableName = "语音表";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "声音名称";
     this.dataColumn21.ColumnName = "FS_VOICENAME";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "计量类型汽车衡";
     this.dataColumn22.ColumnName = "FS_INSTRTYPE";
     //
     // dataColumn92
     //
     this.dataColumn92.Caption = "描述";
     this.dataColumn92.ColumnName = "FS_MEMO";
     //
     // dataColumn93
     //
     this.dataColumn93.ColumnName = "FS_VOICEFILE";
     this.dataColumn93.DataType = typeof(byte[]);
     //
     // dataTable4
     //
     this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn53,
     this.dataColumn172,
     this.dataColumn173,
     this.dataColumn174,
     this.dataColumn175,
     this.dataColumn217,
     this.dataColumn218});
     this.dataTable4.TableName = "预报表";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FS_PLANCODE";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_CARNO";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FS_SENDER";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_MATERIAL";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_RECEIVERFACTORY";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "FS_TRANSNO";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FS_STOVENO";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "期限皮重标志";
     this.dataColumn53.ColumnName = "FS_LEVEL";
     //
     // dataColumn172
     //
     this.dataColumn172.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn173
     //
     this.dataColumn173.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn174
     //
     this.dataColumn174.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn175
     //
     this.dataColumn175.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn217
     //
     this.dataColumn217.Caption = "供应商";
     this.dataColumn217.ColumnName = "FS_PROVIDER";
     //
     // dataColumn218
     //
     this.dataColumn218.ColumnName = "FS_DRIVERREMARK";
     //
     // dataTable5
     //
     this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50});
     this.dataTable5.TableName = "图片表";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "作业编号";
     this.dataColumn36.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FB_IMAGE1";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "FB_IMAGE2";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FB_IMAGE3";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FB_IMAGE4";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FB_IMAGE5";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FB_IMAGE6";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FB_IMAGE7";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FB_IMAGE8";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FB_IMAGE9";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FB_IMAGE10";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FB_IMAGE11";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "FB_IMAGE12";
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FB_IMAGEYCJL";
     //
     // dataColumn50
     //
     this.dataColumn50.ColumnName = "FB_IMAGEECJL";
     //
     // dataTable6
     //
     this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     this.dataColumn221,
     this.dataColumn222,
     this.dataColumn223,
     this.dataColumn224,
     this.dataColumn225,
     this.dataColumn226,
     this.dataColumn227,
     this.dataColumn228,
     this.dataColumn229,
     this.dataColumn230,
     this.dataColumn231});
     this.dataTable6.TableName = "曲线图";
     //
     // dataColumn54
     //
     this.dataColumn54.ColumnName = "ZL1";
     this.dataColumn54.DataType = typeof(decimal);
     //
     // dataColumn55
     //
     this.dataColumn55.ColumnName = "ZL2";
     this.dataColumn55.DataType = typeof(decimal);
     //
     // dataColumn56
     //
     this.dataColumn56.ColumnName = "ZL3";
     this.dataColumn56.DataType = typeof(decimal);
     //
     // dataColumn57
     //
     this.dataColumn57.ColumnName = "ZL4";
     this.dataColumn57.DataType = typeof(decimal);
     //
     // dataColumn58
     //
     this.dataColumn58.ColumnName = "ZL5";
     this.dataColumn58.DataType = typeof(decimal);
     //
     // dataColumn59
     //
     this.dataColumn59.ColumnName = "ZL6";
     this.dataColumn59.DataType = typeof(decimal);
     //
     // dataColumn60
     //
     this.dataColumn60.ColumnName = "ZL7";
     this.dataColumn60.DataType = typeof(decimal);
     //
     // dataColumn61
     //
     this.dataColumn61.ColumnName = "ZL8";
     this.dataColumn61.DataType = typeof(decimal);
     //
     // dataColumn62
     //
     this.dataColumn62.ColumnName = "ZL9";
     this.dataColumn62.DataType = typeof(decimal);
     //
     // dataColumn221
     //
     this.dataColumn221.ColumnName = "ZL10";
     //
     // dataColumn222
     //
     this.dataColumn222.ColumnName = "ZL11";
     //
     // dataColumn223
     //
     this.dataColumn223.ColumnName = "ZL12";
     //
     // dataColumn224
     //
     this.dataColumn224.ColumnName = "ZL13";
     //
     // dataColumn225
     //
     this.dataColumn225.ColumnName = "ZL14";
     //
     // dataColumn226
     //
     this.dataColumn226.ColumnName = "ZL15";
     //
     // dataColumn227
     //
     this.dataColumn227.ColumnName = "ZL16";
     //
     // dataColumn228
     //
     this.dataColumn228.ColumnName = "ZL17";
     //
     // dataColumn229
     //
     this.dataColumn229.ColumnName = "ZL18";
     //
     // dataColumn230
     //
     this.dataColumn230.ColumnName = "ZL19";
     //
     // dataColumn231
     //
     this.dataColumn231.ColumnName = "ZL20";
     //
     // dataTable7
     //
     this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn116,
     this.dataColumn117,
     this.dataColumn118,
     this.dataColumn119});
     this.dataTable7.TableName = "物料表";
     //
     // dataColumn116
     //
     this.dataColumn116.ColumnName = "FS_POINTNO";
     //
     // dataColumn117
     //
     this.dataColumn117.ColumnName = "FS_MATERIALNO";
     //
     // dataColumn118
     //
     this.dataColumn118.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn119
     //
     this.dataColumn119.ColumnName = "FN_TIMES";
     //
     // dataTable8
     //
     this.dataTable8.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn120,
     this.dataColumn121,
     this.dataColumn122});
     this.dataTable8.TableName = "发货单位表";
     //
     // dataColumn120
     //
     this.dataColumn120.ColumnName = "FS_POINTNO";
     //
     // dataColumn121
     //
     this.dataColumn121.ColumnName = "FS_SUPPLIER";
     //
     // dataColumn122
     //
     this.dataColumn122.ColumnName = "FS_SUPPLIERNAME";
     //
     // dataTable9
     //
     this.dataTable9.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn123,
     this.dataColumn124,
     this.dataColumn125,
     this.dataColumn126});
     this.dataTable9.TableName = "收货单位表";
     //
     // dataColumn123
     //
     this.dataColumn123.ColumnName = "FS_POINTNO";
     //
     // dataColumn124
     //
     this.dataColumn124.ColumnName = "FS_RECEIVER";
     //
     // dataColumn125
     //
     this.dataColumn125.ColumnName = "FS_MEMO";
     //
     // dataColumn126
     //
     this.dataColumn126.ColumnName = "FN_TIMES";
     //
     // dataTable10
     //
     this.dataTable10.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn127,
     this.dataColumn128});
     this.dataTable10.TableName = "承运单位表";
     //
     // dataColumn127
     //
     this.dataColumn127.ColumnName = "FS_TRANSNO";
     //
     // dataColumn128
     //
     this.dataColumn128.ColumnName = "FS_TRANSNAME";
     //
     // dataTable11
     //
     this.dataTable11.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn129,
     this.dataColumn130,
     this.dataColumn131,
     this.dataColumn132,
     this.dataColumn133,
     this.dataColumn134,
     this.dataColumn135,
     this.dataColumn136,
     this.dataColumn137,
     this.dataColumn138,
     this.dataColumn139,
     this.dataColumn140,
     this.dataColumn141,
     this.dataColumn142,
     this.dataColumn143,
     this.dataColumn144,
     this.dataColumn145,
     this.dataColumn146,
     this.dataColumn147,
     this.dataColumn148,
     this.dataColumn149,
     this.dataColumn150,
     this.dataColumn151,
     this.dataColumn152,
     this.dataColumn153,
     this.dataColumn154,
     this.dataColumn155,
     this.dataColumn156,
     this.dataColumn157,
     this.dataColumn158,
     this.dataColumn159,
     this.dataColumn160,
     this.dataColumn161,
     this.dataColumn162,
     this.dataColumn163,
     this.dataColumn164,
     this.dataColumn165,
     this.dataColumn166,
     this.dataColumn167,
     this.dataColumn168,
     this.dataColumn169,
     this.dataColumn170,
     this.dataColumn190,
     this.dataColumn191,
     this.dataColumn192,
     this.dataColumn193,
     this.dataColumn194,
     this.dataColumn195,
     this.dataColumn196,
     this.dataColumn197,
     this.dataColumn198,
     this.dataColumn199,
     this.dataColumn200,
     this.dataColumn201,
     this.dataColumn202,
     this.dataColumn203,
     this.dataColumn209,
     this.dataColumn210,
     this.dataColumn211,
     this.dataColumn212,
     this.dataColumn213,
     this.dataColumn214,
     this.dataColumn215});
     this.dataTable11.TableName = "绑定一次计量表";
     //
     // dataColumn129
     //
     this.dataColumn129.Caption = "作业编号";
     this.dataColumn129.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn130
     //
     this.dataColumn130.Caption = "预报号";
     this.dataColumn130.ColumnName = "FS_PLANCODE";
     //
     // dataColumn131
     //
     this.dataColumn131.Caption = "卡号";
     this.dataColumn131.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn132
     //
     this.dataColumn132.Caption = "车号";
     this.dataColumn132.ColumnName = "FS_CARNO";
     //
     // dataColumn133
     //
     this.dataColumn133.Caption = "合同号";
     this.dataColumn133.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn134
     //
     this.dataColumn134.Caption = "合同项目编号";
     this.dataColumn134.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn135
     //
     this.dataColumn135.Caption = "物资代码";
     this.dataColumn135.ColumnName = "FS_MATERIAL";
     //
     // dataColumn136
     //
     this.dataColumn136.Caption = "物料名称";
     this.dataColumn136.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn137
     //
     this.dataColumn137.Caption = "流向代码";
     this.dataColumn137.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn138
     //
     this.dataColumn138.Caption = "流向";
     this.dataColumn138.ColumnName = "FS_LX";
     //
     // dataColumn139
     //
     this.dataColumn139.Caption = "发货单位代码";
     this.dataColumn139.ColumnName = "FS_SENDER";
     //
     // dataColumn140
     //
     this.dataColumn140.Caption = "发货单位";
     this.dataColumn140.ColumnName = "FS_FHDW";
     //
     // dataColumn141
     //
     this.dataColumn141.Caption = "发货库存点代码";
     this.dataColumn141.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn142
     //
     this.dataColumn142.Caption = "收货工厂代码";
     this.dataColumn142.ColumnName = "FS_RECEIVER";
     //
     // dataColumn143
     //
     this.dataColumn143.Caption = "收货单位";
     this.dataColumn143.ColumnName = "FS_SHDW";
     //
     // dataColumn144
     //
     this.dataColumn144.Caption = "承运方代码";
     this.dataColumn144.ColumnName = "FS_TRANSNO";
     //
     // dataColumn145
     //
     this.dataColumn145.Caption = "承运单位";
     this.dataColumn145.ColumnName = "FS_CYDW";
     //
     // dataColumn146
     //
     this.dataColumn146.Caption = "收货库存点代码";
     this.dataColumn146.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn147
     //
     this.dataColumn147.Caption = "磅房编号";
     this.dataColumn147.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn148
     //
     this.dataColumn148.Caption = "计量点";
     this.dataColumn148.ColumnName = "FS_POUND";
     //
     // dataColumn149
     //
     this.dataColumn149.Caption = "预报总重";
     this.dataColumn149.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn150
     //
     this.dataColumn150.Caption = "预报皮重";
     this.dataColumn150.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn151
     //
     this.dataColumn151.Caption = "预报净量";
     this.dataColumn151.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn152
     //
     this.dataColumn152.Caption = "重量";
     this.dataColumn152.ColumnName = "FN_WEIGHT";
     //
     // dataColumn153
     //
     this.dataColumn153.Caption = "计量员";
     this.dataColumn153.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn154
     //
     this.dataColumn154.Caption = "计量时间";
     this.dataColumn154.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn155
     //
     this.dataColumn155.Caption = "班次";
     this.dataColumn155.ColumnName = "FS_SHIFT";
     //
     // dataColumn156
     //
     this.dataColumn156.Caption = "班别";
     this.dataColumn156.ColumnName = "FS_TERM";
     //
     // dataColumn157
     //
     this.dataColumn157.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn158
     //
     this.dataColumn158.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn159
     //
     this.dataColumn159.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn160
     //
     this.dataColumn160.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataColumn161
     //
     this.dataColumn161.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn162
     //
     this.dataColumn162.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn163
     //
     this.dataColumn163.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn164
     //
     this.dataColumn164.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn165
     //
     this.dataColumn165.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn166
     //
     this.dataColumn166.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn167
     //
     this.dataColumn167.Caption = "是否异常";
     this.dataColumn167.ColumnName = "FS_YCSFYC";
     //
     // dataColumn168
     //
     this.dataColumn168.Caption = "应扣量";
     this.dataColumn168.ColumnName = "FS_YKL";
     //
     // dataColumn169
     //
     this.dataColumn169.Caption = "炉号";
     this.dataColumn169.ColumnName = "FS_STOVENO";
     //
     // dataColumn170
     //
     this.dataColumn170.Caption = "支数";
     this.dataColumn170.ColumnName = "FN_COUNT";
     //
     // dataColumn190
     //
     this.dataColumn190.Caption = "取样时间";
     this.dataColumn190.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn191
     //
     this.dataColumn191.Caption = "取样点";
     this.dataColumn191.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn192
     //
     this.dataColumn192.Caption = "取样确认";
     this.dataColumn192.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn193
     //
     this.dataColumn193.Caption = "卸车员";
     this.dataColumn193.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn194
     //
     this.dataColumn194.Caption = "卸车时间";
     this.dataColumn194.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn195
     //
     this.dataColumn195.Caption = "卸车点";
     this.dataColumn195.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn196
     //
     this.dataColumn196.Caption = "验收员";
     this.dataColumn196.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn197
     //
     this.dataColumn197.Caption = "验收时间";
     this.dataColumn197.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn198
     //
     this.dataColumn198.Caption = "验收点";
     this.dataColumn198.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn199
     //
     this.dataColumn199.Caption = "验收确认";
     this.dataColumn199.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn200
     //
     this.dataColumn200.Caption = "是否取样需要";
     this.dataColumn200.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn201
     //
     this.dataColumn201.Caption = "是否需要验收 ";
     this.dataColumn201.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn202
     //
     this.dataColumn202.Caption = "驾驶员姓名";
     this.dataColumn202.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn203
     //
     this.dataColumn203.Caption = "驾驶员身份证";
     this.dataColumn203.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn209
     //
     this.dataColumn209.Caption = "复磅标记";
     this.dataColumn209.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn210
     //
     this.dataColumn210.Caption = "复磅确认时间";
     this.dataColumn210.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn211
     //
     this.dataColumn211.Caption = "复磅确认地点";
     this.dataColumn211.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn212
     //
     this.dataColumn212.Caption = "复磅确认员";
     this.dataColumn212.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn213
     //
     this.dataColumn213.Caption = "对方净重";
     this.dataColumn213.ColumnName = "FS_DFJZ";
     //
     // dataColumn214
     //
     this.dataColumn214.Caption = "单据编号";
     this.dataColumn214.ColumnName = "FS_BILLNUMBER";
     //
     // dataColumn215
     //
     this.dataColumn215.Caption = "应扣比例";
     this.dataColumn215.ColumnName = "FS_YKBL";
     //
     // btn5
     //
     this.btn5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn5, null);
     this.btn5.Location = new System.Drawing.Point(22, 166);
     this.btn5.Name = "btn5";
     this.btn5.Size = new System.Drawing.Size(94, 28);
     this.btn5.TabIndex = 13;
     this.btn5.Text = "称重完成";
     this.btn5.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn5, null);
     //
     // btn6
     //
     this.btn6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn6, null);
     this.btn6.Location = new System.Drawing.Point(22, 200);
     this.btn6.Name = "btn6";
     this.btn6.Size = new System.Drawing.Size(94, 39);
     this.btn6.TabIndex = 12;
     this.btn6.Text = "此车无预报请离开秤台";
     this.btn6.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn6, null);
     //
     // btn4
     //
     this.btn4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn4, null);
     this.btn4.Location = new System.Drawing.Point(7, 132);
     this.btn4.Name = "btn4";
     this.btn4.Size = new System.Drawing.Size(120, 28);
     this.btn4.TabIndex = 11;
     this.btn4.Text = "单据放倒请放正";
     this.btn4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn4, null);
     //
     // btn3
     //
     this.btn3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn3, null);
     this.btn3.Location = new System.Drawing.Point(19, 87);
     this.btn3.Name = "btn3";
     this.btn3.Size = new System.Drawing.Size(99, 39);
     this.btn3.TabIndex = 10;
     this.btn3.Text = " 超出停车线   请后退到停车线";
     this.btn3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn3, null);
     //
     // btn2
     //
     this.btn2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn2, null);
     this.btn2.Location = new System.Drawing.Point(7, 54);
     this.btn2.Name = "btn2";
     this.btn2.Size = new System.Drawing.Size(122, 28);
     this.btn2.TabIndex = 9;
     this.btn2.Text = "请放第一次临时磅单";
     this.btn2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn2, null);
     //
     // btn1
     //
     this.btn1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn1, null);
     this.btn1.Location = new System.Drawing.Point(22, 20);
     this.btn1.Name = "btn1";
     this.btn1.Size = new System.Drawing.Size(94, 28);
     this.btn1.TabIndex = 8;
     this.btn1.Text = "请报车号";
     this.btn1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn1, null);
     //
     // ultraGrid4
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid4, null);
     this.ultraGrid4.DataMember = "语音表";
     this.ultraGrid4.DataSource = this.dataSet1;
     appearance7.BackColor = System.Drawing.Color.White;
     appearance7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid4.DisplayLayout.Appearance = appearance7;
     ultraGridColumn5.Header.VisiblePosition = 0;
     ultraGridColumn6.Header.VisiblePosition = 1;
     ultraGridColumn7.Header.VisiblePosition = 2;
     ultraGridColumn8.Header.VisiblePosition = 3;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8});
     this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid4.DisplayLayout.InterBandSpacing = 10;
     appearance8.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance8;
     appearance9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance9.BackColor2 = System.Drawing.Color.White;
     appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance9.FontData.SizeInPoints = 11F;
     appearance9.FontData.UnderlineAsString = "False";
     appearance9.ForeColor = System.Drawing.Color.Black;
     appearance9.TextHAlignAsString = "Center";
     appearance9.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance9;
     appearance10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance10;
     appearance11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid4.DisplayLayout.Override.RowSelectorAppearance = appearance11;
     this.ultraGrid4.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid4.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance12.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid4.DisplayLayout.Override.SelectedRowAppearance = appearance12;
     this.ultraGrid4.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid4.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid4.Location = new System.Drawing.Point(0, 469);
     this.ultraGrid4.Name = "ultraGrid4";
     this.ultraGrid4.Size = new System.Drawing.Size(109, 157);
     this.ultraGrid4.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraGrid4, null);
     this.ultraGrid4.Visible = false;
     //
     // panelSPKZ
     //
     this.panelSPKZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panelSPKZ.Controls.Add(this.buttonSHORT);
     this.panelSPKZ.Controls.Add(this.buttonLENGTH);
     this.panelSPKZ.Controls.Add(this.buttonZOOMIN);
     this.panelSPKZ.Controls.Add(this.buttonZOOMOUT);
     this.panelSPKZ.Controls.Add(this.buttonRIGHTDOWN);
     this.panelSPKZ.Controls.Add(this.buttonLEFTDOWN);
     this.panelSPKZ.Controls.Add(this.buttonRIGHTUP);
     this.panelSPKZ.Controls.Add(this.buttonLEFTUP);
     this.panelSPKZ.Controls.Add(this.button15);
     this.panelSPKZ.Controls.Add(this.button14);
     this.panelSPKZ.Controls.Add(this.buttonRIGHT);
     this.panelSPKZ.Controls.Add(this.buttonLEFT);
     this.panelSPKZ.Controls.Add(this.buttonDOWN);
     this.panelSPKZ.Controls.Add(this.buttonUP);
     this.coreBind.SetDatabasecommand(this.panelSPKZ, null);
     this.panelSPKZ.Location = new System.Drawing.Point(0, 28);
     this.panelSPKZ.Name = "panelSPKZ";
     this.panelSPKZ.Size = new System.Drawing.Size(132, 718);
     this.panelSPKZ.TabIndex = 2;
     this.coreBind.SetVerification(this.panelSPKZ, null);
     //
     // buttonSHORT
     //
     this.buttonSHORT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonSHORT, null);
     this.buttonSHORT.Location = new System.Drawing.Point(68, 285);
     this.buttonSHORT.Name = "buttonSHORT";
     this.buttonSHORT.Size = new System.Drawing.Size(55, 28);
     this.buttonSHORT.TabIndex = 20;
     this.buttonSHORT.Tag = "7";
     this.buttonSHORT.Text = "调焦-";
     this.buttonSHORT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonSHORT, null);
     this.buttonSHORT.Click += new System.EventHandler(this.buttonSHORT_Click);
     //
     // buttonLENGTH
     //
     this.buttonLENGTH.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLENGTH, null);
     this.buttonLENGTH.Location = new System.Drawing.Point(7, 285);
     this.buttonLENGTH.Name = "buttonLENGTH";
     this.buttonLENGTH.Size = new System.Drawing.Size(55, 28);
     this.buttonLENGTH.TabIndex = 19;
     this.buttonLENGTH.Tag = "6";
     this.buttonLENGTH.Text = "调焦+";
     this.buttonLENGTH.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLENGTH, null);
     this.buttonLENGTH.Click += new System.EventHandler(this.buttonLENGTH_Click);
     //
     // buttonZOOMIN
     //
     this.buttonZOOMIN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonZOOMIN, null);
     this.buttonZOOMIN.Location = new System.Drawing.Point(68, 245);
     this.buttonZOOMIN.Name = "buttonZOOMIN";
     this.buttonZOOMIN.Size = new System.Drawing.Size(55, 28);
     this.buttonZOOMIN.TabIndex = 18;
     this.buttonZOOMIN.Tag = "5";
     this.buttonZOOMIN.Text = "变倍-";
     this.buttonZOOMIN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonZOOMIN, null);
     this.buttonZOOMIN.Click += new System.EventHandler(this.buttonZOOMIN_Click);
     //
     // buttonZOOMOUT
     //
     this.buttonZOOMOUT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonZOOMOUT, null);
     this.buttonZOOMOUT.Location = new System.Drawing.Point(7, 245);
     this.buttonZOOMOUT.Name = "buttonZOOMOUT";
     this.buttonZOOMOUT.Size = new System.Drawing.Size(55, 28);
     this.buttonZOOMOUT.TabIndex = 17;
     this.buttonZOOMOUT.Tag = "4";
     this.buttonZOOMOUT.Text = "变倍+";
     this.buttonZOOMOUT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonZOOMOUT, null);
     this.buttonZOOMOUT.Click += new System.EventHandler(this.buttonZOOMOUT_Click);
     //
     // buttonRIGHTDOWN
     //
     this.buttonRIGHTDOWN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonRIGHTDOWN, null);
     this.buttonRIGHTDOWN.Location = new System.Drawing.Point(68, 196);
     this.buttonRIGHTDOWN.Name = "buttonRIGHTDOWN";
     this.buttonRIGHTDOWN.Size = new System.Drawing.Size(55, 28);
     this.buttonRIGHTDOWN.TabIndex = 16;
     this.buttonRIGHTDOWN.Tag = "35";
     this.buttonRIGHTDOWN.Text = "右下";
     this.buttonRIGHTDOWN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonRIGHTDOWN, null);
     this.buttonRIGHTDOWN.Click += new System.EventHandler(this.buttonRIGHTDOWN_Click);
     //
     // buttonLEFTDOWN
     //
     this.buttonLEFTDOWN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLEFTDOWN, null);
     this.buttonLEFTDOWN.Location = new System.Drawing.Point(7, 196);
     this.buttonLEFTDOWN.Name = "buttonLEFTDOWN";
     this.buttonLEFTDOWN.Size = new System.Drawing.Size(55, 28);
     this.buttonLEFTDOWN.TabIndex = 15;
     this.buttonLEFTDOWN.Tag = "34";
     this.buttonLEFTDOWN.Text = "左下";
     this.buttonLEFTDOWN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLEFTDOWN, null);
     this.buttonLEFTDOWN.Click += new System.EventHandler(this.buttonLEFTDOWN_Click);
     //
     // buttonRIGHTUP
     //
     this.buttonRIGHTUP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonRIGHTUP, null);
     this.buttonRIGHTUP.Location = new System.Drawing.Point(68, 156);
     this.buttonRIGHTUP.Name = "buttonRIGHTUP";
     this.buttonRIGHTUP.Size = new System.Drawing.Size(55, 28);
     this.buttonRIGHTUP.TabIndex = 14;
     this.buttonRIGHTUP.Tag = "33";
     this.buttonRIGHTUP.Text = "右上";
     this.buttonRIGHTUP.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonRIGHTUP, null);
     this.buttonRIGHTUP.Click += new System.EventHandler(this.buttonRIGHTUP_Click);
     //
     // buttonLEFTUP
     //
     this.buttonLEFTUP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLEFTUP, null);
     this.buttonLEFTUP.Location = new System.Drawing.Point(7, 156);
     this.buttonLEFTUP.Name = "buttonLEFTUP";
     this.buttonLEFTUP.Size = new System.Drawing.Size(55, 28);
     this.buttonLEFTUP.TabIndex = 13;
     this.buttonLEFTUP.Tag = "32";
     this.buttonLEFTUP.Text = "左上";
     this.buttonLEFTUP.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLEFTUP, null);
     this.buttonLEFTUP.Click += new System.EventHandler(this.buttonLEFTUP_Click);
     //
     // button15
     //
     this.button15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button15, null);
     this.button15.Location = new System.Drawing.Point(68, 326);
     this.button15.Name = "button15";
     this.button15.Size = new System.Drawing.Size(55, 28);
     this.button15.TabIndex = 12;
     this.button15.Tag = "9";
     this.button15.Text = "光圈-";
     this.button15.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button15, null);
     //
     // button14
     //
     this.button14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button14, null);
     this.button14.Location = new System.Drawing.Point(7, 326);
     this.button14.Name = "button14";
     this.button14.Size = new System.Drawing.Size(55, 28);
     this.button14.TabIndex = 11;
     this.button14.Tag = "8";
     this.button14.Text = "光圈+";
     this.button14.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button14, null);
     //
     // buttonRIGHT
     //
     this.buttonRIGHT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonRIGHT, null);
     this.buttonRIGHT.Location = new System.Drawing.Point(69, 67);
     this.buttonRIGHT.Name = "buttonRIGHT";
     this.buttonRIGHT.Size = new System.Drawing.Size(55, 28);
     this.buttonRIGHT.TabIndex = 10;
     this.buttonRIGHT.Tag = "3";
     this.buttonRIGHT.Text = "右";
     this.buttonRIGHT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonRIGHT, null);
     this.buttonRIGHT.Click += new System.EventHandler(this.buttonRIGHT_Click);
     //
     // buttonLEFT
     //
     this.buttonLEFT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLEFT, null);
     this.buttonLEFT.Location = new System.Drawing.Point(7, 66);
     this.buttonLEFT.Name = "buttonLEFT";
     this.buttonLEFT.Size = new System.Drawing.Size(55, 28);
     this.buttonLEFT.TabIndex = 9;
     this.buttonLEFT.Tag = "2";
     this.buttonLEFT.Text = "左";
     this.buttonLEFT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLEFT, null);
     this.buttonLEFT.Click += new System.EventHandler(this.buttonLEFT_Click);
     //
     // buttonDOWN
     //
     this.buttonDOWN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonDOWN, null);
     this.buttonDOWN.Location = new System.Drawing.Point(37, 105);
     this.buttonDOWN.Name = "buttonDOWN";
     this.buttonDOWN.Size = new System.Drawing.Size(55, 28);
     this.buttonDOWN.TabIndex = 8;
     this.buttonDOWN.Tag = "1";
     this.buttonDOWN.Text = "下";
     this.buttonDOWN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonDOWN, null);
     this.buttonDOWN.Click += new System.EventHandler(this.buttonDOWN_Click);
     //
     // buttonUP
     //
     this.buttonUP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonUP, null);
     this.buttonUP.Location = new System.Drawing.Point(37, 28);
     this.buttonUP.Name = "buttonUP";
     this.buttonUP.Size = new System.Drawing.Size(55, 28);
     this.buttonUP.TabIndex = 7;
     this.buttonUP.Tag = "0";
     this.buttonUP.Text = "上";
     this.buttonUP.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonUP, null);
     this.buttonUP.Click += new System.EventHandler(this.buttonUP_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     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(1007, 746);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 28);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1007, 718);
     this.panel3.TabIndex = 1;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(412, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(595, 718);
     this.panel4.TabIndex = 1;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.panel7);
     this.panel5.Controls.Add(this.ultraGroupBox2);
     this.panel5.Controls.Add(this.ultraExpandableGroupBox1);
     this.coreBind.SetDatabasecommand(this.panel5, null);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(595, 718);
     this.panel5.TabIndex = 0;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // panel7
     //
     this.panel7.Controls.Add(this.ultraGroupBox4);
     this.panel7.Controls.Add(this.ultraExpandableGroupBox2);
     this.coreBind.SetDatabasecommand(this.panel7, null);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(0, 138);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(595, 556);
     this.panel7.TabIndex = 1;
     this.coreBind.SetVerification(this.panel7, null);
     //
     // ultraGroupBox4
     //
     this.ultraGroupBox4.Controls.Add(this.button4);
     this.ultraGroupBox4.Controls.Add(this.button3);
     this.ultraGroupBox4.Controls.Add(this.button2);
     this.ultraGroupBox4.Controls.Add(this.button1);
     this.ultraGroupBox4.Controls.Add(this.weighEditorControl1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox4, null);
     this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox4.Name = "ultraGroupBox4";
     this.ultraGroupBox4.Size = new System.Drawing.Size(567, 556);
     this.ultraGroupBox4.TabIndex = 1;
     this.ultraGroupBox4.Text = "计量实时信息";
     this.coreBind.SetVerification(this.ultraGroupBox4, null);
     this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button4, null);
     this.button4.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold);
     this.button4.Location = new System.Drawing.Point(508, 260);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(69, 30);
     this.button4.TabIndex = 9;
     this.button4.Text = "补 写";
     this.button4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button4, null);
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button3, null);
     this.button3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold);
     this.button3.Location = new System.Drawing.Point(589, 344);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(69, 30);
     this.button3.TabIndex = 7;
     this.button3.Text = "打 印";
     this.button3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button3, null);
     this.button3.Visible = false;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button2
     //
     this.coreBind.SetDatabasecommand(this.button2, null);
     this.button2.Font = new System.Drawing.Font("宋体", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button2.Location = new System.Drawing.Point(589, 260);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(88, 30);
     this.button2.TabIndex = 2;
     this.button2.Text = "button2";
     this.button2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.button2, null);
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button1, null);
     this.button1.Enabled = false;
     this.button1.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold);
     this.button1.Location = new System.Drawing.Point(508, 344);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(69, 30);
     this.button1.TabIndex = 6;
     this.button1.Text = "保 存";
     this.button1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button1, null);
     this.button1.Click += new System.EventHandler(this.button1_Click);
     this.button1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.button1_KeyPress);
     //
     // weighEditorControl1
     //
     this.weighEditorControl1.BackColor = System.Drawing.Color.Transparent;
     this.weighEditorControl1.BillNo = "";
     this.weighEditorControl1.CardDedution = "";
     this.weighEditorControl1.CardNo = "";
     this.weighEditorControl1.CardWeightNo = "";
     this.weighEditorControl1.CarNo = "";
     this.weighEditorControl1.Cost = 0;
     this.coreBind.SetDatabasecommand(this.weighEditorControl1, null);
     this.weighEditorControl1.Deduction = 0;
     this.weighEditorControl1.DischargeDepart = "";
     this.weighEditorControl1.DischargeFlag = "";
     this.weighEditorControl1.DischargePlace = "";
     this.weighEditorControl1.Discharger = "";
     this.weighEditorControl1.DischargeTime = "";
     this.weighEditorControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.weighEditorControl1.Flow = "";
     this.weighEditorControl1.GrossWeight = 0;
     this.weighEditorControl1.IFYBFirst = false;
     this.weighEditorControl1.IsMultiMaterials = false;
     this.weighEditorControl1.IsNeedDischarge = false;
     this.weighEditorControl1.IsTermTare = false;
     this.weighEditorControl1.Location = new System.Drawing.Point(3, 18);
     this.weighEditorControl1.Material = "";
     this.weighEditorControl1.MaterialName = "";
     this.weighEditorControl1.Name = "weighEditorControl1";
     this.weighEditorControl1.NetWeight = 0;
     this.weighEditorControl1.OrderNo = "";
     this.weighEditorControl1.OrderSeq = "";
     this.weighEditorControl1.PointCode = "";
     this.weighEditorControl1.PointName = "";
     this.weighEditorControl1.QuickPlan = "";
     this.weighEditorControl1.ReceiveCompany = "";
     this.weighEditorControl1.ReceiveCompanyName = "";
     this.weighEditorControl1.Remark = "";
     this.weighEditorControl1.SendCompany = "";
     this.weighEditorControl1.SendCompanyName = "";
     this.weighEditorControl1.SenderGrosssWeight = 0;
     this.weighEditorControl1.SenderTareWeight = 0;
     this.weighEditorControl1.SenderWeight = 0;
     this.weighEditorControl1.SendPlace = "";
     this.weighEditorControl1.Size = new System.Drawing.Size(561, 535);
     this.weighEditorControl1.StoveCount1 = 0;
     this.weighEditorControl1.StoveCount2 = 0;
     this.weighEditorControl1.StoveCount3 = 0;
     this.weighEditorControl1.StoveNo1 = "";
     this.weighEditorControl1.StoveNo2 = "";
     this.weighEditorControl1.StoveNo3 = "";
     this.weighEditorControl1.TabIndex = 0;
     this.weighEditorControl1.TareWeight = 0;
     this.weighEditorControl1.TermTareType = YGJZJL.Car.TermTares.Hours24;
     this.weighEditorControl1.TransCompany = "";
     this.weighEditorControl1.TransCompanyName = "";
     this.weighEditorControl1.TransPlanNo = "";
     this.coreBind.SetVerification(this.weighEditorControl1, null);
     this.weighEditorControl1.Weigher = "";
     this.weighEditorControl1.WeighGroup = "";
     this.weighEditorControl1.WeighShift = "";
     this.weighEditorControl1.WeighStatus = "";
     this.weighEditorControl1.WeightType = -1;
     //
     // ultraExpandableGroupBox2
     //
     this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel3);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox2, null);
     this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Right;
     this.ultraExpandableGroupBox2.Expanded = false;
     this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(200, 556);
     this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftInsideBorder;
     this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(567, 0);
     this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
     this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(28, 556);
     this.ultraExpandableGroupBox2.TabIndex = 2;
     this.ultraExpandableGroupBox2.Text = "计量点信息1";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox2, null);
     this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel3
     //
     this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraGrid2);
     this.ultraExpandableGroupBoxPanel3.Controls.Add(this.panel8);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel3, null);
     this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
     this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(177, 550);
     this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel3, null);
     this.ultraExpandableGroupBoxPanel3.Visible = false;
     //
     // ultraGrid2
     //
     this.ultraGrid2.ContextMenuStrip = this.contextMenuStrip1;
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "计量点基础表";
     this.ultraGrid2.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid2.DisplayLayout.Appearance = appearance1;
     ultraGridColumn9.Header.VisiblePosition = 1;
     ultraGridColumn9.Hidden = true;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn10.Header.VisiblePosition = 2;
     ultraGridColumn10.Width = 118;
     ultraGridColumn11.Header.VisiblePosition = 0;
     ultraGridColumn11.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn11.Width = 45;
     ultraGridColumn12.Header.VisiblePosition = 3;
     ultraGridColumn12.Hidden = true;
     ultraGridColumn13.Header.VisiblePosition = 4;
     ultraGridColumn13.Hidden = true;
     ultraGridColumn14.Header.VisiblePosition = 5;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn15.Header.VisiblePosition = 6;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn16.Header.VisiblePosition = 7;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn17.Header.VisiblePosition = 8;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn18.Header.VisiblePosition = 9;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn19.Header.VisiblePosition = 10;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn20.Header.VisiblePosition = 11;
     ultraGridColumn20.Hidden = true;
     ultraGridColumn21.Header.VisiblePosition = 12;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn22.Header.VisiblePosition = 13;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn23.Header.VisiblePosition = 14;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn24.Header.VisiblePosition = 15;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn25.Header.VisiblePosition = 16;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn26.Header.VisiblePosition = 17;
     ultraGridColumn26.Hidden = true;
     ultraGridColumn27.Header.VisiblePosition = 18;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn28.Header.VisiblePosition = 19;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn29.Header.VisiblePosition = 20;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn30.Header.VisiblePosition = 21;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn31.Header.VisiblePosition = 22;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn32.Header.VisiblePosition = 23;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn33.Header.VisiblePosition = 24;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn34.Header.VisiblePosition = 25;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn35.Header.VisiblePosition = 26;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn36.Header.VisiblePosition = 27;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn37.Header.VisiblePosition = 28;
     ultraGridColumn37.Hidden = true;
     ultraGridColumn38.Header.VisiblePosition = 29;
     ultraGridColumn38.Hidden = true;
     ultraGridColumn39.Header.VisiblePosition = 30;
     ultraGridColumn39.Hidden = true;
     ultraGridColumn40.Header.VisiblePosition = 31;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn41.Header.VisiblePosition = 32;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn42.Header.VisiblePosition = 33;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn43.Header.VisiblePosition = 34;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn44.Header.VisiblePosition = 35;
     ultraGridColumn44.Hidden = true;
     ultraGridBand3.Columns.AddRange(new object[] {
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44});
     ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
     appearance24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     appearance24.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.ultraGrid2.DisplayLayout.CaptionAppearance = appearance24;
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 10;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance2;
     appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance3.BackColor2 = System.Drawing.Color.White;
     appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance3.FontData.SizeInPoints = 11F;
     appearance3.FontData.UnderlineAsString = "False";
     appearance3.ForeColor = System.Drawing.Color.Black;
     appearance3.TextHAlignAsString = "Center";
     appearance3.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance3;
     appearance4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance4;
     appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance5.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance5;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance6.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance6;
     this.ultraGrid2.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(177, 495);
     this.ultraGrid2.TabIndex = 4;
     this.ultraGrid2.Text = "计量点信息";
     this.coreBind.SetVerification(this.ultraGrid2, null);
     this.ultraGrid2.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid2_DoubleClickRow);
     //
     // contextMenuStrip1
     //
     this.coreBind.SetDatabasecommand(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1,
     this.toolStripMenuItem2,
     this.toolStripMenuItem3,
     this.toolStripMenuItem4,
     this.toolStripMenuItem5});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(145, 114);
     this.coreBind.SetVerification(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opened += new System.EventHandler(this.contextMenuStrip1_Opened);
     this.contextMenuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.contextMenuStrip1_ItemClicked);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem1.Text = "接管";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem2.Text = "取消";
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem3.Text = "全选(已接管)";
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem4.Text = "全选(未接管)";
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem5.Text = "取消选择";
     //
     // panel8
     //
     this.panel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.panel8.Controls.Add(this.btnRefresh);
     this.panel8.Controls.Add(this.btnJG);
     this.coreBind.SetDatabasecommand(this.panel8, null);
     this.panel8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel8.Location = new System.Drawing.Point(0, 495);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(177, 55);
     this.panel8.TabIndex = 5;
     this.coreBind.SetVerification(this.panel8, null);
     //
     // btnRefresh
     //
     this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnRefresh, null);
     this.btnRefresh.Location = new System.Drawing.Point(97, 14);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(69, 28);
     this.btnRefresh.TabIndex = 6;
     this.btnRefresh.Text = "刷 新";
     this.btnRefresh.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnRefresh, null);
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnJG
     //
     this.btnJG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnJG, null);
     this.btnJG.Location = new System.Drawing.Point(14, 14);
     this.btnJG.Name = "btnJG";
     this.btnJG.Size = new System.Drawing.Size(69, 28);
     this.btnJG.TabIndex = 5;
     this.btnJG.Text = "接 管";
     this.btnJG.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnJG, null);
     this.btnJG.Click += new System.EventHandler(this.btnJG_Click);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.rtuControl1);
     this.ultraGroupBox2.Controls.Add(this.meterControl1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(595, 138);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "仪表参数";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // rtuControl1
     //
     this.rtuControl1.BackColor = System.Drawing.Color.Transparent;
     this.rtuControl1.BackInfreredRadio = YGJZJL.Car.InfraredRadioStatus.Connected;
     this.coreBind.SetDatabasecommand(this.rtuControl1, null);
     this.rtuControl1.FrontInfraredRadio = YGJZJL.Car.InfraredRadioStatus.Connected;
     this.rtuControl1.Light = YGJZJL.Car.LightStatus.Closed;
     this.rtuControl1.Location = new System.Drawing.Point(436, 27);
     this.rtuControl1.Name = "rtuControl1";
     this.rtuControl1.Ring = YGJZJL.Car.RingStatus.Stop;
     this.rtuControl1.ShowRestartControl = true;
     this.rtuControl1.Size = new System.Drawing.Size(389, 96);
     this.rtuControl1.TabIndex = 1;
     this.rtuControl1.TrafficLight = YGJZJL.Car.TrafficLightStatus.Green;
     this.coreBind.SetVerification(this.rtuControl1, null);
     //
     // meterControl1
     //
     this.meterControl1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.meterControl1, null);
     this.meterControl1.Location = new System.Drawing.Point(24, 38);
     this.meterControl1.Name = "meterControl1";
     this.meterControl1.Size = new System.Drawing.Size(383, 72);
     this.meterControl1.Status = YGJZJL.Car.MeterStatus.UnConnect;
     this.meterControl1.TabIndex = 0;
     this.coreBind.SetVerification(this.meterControl1, null);
     this.meterControl1.Weight = 0;
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel4);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.Expanded = false;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(595, 240);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 694);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(595, 24);
     this.ultraExpandableGroupBox1.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel4
     //
     this.ultraExpandableGroupBoxPanel4.Controls.Add(this.panel14);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel4, null);
     this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
     this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(589, 219);
     this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel4, null);
     this.ultraExpandableGroupBoxPanel4.Visible = false;
     //
     // panel14
     //
     this.panel14.Controls.Add(this.ultraTabControl1);
     this.coreBind.SetDatabasecommand(this.panel14, null);
     this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel14.Location = new System.Drawing.Point(0, 0);
     this.panel14.Name = "panel14";
     this.panel14.Size = new System.Drawing.Size(589, 219);
     this.panel14.TabIndex = 0;
     this.coreBind.SetVerification(this.panel14, null);
     //
     // ultraTabControl1
     //
     this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
     this.coreBind.SetDatabasecommand(this.ultraTabControl1, null);
     this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.ultraTabControl1.Name = "ultraTabControl1";
     this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
     this.ultraTabControl1.Size = new System.Drawing.Size(589, 219);
     this.ultraTabControl1.Style = Infragistics.Win.UltraWinTabControl.UltraTabControlStyle.Flat;
     this.ultraTabControl1.TabIndex = 1;
     ultraTab2.TabPage = this.ultraTabPageControl3;
     ultraTab2.Text = "计量点图像";
     ultraTab3.TabPage = this.ultraTabPageControl2;
     ultraTab3.Text = "重量曲线图";
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text = "计量称重信息";
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab2,
     ultraTab3,
     ultraTab1});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     //
     // ultraTabSharedControlsPage1
     //
     this.coreBind.SetDatabasecommand(this.ultraTabSharedControlsPage1, null);
     this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
     this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(587, 198);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.panel9);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(412, 718);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "视频监控区域";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // panel9
     //
     this.panel9.AutoScroll = true;
     this.panel9.BackColor = System.Drawing.SystemColors.Control;
     this.panel9.Controls.Add(this.panel13);
     this.panel9.Controls.Add(this.panel12);
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Controls.Add(this.panel10);
     this.coreBind.SetDatabasecommand(this.panel9, null);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(3, 18);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(406, 697);
     this.panel9.TabIndex = 0;
     this.coreBind.SetVerification(this.panel9, null);
     //
     // panel13
     //
     this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel13.Controls.Add(this.videoChannel4);
     this.coreBind.SetDatabasecommand(this.panel13, null);
     this.panel13.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel13.Location = new System.Drawing.Point(0, 720);
     this.panel13.Name = "panel13";
     this.panel13.Size = new System.Drawing.Size(389, 240);
     this.panel13.TabIndex = 3;
     this.coreBind.SetVerification(this.panel13, null);
     //
     // videoChannel4
     //
     this.videoChannel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel4, null);
     this.videoChannel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel4.Location = new System.Drawing.Point(0, 0);
     this.videoChannel4.Name = "videoChannel4";
     this.videoChannel4.Size = new System.Drawing.Size(387, 238);
     this.videoChannel4.TabIndex = 1;
     this.videoChannel4.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel4, null);
     this.videoChannel4.DoubleClick += new System.EventHandler(this.videoChannel4_DoubleClick);
     //
     // panel12
     //
     this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel12.Controls.Add(this.videoChannel3);
     this.coreBind.SetDatabasecommand(this.panel12, null);
     this.panel12.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel12.Location = new System.Drawing.Point(0, 480);
     this.panel12.Name = "panel12";
     this.panel12.Size = new System.Drawing.Size(389, 240);
     this.panel12.TabIndex = 2;
     this.coreBind.SetVerification(this.panel12, null);
     //
     // videoChannel3
     //
     this.videoChannel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel3, null);
     this.videoChannel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel3.Location = new System.Drawing.Point(0, 0);
     this.videoChannel3.Name = "videoChannel3";
     this.videoChannel3.Size = new System.Drawing.Size(387, 238);
     this.videoChannel3.TabIndex = 1;
     this.videoChannel3.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel3, null);
     this.videoChannel3.DoubleClick += new System.EventHandler(this.videoChannel3_DoubleClick);
     //
     // panel11
     //
     this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel11.Controls.Add(this.videoChannel2);
     this.coreBind.SetDatabasecommand(this.panel11, null);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel11.Location = new System.Drawing.Point(0, 240);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(389, 240);
     this.panel11.TabIndex = 1;
     this.coreBind.SetVerification(this.panel11, null);
     //
     // videoChannel2
     //
     this.videoChannel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel2, null);
     this.videoChannel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel2.Location = new System.Drawing.Point(0, 0);
     this.videoChannel2.Name = "videoChannel2";
     this.videoChannel2.Size = new System.Drawing.Size(387, 238);
     this.videoChannel2.TabIndex = 1;
     this.videoChannel2.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel2, null);
     this.videoChannel2.DoubleClick += new System.EventHandler(this.videoChannel2_DoubleClick);
     //
     // panel10
     //
     this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel10.Controls.Add(this.videoChannel1);
     this.coreBind.SetDatabasecommand(this.panel10, null);
     this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel10.Location = new System.Drawing.Point(0, 0);
     this.panel10.Name = "panel10";
     this.panel10.Size = new System.Drawing.Size(389, 240);
     this.panel10.TabIndex = 0;
     this.coreBind.SetVerification(this.panel10, null);
     //
     // videoChannel1
     //
     this.videoChannel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel1, null);
     this.videoChannel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel1.Location = new System.Drawing.Point(0, 0);
     this.videoChannel1.Name = "videoChannel1";
     this.videoChannel1.Size = new System.Drawing.Size(387, 238);
     this.videoChannel1.TabIndex = 0;
     this.videoChannel1.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel1, null);
     this.videoChannel1.DoubleClick += new System.EventHandler(this.videoChannel1_DoubleClick);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.numericUpDown1);
     this.panel2.Controls.Add(this.txtZZ);
     this.panel2.Controls.Add(this.ultraCheckEditor1);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Left);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Right);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Top);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     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(1007, 28);
     this.panel2.TabIndex = 0;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.coreBind.SetDatabasecommand(this.numericUpDown1, null);
     this.numericUpDown1.Location = new System.Drawing.Point(589, 3);
     this.numericUpDown1.Maximum = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDown1.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     -2147483648});
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.ReadOnly = true;
     this.numericUpDown1.Size = new System.Drawing.Size(40, 21);
     this.numericUpDown1.TabIndex = 11;
     this.numericUpDown1.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.coreBind.SetVerification(this.numericUpDown1, null);
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged_1);
     //
     // txtZZ
     //
     this.coreBind.SetDatabasecommand(this.txtZZ, null);
     this.txtZZ.Location = new System.Drawing.Point(141, 3);
     this.txtZZ.Name = "txtZZ";
     this.txtZZ.ReadOnly = true;
     this.txtZZ.Size = new System.Drawing.Size(51, 21);
     this.txtZZ.TabIndex = 1;
     this.coreBind.SetVerification(this.txtZZ, null);
     //
     // ultraCheckEditor1
     //
     this.ultraCheckEditor1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.ultraCheckEditor1.BackColorInternal = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.coreBind.SetDatabasecommand(this.ultraCheckEditor1, null);
     this.ultraCheckEditor1.Location = new System.Drawing.Point(514, 4);
     this.ultraCheckEditor1.Name = "ultraCheckEditor1";
     this.ultraCheckEditor1.Size = new System.Drawing.Size(72, 20);
     this.ultraCheckEditor1.TabIndex = 10;
     this.ultraCheckEditor1.Text = "自动打印";
     this.coreBind.SetVerification(this.ultraCheckEditor1, null);
     //
     // _panel2_Toolbars_Dock_Area_Left
     //
     this._panel2_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Left, null);
     this._panel2_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel2_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
     this._panel2_Toolbars_Dock_Area_Left.Name = "_panel2_Toolbars_Dock_Area_Left";
     this._panel2_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel2_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel2;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(392, 382);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(486, 44);
     controlContainerTool3.ControlName = "txtZZ";
     controlContainerTool3.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.InstanceProps.Width = 122;
     buttonTool19.InstanceProps.IsFirstInGroup = true;
     buttonTool20.InstanceProps.IsFirstInGroup = true;
     controlContainerTool1.ControlName = "ultraCheckEditor1";
     controlContainerTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool4.ControlName = "numericUpDown1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool8,
     controlContainerTool3,
     buttonTool17,
     buttonTool19,
     buttonTool20,
     controlContainerTool1,
     controlContainerTool4,
     buttonTool21,
     buttonTool22});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool23.SharedPropsInternal.Caption = "打开对讲";
     buttonTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool6.ControlName = "txtZZ";
     controlContainerTool6.SharedPropsInternal.Caption = "剩余纸张数";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.SharedPropsInternal.Width = 122;
     buttonTool24.SharedPropsInternal.Caption = "换纸";
     buttonTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool26.SharedPropsInternal.Caption = "切换视频";
     buttonTool26.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool27.SharedPropsInternal.Caption = "查看/关闭一次计量图像";
     buttonTool27.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool28.SharedPropsInternal.Caption = "磅单打印";
     buttonTool28.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool29.SharedPropsInternal.Caption = "校秤";
     buttonTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool30.SharedPropsInternal.Caption = "长期预报查询";
     buttonTool30.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Caption = "ControlContainerTool1";
     controlContainerTool5.ControlName = "ultraCheckEditor1";
     controlContainerTool5.SharedPropsInternal.Caption = "ControlContainerTool2";
     controlContainerTool7.ControlName = "numericUpDown1";
     controlContainerTool7.SharedPropsInternal.Caption = "ControlContainerTool3";
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool23,
     controlContainerTool6,
     buttonTool24,
     buttonTool26,
     buttonTool27,
     buttonTool28,
     buttonTool29,
     buttonTool30,
     controlContainerTool2,
     controlContainerTool5,
     controlContainerTool7});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _panel2_Toolbars_Dock_Area_Right
     //
     this._panel2_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Right, null);
     this._panel2_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel2_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1007, 28);
     this._panel2_Toolbars_Dock_Area_Right.Name = "_panel2_Toolbars_Dock_Area_Right";
     this._panel2_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel2_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Right, null);
     //
     // _panel2_Toolbars_Dock_Area_Top
     //
     this._panel2_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Top, null);
     this._panel2_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel2_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel2_Toolbars_Dock_Area_Top.Name = "_panel2_Toolbars_Dock_Area_Top";
     this._panel2_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1007, 28);
     this._panel2_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Top, null);
     //
     // _panel2_Toolbars_Dock_Area_Bottom
     //
     this._panel2_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Bottom, null);
     this._panel2_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel2_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 28);
     this._panel2_Toolbars_Dock_Area_Bottom.Name = "_panel2_Toolbars_Dock_Area_Bottom";
     this._panel2_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1007, 0);
     this._panel2_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Bottom, null);
     //
     // bigVideoChannel
     //
     this.coreBind.SetDatabasecommand(this.bigVideoChannel, null);
     this.bigVideoChannel.Location = new System.Drawing.Point(0, 18);
     this.bigVideoChannel.Name = "bigVideoChannel";
     this.bigVideoChannel.Size = new System.Drawing.Size(20, 21);
     this.bigVideoChannel.TabIndex = 2;
     this.bigVideoChannel.TabStop = false;
     this.coreBind.SetVerification(this.bigVideoChannel, null);
     this.bigVideoChannel.Visible = false;
     this.bigVideoChannel.DoubleClick += new System.EventHandler(this.bigVideoChannel_DoubleClick);
     this.bigVideoChannel.MouseLeave += new System.EventHandler(this.bigVideoChannel_MouseLeave);
     this.bigVideoChannel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.bigVideoChannel_MouseMove);
     this.bigVideoChannel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.bigVideoChannel_MouseDown);
     this.bigVideoChannel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.bigVideoChannel_MouseUp);
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel6);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(877, 163);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     //
     // panel6
     //
     this.coreBind.SetDatabasecommand(this.panel6, null);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(877, 163);
     this.panel6.TabIndex = 0;
     this.coreBind.SetVerification(this.panel6, null);
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(200, 100);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Visible = false;
     //
     // ultraDockManager1
     //
     this.ultraDockManager1.CompressUnpinnedTabs = false;
     dockAreaPane1.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.TabGroup;
     dockAreaPane1.DockedBefore = new System.Guid("fab36dca-93df-47ae-a661-844c242a30e6");
     dockAreaPane1.FloatingLocation = new System.Drawing.Point(707, 475);
     dockAreaPane1.Size = new System.Drawing.Size(100, 100);
     dockAreaPane2.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.TabGroup;
     dockAreaPane2.DockedBefore = new System.Guid("d4bf97a0-4113-40bb-bf58-1ccec85fb19f");
     dockAreaPane2.FloatingLocation = new System.Drawing.Point(707, 475);
     dockableControlPane1.Control = this.panelYYBF;
     dockableControlPane1.FlyoutSize = new System.Drawing.Size(133, -1);
     dockableControlPane1.OriginalControlBounds = new System.Drawing.Rectangle(271, 38, 136, 579);
     dockableControlPane1.Pinned = false;
     dockableControlPane1.Size = new System.Drawing.Size(100, 100);
     dockableControlPane1.Text = "语音播报";
     dockAreaPane2.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
     dockableControlPane1});
     dockAreaPane2.Size = new System.Drawing.Size(100, 746);
     dockAreaPane3.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.VerticalSplit;
     dockAreaPane3.DockedBefore = new System.Guid("d2d5fb92-0acb-49d3-8207-82e5bb965657");
     dockAreaPane3.FloatingLocation = new System.Drawing.Point(762, 483);
     dockAreaPane3.Size = new System.Drawing.Size(100, 100);
     dockAreaPane4.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.VerticalSplit;
     dockAreaPane4.FloatingLocation = new System.Drawing.Point(762, 483);
     dockableControlPane2.Control = this.panelSPKZ;
     dockableControlPane2.FlyoutSize = new System.Drawing.Size(132, -1);
     dockableControlPane2.OriginalControlBounds = new System.Drawing.Rectangle(161, 33, 131, 579);
     dockableControlPane2.Pinned = false;
     dockableControlPane2.Size = new System.Drawing.Size(100, 100);
     dockableControlPane2.Text = "视频控制";
     dockAreaPane4.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
     dockableControlPane2});
     dockAreaPane4.Size = new System.Drawing.Size(100, 746);
     this.ultraDockManager1.DockAreas.AddRange(new Infragistics.Win.UltraWinDock.DockAreaPane[] {
     dockAreaPane1,
     dockAreaPane2,
     dockAreaPane3,
     dockAreaPane4});
     this.ultraDockManager1.HostControl = this;
     this.ultraDockManager1.WindowStyle = Infragistics.Win.UltraWinDock.WindowStyle.Office2003;
     //
     // _FrmBaseUnpinnedTabAreaLeft
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaLeft, null);
     this._FrmBaseUnpinnedTabAreaLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this._FrmBaseUnpinnedTabAreaLeft.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaLeft.Location = new System.Drawing.Point(0, 0);
     this._FrmBaseUnpinnedTabAreaLeft.Name = "_FrmBaseUnpinnedTabAreaLeft";
     this._FrmBaseUnpinnedTabAreaLeft.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaLeft.Size = new System.Drawing.Size(0, 746);
     this._FrmBaseUnpinnedTabAreaLeft.TabIndex = 3;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaLeft, null);
     //
     // _FrmBaseUnpinnedTabAreaRight
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaRight, null);
     this._FrmBaseUnpinnedTabAreaRight.Dock = System.Windows.Forms.DockStyle.Right;
     this._FrmBaseUnpinnedTabAreaRight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaRight.Location = new System.Drawing.Point(1007, 0);
     this._FrmBaseUnpinnedTabAreaRight.Name = "_FrmBaseUnpinnedTabAreaRight";
     this._FrmBaseUnpinnedTabAreaRight.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaRight.Size = new System.Drawing.Size(21, 746);
     this._FrmBaseUnpinnedTabAreaRight.TabIndex = 4;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaRight, null);
     //
     // _FrmBaseUnpinnedTabAreaTop
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaTop, null);
     this._FrmBaseUnpinnedTabAreaTop.Dock = System.Windows.Forms.DockStyle.Top;
     this._FrmBaseUnpinnedTabAreaTop.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaTop.Location = new System.Drawing.Point(0, 0);
     this._FrmBaseUnpinnedTabAreaTop.Name = "_FrmBaseUnpinnedTabAreaTop";
     this._FrmBaseUnpinnedTabAreaTop.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaTop.Size = new System.Drawing.Size(1007, 0);
     this._FrmBaseUnpinnedTabAreaTop.TabIndex = 5;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaTop, null);
     //
     // _FrmBaseUnpinnedTabAreaBottom
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaBottom, null);
     this._FrmBaseUnpinnedTabAreaBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this._FrmBaseUnpinnedTabAreaBottom.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaBottom.Location = new System.Drawing.Point(0, 746);
     this._FrmBaseUnpinnedTabAreaBottom.Name = "_FrmBaseUnpinnedTabAreaBottom";
     this._FrmBaseUnpinnedTabAreaBottom.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaBottom.Size = new System.Drawing.Size(1007, 0);
     this._FrmBaseUnpinnedTabAreaBottom.TabIndex = 6;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaBottom, null);
     //
     // _FrmBaseAutoHideControl
     //
     this._FrmBaseAutoHideControl.Controls.Add(this.dockableWindow1);
     this._FrmBaseAutoHideControl.Controls.Add(this.dockableWindow2);
     this.coreBind.SetDatabasecommand(this._FrmBaseAutoHideControl, null);
     this._FrmBaseAutoHideControl.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseAutoHideControl.Location = new System.Drawing.Point(989, 0);
     this._FrmBaseAutoHideControl.Name = "_FrmBaseAutoHideControl";
     this._FrmBaseAutoHideControl.Owner = this.ultraDockManager1;
     this._FrmBaseAutoHideControl.Size = new System.Drawing.Size(18, 746);
     this._FrmBaseAutoHideControl.TabIndex = 7;
     this.coreBind.SetVerification(this._FrmBaseAutoHideControl, null);
     //
     // dockableWindow1
     //
     this.dockableWindow1.Controls.Add(this.panelYYBF);
     this.coreBind.SetDatabasecommand(this.dockableWindow1, null);
     this.dockableWindow1.Location = new System.Drawing.Point(5, 0);
     this.dockableWindow1.Name = "dockableWindow1";
     this.dockableWindow1.Owner = this.ultraDockManager1;
     this.dockableWindow1.Size = new System.Drawing.Size(133, 746);
     this.dockableWindow1.TabIndex = 10;
     this.coreBind.SetVerification(this.dockableWindow1, null);
     //
     // dockableWindow2
     //
     this.dockableWindow2.Controls.Add(this.panelSPKZ);
     this.coreBind.SetDatabasecommand(this.dockableWindow2, null);
     this.dockableWindow2.Location = new System.Drawing.Point(-10000, 0);
     this.dockableWindow2.Name = "dockableWindow2";
     this.dockableWindow2.Owner = this.ultraDockManager1;
     this.dockableWindow2.Size = new System.Drawing.Size(132, 746);
     this.dockableWindow2.TabIndex = 11;
     this.coreBind.SetVerification(this.dockableWindow2, null);
     //
     // windowDockingArea3
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea3, null);
     this.windowDockingArea3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.windowDockingArea3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea3.Location = new System.Drawing.Point(4, 4);
     this.windowDockingArea3.Name = "windowDockingArea3";
     this.windowDockingArea3.Owner = this.ultraDockManager1;
     this.windowDockingArea3.Size = new System.Drawing.Size(100, 100);
     this.windowDockingArea3.TabIndex = 0;
     this.coreBind.SetVerification(this.windowDockingArea3, null);
     //
     // windowDockingArea4
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea4, null);
     this.windowDockingArea4.Dock = System.Windows.Forms.DockStyle.Right;
     this.windowDockingArea4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea4.Location = new System.Drawing.Point(1144, 0);
     this.windowDockingArea4.Name = "windowDockingArea4";
     this.windowDockingArea4.Owner = this.ultraDockManager1;
     this.windowDockingArea4.Size = new System.Drawing.Size(105, 746);
     this.windowDockingArea4.TabIndex = 9;
     this.coreBind.SetVerification(this.windowDockingArea4, null);
     //
     // windowDockingArea2
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea2, null);
     this.windowDockingArea2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.windowDockingArea2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea2.Location = new System.Drawing.Point(1165, 0);
     this.windowDockingArea2.Name = "windowDockingArea2";
     this.windowDockingArea2.Owner = this.ultraDockManager1;
     this.windowDockingArea2.Size = new System.Drawing.Size(100, 100);
     this.windowDockingArea2.TabIndex = 8;
     this.coreBind.SetVerification(this.windowDockingArea2, null);
     //
     // windowDockingArea1
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea1, null);
     this.windowDockingArea1.Dock = System.Windows.Forms.DockStyle.Right;
     this.windowDockingArea1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea1.Location = new System.Drawing.Point(4, 4);
     this.windowDockingArea1.Name = "windowDockingArea1";
     this.windowDockingArea1.Owner = this.ultraDockManager1;
     this.windowDockingArea1.Size = new System.Drawing.Size(105, 746);
     this.windowDockingArea1.TabIndex = 0;
     this.coreBind.SetVerification(this.windowDockingArea1, null);
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 60000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // CarWeigh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1028, 746);
     this.Controls.Add(this._FrmBaseAutoHideControl);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bigVideoChannel);
     this.Controls.Add(this.windowDockingArea4);
     this.Controls.Add(this.windowDockingArea1);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaTop);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaBottom);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaLeft);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaRight);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "CarWeigh";
     this.Tag = "CarWeigh";
     this.Text = "CarWeigh";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.CarWeigh_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CarWeigh_FormClosing);
     this.ultraTabPageControl3.ResumeLayout(false);
     this.panelYCSP.ResumeLayout(false);
     this.panel16.ResumeLayout(false);
     this.panel20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel8)).EndInit();
     this.panel15.ResumeLayout(false);
     this.panel19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel7)).EndInit();
     this.panel22.ResumeLayout(false);
     this.panel18.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel6)).EndInit();
     this.panel21.ResumeLayout(false);
     this.panel17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel5)).EndInit();
     this.ultraTabPageControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picHT)).EndInit();
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     this.panelYYBF.ResumeLayout(false);
     this.panel23.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
     this.panelSPKZ.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     this.ultraGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
     this.ultraExpandableGroupBox2.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.panel8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
     this.panel14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     this.panel13.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel4)).EndInit();
     this.panel12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel3)).EndInit();
     this.panel11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel2)).EndInit();
     this.panel10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bigVideoChannel)).EndInit();
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDockManager1)).EndInit();
     this._FrmBaseAutoHideControl.ResumeLayout(false);
     this.dockableWindow1.ResumeLayout(false);
     this.dockableWindow2.ResumeLayout(false);
     this.ResumeLayout(false);
 }