Ejemplo n.º 1
0
 public static Infragistics.Win.UltraWinChart.UltraChart ShowLegend(Infragistics.Win.UltraWinChart.UltraChart UChart, string Location)
 {
     UChart.Legend.Visible        = true;
     UChart.Legend.SpanPercentage = 20;
     UChart.Legend.Location       = (LegendLocation)System.Enum.Parse(typeof(LegendLocation), Location);
     return(UChart);
 }
Ejemplo n.º 2
0
 public static Infragistics.Win.UltraWinChart.UltraChart MinMaxRange(Infragistics.Win.UltraWinChart.UltraChart UChart, double MinRange, double MaxRange)
 {
     UChart.Data.UseMinMax = true;
     UChart.Data.MinValue  = MinRange;
     UChart.Data.MaxValue  = MaxRange;
     return(UChart);
 }
Ejemplo n.º 3
0
            public static Infragistics.Win.UltraWinChart.UltraChart AxisItemFormat(Infragistics.Win.UltraWinChart.UltraChart UChart, string XItemFormatString, string YItemFormatString)
            {
                UChart.Axis.X.Labels.Orientation      = TextOrientation.Horizontal;
                UChart.Axis.X.Labels.ItemFormatString = XItemFormatString;
                UChart.Axis.Y.Labels.ItemFormatString = YItemFormatString;

                return(UChart);
            }
Ejemplo n.º 4
0
            public static Infragistics.Win.UltraWinChart.UltraChart DataPointLabel(Infragistics.Win.UltraWinChart.UltraChart UChart, Boolean Visible, string UChartType, string DataFormat)
            {
                ChartTextAppearance     chartTextAppearance1    = new ChartTextAppearance();
                ColumnChartAppearance   columnChartAppearance1  = new ColumnChartAppearance();
                LineChartAppearance     lineChartAppearance1    = new LineChartAppearance();
                DoughnutChartAppearance doughnuChartAppearance1 = new DoughnutChartAppearance();
                PieChartAppearance      pieChartAppearance1     = new PieChartAppearance();
                BarChartAppearance      barChartAppearance1     = new BarChartAppearance();

                if (Visible == true)
                {
                    chartTextAppearance1.Visible          = true;
                    chartTextAppearance1.ChartTextFont    = new System.Drawing.Font("Arial", 7F);
                    chartTextAppearance1.Column           = -2;
                    chartTextAppearance1.ItemFormatString = DataFormat;
                    chartTextAppearance1.Row = -2;
                }
                else
                {
                    chartTextAppearance1.Visible = false;
                }

                switch ((ChartType)Enum.Parse(typeof(ChartType), UChartType))
                {
                case ChartType.ColumnChart:
                    columnChartAppearance1.ChartText.Add(chartTextAppearance1);
                    UChart.ColumnChart = columnChartAppearance1;
                    break;

                case ChartType.LineChart:
                    lineChartAppearance1.ChartText.Add(chartTextAppearance1);
                    UChart.LineChart = lineChartAppearance1;
                    break;

                case ChartType.DoughnutChart:
                    doughnuChartAppearance1.ChartText.Add(chartTextAppearance1);
                    UChart.DoughnutChart = doughnuChartAppearance1;
                    break;

                case ChartType.PieChart:
                    pieChartAppearance1.ChartText.Add(chartTextAppearance1);
                    UChart.PieChart = pieChartAppearance1;
                    break;

                case ChartType.BarChart:
                    barChartAppearance1.ChartText.Add(chartTextAppearance1);
                    UChart.BarChart = barChartAppearance1;
                    break;
                }

                return(UChart);
            }
Ejemplo n.º 5
0
        /// <summary>
        /// 初始化曲线图表数据源
        /// </summary>
        private void InitultraChartDatasource(Infragistics.Win.UltraWinChart.UltraChart chart)
        {
            DataTable temp    = new DataTable();
            DataRow   curerow = temp.NewRow();

            temp.Rows.Add(curerow);
            DataColumn dc = new DataColumn("ZL", typeof(double));

            temp.Columns.Add(dc);
            temp.AcceptChanges();
            chart.DataSource = temp;
            chart.DataBind();
        }
Ejemplo n.º 6
0
        private void DrawCell(Cell c, int width, int height, int y, Graphics g)
        {
            if (!c.Visible)
            {
                return;
            }
            if (c is Expression)
            {
                string formula = (c as Expression).Formula.FormulaExpression.ToLower();
                if (formula == "page()")
                {
                    int pageindex = _pageindex + 1;//* _pagesinpage + _pageoffsize;
                    formula   = formula.Replace("page()", pageindex.ToString());
                    c.Caption = formula;
                }
                else if (formula == "pages()")
                {
                    int pages = _pages * _pagesinpage;
                    formula   = formula.Replace("pages()", pages.ToString());
                    c.Caption = formula;
                }
                else if (formula == "grouppage()")
                {
                    c.Caption = (_printpage == null? "" : Convert.ToString((_printpage.GroupPageIndex - 1) * _pagesinpage + _pageoffsize));
                }
                else if (formula == "grouppages()")
                {
                    c.Caption = (_printpage == null? "" : Convert.ToString(_printpage.GroupPages * _pagesinpage));
                }
                else if (c.GetStateType() == "PrintExpression")
                {
                    object o = (_printpage == null ? "": _printpage.GetValue(c));
                    if (o != null)
                    {
                        c.Caption = o.ToString();
                    }
                    else
                    {
                        c.Caption = "";
                    }
                }
            }
            else if (c is Chart)
            {
                #region chart
                Chart chart = c as Chart;
                if (chart.bNullChart)
                {
                    try
                    {
                        Infragistics.Win.UltraWinChart.UltraChart mychart = new Infragistics.Win.UltraWinChart.UltraChart();
                        chart.MyChart = mychart;
                        ChartService cs = null;
                        if (_report.Type == ReportType.IndicatorReport)
                        {
                            cs = new IndicatorChartService(_report, chart.CaptionToName);
                        }
                        else
                        {
                            cs = new ChartService(_report);
                        }
                        cs.InitializeChart(chart.Level, null, mychart);
                        if (chart.Data == null)
                        {
                            RuntimeGroup group = null;
                            if (chart.Level > 1)
                            {
                                group = AddARuntimeGroup(_report);
                                GroupHeaderRow pr = (this as GroupRow).ParentRow;
                                while (pr != null)
                                {
                                    group.AddAUpperGroup(pr.AddARuntimeGroup(_report));
                                    pr = pr.ParentRow;
                                }
                            }
                            mychart.Data.DataSource = cs.GetDataSource(chart.Level, null, group, mychart.ChartType);
                        }
                        else
                        {
                            mychart.Data.DataSource = cs.GetDataSource(chart.Level, null, chart.Data, mychart.ChartType);
                        }

                        mychart.Data.DataBind();
                    }
                    catch (Exception e)
                    {
                        chart.Caption         = e.Message;
                        chart.bExceptionChart = true;
                    }
                }
                #endregion
            }
            int x = ConvertFromInternalToControl(c.X);
            if (width != -1 && (x >= width || x + c.Width <= 0))
            {
                return;
            }

            int h;
            int ycor = y;
            if (c is SuperLabel)
            {
                if (_bautoheight)
                {
                    h = c.RuntimeHeight;
                }
                else
                {
                    h = c.Height;
                }
            }
            else
            {
                if (_bautoheight)
                {
                    h = c.ExpandHeight;
                }
                else
                {
                    h = c.MetaHeight;
                }
            }

            int celly = c.Y;
            if (c is Label && _bautoheight)
            {
                if (celly < (c as Label).AutoHeightY)
                {
                    celly = (c as Label).AutoHeightY;
                }
            }

            //if(! (c is SubReport))
            //{
            if (c.KeepPos)
            {
                ycor += celly - _ybase;
            }
            else
            {
                h = this.Height;
            }
            //}
            c.bActive      = false;
            c.bInActiveRow = false;
            if (bActiveCell != null && bActiveCell(c))
            {
                c.bActive = true;
            }
            if (bActiveRow != null && bActiveRow(this) && hasActiveCell != null && hasActiveCell())//!hasActiveCell()
            {
                c.bInActiveRow = true;
            }


            DrawIt(c, g, x, ycor, width, height, h);
        }
Ejemplo n.º 7
0
 private void NewChart()
 {
     _mychart = new Infragistics.Win.UltraWinChart.UltraChart();
 }
Ejemplo n.º 8
0
 public static Infragistics.Win.UltraWinChart.UltraChart UChartTitle(Infragistics.Win.UltraWinChart.UltraChart UChart, string Toptitle)
 {
     UChart.TitleTop.Text            = Toptitle;
     UChart.TitleTop.HorizontalAlign = System.Drawing.StringAlignment.Center;
     return(UChart);
 }
Ejemplo n.º 9
0
 public static Infragistics.Win.UltraWinChart.UltraChart VisibleYaxis(Infragistics.Win.UltraWinChart.UltraChart UChart)
 {
     UChart.Axis.Y.Visible = false;
     return(UChart);
 }
Ejemplo n.º 10
0
        public static Infragistics.Win.UltraWinChart.UltraChart ShowUChart(Infragistics.Win.UltraWinChart.UltraChart UChart, DataTable Table, string UChartType)
        {
            switch ((ChartType)Enum.Parse(typeof(ChartType), UChartType))
            {
            case ChartType.ColumnChart:
                UChart.ChartType = ChartType.ColumnChart;
                break;

            case ChartType.BarChart:
                UChart.ChartType = ChartType.BarChart;
                break;

            case ChartType.StackColumnChart:
                UChart.ChartType = ChartType.StackColumnChart;
                break;

            case ChartType.StackBarChart:
                UChart.ChartType = ChartType.StackBarChart;
                break;

            case ChartType.LineChart:
                UChart.ChartType = ChartType.LineChart;
                break;

            case ChartType.SplineChart:
                UChart.ChartType = ChartType.SplineChart;
                break;

            case ChartType.AreaChart:
                UChart.ChartType = ChartType.AreaChart;
                break;

            case ChartType.SplineAreaChart:
                UChart.ChartType = ChartType.SplineAreaChart;
                break;

            case ChartType.StackSplineAreaChart:
                UChart.ChartType = ChartType.StackSplineAreaChart;
                break;

            case ChartType.StackLineChart:
                UChart.ChartType = ChartType.StackLineChart;
                break;

            case ChartType.StackAreaChart:
                UChart.ChartType = ChartType.StackAreaChart;
                break;

            case ChartType.RadarChart:
                UChart.ChartType = ChartType.RadarChart;
                break;

            case ChartType.PieChart:
                UChart.ChartType = ChartType.PieChart;
                break;

            case ChartType.DoughnutChart:
                UChart.ChartType = ChartType.DoughnutChart;
                UChart.DoughnutChart.Concentric = true;
                break;
            }

            UChart.Axis.X.Extent   = 19;
            UChart.Axis.Y.Extent   = 33;
            UChart.Data.DataSource = Table;
            UChart.Data.DataBind();

            return(UChart);
        }
Ejemplo n.º 11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量时间 从");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量时间 从");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("绑定一次计量表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTITEM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LX");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FHDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CYDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERFACTORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUNDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUND");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TERM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YCSFYC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFSAMPLING");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFACCEPT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERIDCARD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DFJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BILLNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATASTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADINSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_LOADINSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADOUTSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_LOADOUTSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LOADSTOREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FIRSTLABELID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADSTOREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 1776399);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 1776400);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 1776401);
     Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("12");
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PLANCODE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTITEM", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIAL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTTYPE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LX", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_FHDW", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHDW", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CYDW", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERFACTORY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUNDTYPE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUND", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_WEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_WEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHIFT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TERM", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YCSFYC", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_COUNT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_SAMPLETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_CHECKTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFSAMPLING", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFACCEPT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERIDCARD", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DFJZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BILLNUMBER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DATASTATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKBL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADINSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_LOADINSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADOUTSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_LOADOUTSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo65 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LOADSTOREPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo66 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_FIRSTLABELID", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo67 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo68 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADSTOREPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo69 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup0", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo70 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup1", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo71 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup2", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.Appearance appearance1 = 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.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     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 appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement1 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ultraComboEditor1 = new System.Windows.Forms.ComboBox();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataSet1 = new System.Data.DataSet();
     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.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.dataColumn159 = new System.Data.DataColumn();
     this.dataColumn161 = new System.Data.DataColumn();
     this.dataColumn163 = 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.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.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = 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.dataTable1 = new System.Data.DataTable();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultTPPic = new Infragistics.Win.Misc.UltraTilePanel();
     this.ultraTile1 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic1 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile2 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic2 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile3 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic3 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile4 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic4 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile5 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic5 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile9 = new Infragistics.Win.Misc.UltraTile();
     this.ultraChart11 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.ultraTile7 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic7 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile8 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic8 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile6 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic6 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultTPPic)).BeginInit();
     this.ultTPPic.SuspendLayout();
     this.ultraTile1.SuspendLayout();
     this.ultraTile2.SuspendLayout();
     this.ultraTile3.SuspendLayout();
     this.ultraTile4.SuspendLayout();
     this.ultraTile5.SuspendLayout();
     this.ultraTile9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).BeginInit();
     this.ultraTile7.SuspendLayout();
     this.ultraTile8.SuspendLayout();
     this.ultraTile6.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ultraComboEditor1);
     this.panel1.Controls.Add(this.txtCarNo);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.EndTime);
     this.panel1.Controls.Add(this.BeginTime);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(992, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // ultraComboEditor1
     //
     this.ultraComboEditor1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ultraComboEditor1.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.ultraComboEditor1, null);
     this.ultraComboEditor1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ultraComboEditor1.FormattingEnabled = true;
     this.ultraComboEditor1.Location = new System.Drawing.Point(608, 4);
     this.ultraComboEditor1.Name = "ultraComboEditor1";
     this.ultraComboEditor1.Size = new System.Drawing.Size(91, 20);
     this.ultraComboEditor1.TabIndex = 704;
     this.coreBind.SetVerification(this.ultraComboEditor1, null);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(403, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarNo.TabIndex = 11;
     this.coreBind.SetVerification(this.txtCarNo, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 28);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(992, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // EndTime
     //
     this.EndTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndTime.Location = new System.Drawing.Point(235, 2);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(128, 21);
     this.EndTime.TabIndex = 15;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.BeginTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.BeginTime.Location = new System.Drawing.Point(79, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(136, 21);
     this.BeginTime.TabIndex = 14;
     this.coreBind.SetVerification(this.BeginTime, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool3.ControlName = "BeginTime";
     controlContainerTool3.InstanceProps.Width = 211;
     controlContainerTool4.ControlName = "EndTime";
     controlContainerTool4.InstanceProps.Width = 150;
     controlContainerTool5.ControlName = "txtCarNo";
     controlContainerTool5.InstanceProps.IsFirstInGroup = true;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool7.ControlName = "ultraComboEditor1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool3,
     controlContainerTool4,
     controlContainerTool5,
     buttonTool2,
     buttonTool4,
     controlContainerTool7,
     buttonTool5});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool1.ControlName = "BeginTime";
     controlContainerTool1.SharedPropsInternal.Caption = "计量时间 从";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 211;
     controlContainerTool2.ControlName = "EndTime";
     controlContainerTool2.SharedPropsInternal.Caption = "至";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Width = 150;
     buttonTool1.SharedPropsInternal.Caption = "查询";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool3.SharedPropsInternal.Caption = "修改";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool3.SharedPropsInternal.Visible = false;
     controlContainerTool6.ControlName = "txtCarNo";
     controlContainerTool6.SharedPropsInternal.Caption = "车号";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool8.ControlName = "ultraComboEditor1";
     controlContainerTool8.SharedPropsInternal.Caption = "计量点";
     controlContainerTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool6.SharedPropsInternal.Caption = "票据补打";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool2,
     buttonTool1,
     buttonTool3,
     controlContainerTool6,
     controlContainerTool8,
     buttonTool6});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 28);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 28);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable2,
     this.dataTable11,
     this.dataTable1});
     //
     // 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";
     //
     // 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.dataColumn159,
     this.dataColumn161,
     this.dataColumn163,
     this.dataColumn167,
     this.dataColumn168,
     this.dataColumn169,
     this.dataColumn170,
     this.dataColumn190,
     this.dataColumn191,
     this.dataColumn192,
     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.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43});
     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_RECEIVERFACTORY";
     //
     // 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";
     //
     // dataColumn159
     //
     this.dataColumn159.Caption = "卸货确认";
     this.dataColumn159.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn161
     //
     this.dataColumn161.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn163
     //
     this.dataColumn163.Caption = "取样员";
     this.dataColumn163.ColumnName = "FS_SAMPLEPERSON";
     //
     // 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";
     //
     // 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";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "对方净重";
     this.dataColumn1.ColumnName = "FS_DFJZ";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "单据编号";
     this.dataColumn2.ColumnName = "FS_BILLNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "磅房启用状态";
     this.dataColumn3.ColumnName = "FS_DATASTATE";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "录入状态";
     this.dataColumn33.ColumnName = "FS_MEMO";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "收货备注";
     this.dataColumn34.ColumnName = "FS_BZ";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "应扣比例";
     this.dataColumn35.ColumnName = "FS_YKBL";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "供应单位代码";
     this.dataColumn36.ColumnName = "FS_PROVIDER";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "卸车入库时间";
     this.dataColumn30.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "卸货员";
     this.dataColumn31.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "收货地点";
     this.dataColumn32.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "装车入库时间";
     this.dataColumn37.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "卸车出库时间";
     this.dataColumn38.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "装车出库时间";
     this.dataColumn39.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "装车库管员";
     this.dataColumn40.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "一次磅单条码";
     this.dataColumn41.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "卸车时间";
     this.dataColumn42.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn26});
     this.dataTable1.TableName = "计量图片";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "FB_IMAGE1";
     this.dataColumn21.DataType = typeof(byte[]);
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FB_IMAGE2";
     this.dataColumn22.DataType = typeof(byte[]);
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FB_IMAGE3";
     this.dataColumn23.DataType = typeof(byte[]);
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FB_IMAGE4";
     this.dataColumn24.DataType = typeof(byte[]);
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FB_IMAGE5";
     this.dataColumn25.DataType = typeof(byte[]);
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FB_IMAGE7";
     this.dataColumn27.DataType = typeof(byte[]);
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FB_IMAGE8";
     this.dataColumn28.DataType = typeof(byte[]);
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FB_IMAGE6";
     this.dataColumn29.DataType = typeof(byte[]);
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_CURVEIMAGEONE";
     //
     // splitContainer1
     //
     this.coreBind.SetDatabasecommand(this.splitContainer1, null);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 26);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel1, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox3);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel2, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(992, 640);
     this.splitContainer1.SplitterDistance = 330;
     this.splitContainer1.TabIndex = 1;
     this.coreBind.SetVerification(this.splitContainer1, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 330);
     this.ultraGroupBox1.TabIndex = 1;
     this.ultraGroupBox1.Text = "数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "绑定一次计量表";
     this.ultraGrid3.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.Hidden = true;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.Hidden = true;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.Hidden = true;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.Hidden = true;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 48;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 50;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 56;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 52;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 54;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 56;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 68;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.Hidden = true;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.Hidden = true;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 82;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 84;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 86;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 43;
     ultraGridColumn44.Hidden = true;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 88;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.Header.VisiblePosition = 44;
     ultraGridColumn45.Hidden = true;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 90;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.Header.VisiblePosition = 45;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 60;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn47.Header.VisiblePosition = 46;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 62;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn48.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn49.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn49.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn50.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn50.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn51.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn52.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 64;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 66;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 68;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn58.Header.VisiblePosition = 57;
     ultraGridColumn58.Hidden = true;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 116;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn59.Header.VisiblePosition = 58;
     ultraGridColumn59.Hidden = true;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.Header.VisiblePosition = 59;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.Header.VisiblePosition = 60;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn62.Header.VisiblePosition = 61;
     ultraGridColumn62.Hidden = true;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn63.Header.VisiblePosition = 62;
     ultraGridColumn63.Hidden = true;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn64.Header.VisiblePosition = 63;
     ultraGridColumn64.Hidden = true;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 78;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn65.Header.VisiblePosition = 64;
     ultraGridColumn65.Hidden = true;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn66.Header.VisiblePosition = 65;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn67.Header.VisiblePosition = 66;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn67.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn68.Header.VisiblePosition = 67;
     ultraGridColumn68.Hidden = true;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     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,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58,
     ultraGridColumn59,
     ultraGridColumn60,
     ultraGridColumn61,
     ultraGridColumn62,
     ultraGridColumn63,
     ultraGridColumn64,
     ultraGridColumn65,
     ultraGridColumn66,
     ultraGridColumn67,
     ultraGridColumn68});
     ultraGridGroup1.Header.Caption = "重量";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 14;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 10;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup2.Header.Caption = "卸货";
     ultraGridGroup2.Key = "NewGroup1";
     ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 24;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup3.Header.Caption = "复磅";
     ultraGridGroup3.Key = "NewGroup2";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 32;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2,
     ultraGridGroup3});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     rowLayout1.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
     rowLayoutColumnInfo1,
     rowLayoutColumnInfo2,
     rowLayoutColumnInfo3,
     rowLayoutColumnInfo4,
     rowLayoutColumnInfo5,
     rowLayoutColumnInfo6,
     rowLayoutColumnInfo7,
     rowLayoutColumnInfo8,
     rowLayoutColumnInfo9,
     rowLayoutColumnInfo10,
     rowLayoutColumnInfo11,
     rowLayoutColumnInfo12,
     rowLayoutColumnInfo13,
     rowLayoutColumnInfo14,
     rowLayoutColumnInfo15,
     rowLayoutColumnInfo16,
     rowLayoutColumnInfo17,
     rowLayoutColumnInfo18,
     rowLayoutColumnInfo19,
     rowLayoutColumnInfo20,
     rowLayoutColumnInfo21,
     rowLayoutColumnInfo22,
     rowLayoutColumnInfo23,
     rowLayoutColumnInfo24,
     rowLayoutColumnInfo25,
     rowLayoutColumnInfo26,
     rowLayoutColumnInfo27,
     rowLayoutColumnInfo28,
     rowLayoutColumnInfo29,
     rowLayoutColumnInfo30,
     rowLayoutColumnInfo31,
     rowLayoutColumnInfo32,
     rowLayoutColumnInfo33,
     rowLayoutColumnInfo34,
     rowLayoutColumnInfo35,
     rowLayoutColumnInfo36,
     rowLayoutColumnInfo37,
     rowLayoutColumnInfo38,
     rowLayoutColumnInfo39,
     rowLayoutColumnInfo40,
     rowLayoutColumnInfo41,
     rowLayoutColumnInfo42,
     rowLayoutColumnInfo43,
     rowLayoutColumnInfo44,
     rowLayoutColumnInfo45,
     rowLayoutColumnInfo46,
     rowLayoutColumnInfo47,
     rowLayoutColumnInfo48,
     rowLayoutColumnInfo49,
     rowLayoutColumnInfo50,
     rowLayoutColumnInfo51,
     rowLayoutColumnInfo52,
     rowLayoutColumnInfo53,
     rowLayoutColumnInfo54,
     rowLayoutColumnInfo55,
     rowLayoutColumnInfo56,
     rowLayoutColumnInfo57,
     rowLayoutColumnInfo58,
     rowLayoutColumnInfo59,
     rowLayoutColumnInfo60,
     rowLayoutColumnInfo61,
     rowLayoutColumnInfo62,
     rowLayoutColumnInfo63,
     rowLayoutColumnInfo64,
     rowLayoutColumnInfo65,
     rowLayoutColumnInfo66,
     rowLayoutColumnInfo67,
     rowLayoutColumnInfo68,
     rowLayoutColumnInfo69,
     rowLayoutColumnInfo70,
     rowLayoutColumnInfo71});
     rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
     rowLayout1});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.GroupByBox.Prompt = "请拖动列到此,按该列进行分组";
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 8;
     appearance1.FontData.BoldAsString = "True";
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance1;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance2;
     appearance3.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance3;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance4.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance4.TextHAlignAsString = "Center";
     appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance4;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid3.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid3.DisplayLayout.Override.MinRowHeight = 21;
     appearance5.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance5;
     appearance6.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance6;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance29.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance29.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance29;
     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.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     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.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     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(3, 18);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(986, 309);
     this.ultraGrid3.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid3_DoubleClick);
     //
     // ultraGroupBox3
     //
     appearance9.BackColor = System.Drawing.Color.White;
     appearance9.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGroupBox3.Appearance = appearance9;
     this.ultraGroupBox3.Controls.Add(this.ultTPPic);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox3, null);
     this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(992, 306);
     this.ultraGroupBox3.TabIndex = 3;
     this.ultraGroupBox3.Text = "计量图片";
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultTPPic
     //
     appearance10.BackColor = System.Drawing.Color.White;
     appearance10.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance10.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultTPPic.Appearance = appearance10;
     this.coreBind.SetDatabasecommand(this.ultTPPic, null);
     this.ultTPPic.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultTPPic.LargeTileOrientation = Infragistics.Win.Misc.TileOrientation.Horizontal;
     this.ultTPPic.LargeTilePosition = Infragistics.Win.Misc.LargeTilePosition.Right;
     this.ultTPPic.Location = new System.Drawing.Point(3, 18);
     this.ultTPPic.Name = "ultTPPic";
     this.ultTPPic.NormalModeDimensions = new System.Drawing.Size(3, 3);
     this.ultTPPic.Size = new System.Drawing.Size(986, 285);
     this.ultTPPic.StyleLibraryName = "Offic2007";
     this.ultTPPic.StyleSetName = "Offic2007";
     this.ultTPPic.TabIndex = 0;
     this.ultTPPic.Tiles.Add(this.ultraTile1);
     this.ultTPPic.Tiles.Add(this.ultraTile2);
     this.ultTPPic.Tiles.Add(this.ultraTile3);
     this.ultTPPic.Tiles.Add(this.ultraTile4);
     this.ultTPPic.Tiles.Add(this.ultraTile5);
     this.ultTPPic.Tiles.Add(this.ultraTile9);
     this.ultTPPic.Tiles.Add(this.ultraTile7);
     this.ultTPPic.Tiles.Add(this.ultraTile8);
     this.ultTPPic.Tiles.Add(this.ultraTile6);
     appearance7.AlphaLevel = ((short)(214));
     appearance7.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance7.BackColor2 = System.Drawing.SystemColors.Desktop;
     appearance7.BackColorAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
     appearance7.BorderColor3DBase = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance7.ForeColorDisabled = System.Drawing.Color.Transparent;
     this.ultTPPic.TileSettings.Appearance = appearance7;
     appearance8.AlphaLevel = ((short)(253));
     appearance8.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance8.BackColor2 = System.Drawing.SystemColors.Highlight;
     appearance8.BackColorAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
     appearance8.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Centered;
     appearance8.ImageHAlign = Infragistics.Win.HAlign.Center;
     appearance8.ImageVAlign = Infragistics.Win.VAlign.Middle;
     this.ultTPPic.TileSettings.HeaderAppearance = appearance8;
     this.ultTPPic.TileSettings.HeaderPosition = Infragistics.Win.Misc.TileHeaderPosition.Top;
     this.coreBind.SetVerification(this.ultTPPic, null);
     //
     // ultraTile1
     //
     this.ultraTile1.Caption = "图像1";
     this.ultraTile1.Control = this.ulpic1;
     this.ultraTile1.Controls.Add(this.ulpic1);
     this.coreBind.SetDatabasecommand(this.ultraTile1, null);
     this.ultraTile1.Name = "ultraTile1";
     this.ultraTile1.PositionInNormalMode = new System.Drawing.Point(0, 0);
     appearance12.BackColor = System.Drawing.Color.White;
     appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile1.Settings.Appearance = appearance12;
     appearance13.BackColor = System.Drawing.Color.White;
     appearance13.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance13.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile1.Settings.HeaderAppearance = appearance13;
     this.ultraTile1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraTile1, null);
     //
     // ulpic1
     //
     this.ulpic1.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic1, null);
     this.ulpic1.Location = new System.Drawing.Point(0, 18);
     this.ulpic1.Name = "ulpic1";
     this.ulpic1.Size = new System.Drawing.Size(309, 82);
     this.ulpic1.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic1, null);
     //
     // ultraTile2
     //
     this.ultraTile2.Caption = "图像2";
     this.ultraTile2.Control = this.ulpic2;
     this.ultraTile2.Controls.Add(this.ulpic2);
     this.coreBind.SetDatabasecommand(this.ultraTile2, null);
     this.ultraTile2.Name = "ultraTile2";
     this.ultraTile2.PositionInNormalMode = new System.Drawing.Point(1, 0);
     appearance17.BackColor = System.Drawing.Color.White;
     appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile2.Settings.Appearance = appearance17;
     appearance18.BackColor = System.Drawing.Color.White;
     appearance18.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile2.Settings.HeaderAppearance = appearance18;
     this.ultraTile2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraTile2, null);
     //
     // ulpic2
     //
     this.ulpic2.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic2, null);
     this.ulpic2.Location = new System.Drawing.Point(0, 18);
     this.ulpic2.Name = "ulpic2";
     this.ulpic2.Size = new System.Drawing.Size(309, 82);
     this.ulpic2.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic2, null);
     //
     // ultraTile3
     //
     this.ultraTile3.Caption = "图像3";
     this.ultraTile3.Control = this.ulpic3;
     this.ultraTile3.Controls.Add(this.ulpic3);
     this.coreBind.SetDatabasecommand(this.ultraTile3, null);
     this.ultraTile3.Name = "ultraTile3";
     this.ultraTile3.PositionInNormalMode = new System.Drawing.Point(2, 0);
     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.ultraTile3.Settings.Appearance = appearance19;
     appearance20.BackColor = System.Drawing.Color.White;
     appearance20.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance20.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile3.Settings.HeaderAppearance = appearance20;
     this.ultraTile3.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraTile3, null);
     //
     // ulpic3
     //
     this.ulpic3.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic3, null);
     this.ulpic3.Location = new System.Drawing.Point(0, 18);
     this.ulpic3.Name = "ulpic3";
     this.ulpic3.Size = new System.Drawing.Size(309, 82);
     this.ulpic3.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic3, null);
     //
     // ultraTile4
     //
     this.ultraTile4.Caption = "图像4";
     this.ultraTile4.Control = this.ulpic4;
     this.ultraTile4.Controls.Add(this.ulpic4);
     this.coreBind.SetDatabasecommand(this.ultraTile4, null);
     this.ultraTile4.Name = "ultraTile4";
     this.ultraTile4.PositionInNormalMode = new System.Drawing.Point(0, 1);
     appearance21.BackColor = System.Drawing.Color.White;
     appearance21.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile4.Settings.Appearance = appearance21;
     appearance22.BackColor = System.Drawing.Color.White;
     appearance22.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance22.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile4.Settings.HeaderAppearance = appearance22;
     this.ultraTile4.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraTile4, null);
     //
     // ulpic4
     //
     this.ulpic4.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic4, null);
     this.ulpic4.Location = new System.Drawing.Point(0, 18);
     this.ulpic4.Name = "ulpic4";
     this.ulpic4.Size = new System.Drawing.Size(309, 82);
     this.ulpic4.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic4, null);
     //
     // ultraTile5
     //
     this.ultraTile5.Caption = "图像5";
     this.ultraTile5.Control = this.ulpic5;
     this.ultraTile5.Controls.Add(this.ulpic5);
     this.coreBind.SetDatabasecommand(this.ultraTile5, null);
     this.ultraTile5.Name = "ultraTile5";
     this.ultraTile5.PositionInNormalMode = new System.Drawing.Point(1, 1);
     appearance23.BackColor = System.Drawing.Color.White;
     appearance23.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile5.Settings.Appearance = appearance23;
     appearance24.BackColor = System.Drawing.Color.White;
     appearance24.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile5.Settings.HeaderAppearance = appearance24;
     this.ultraTile5.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraTile5, null);
     //
     // ulpic5
     //
     this.ulpic5.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic5, null);
     this.ulpic5.Location = new System.Drawing.Point(0, 18);
     this.ulpic5.Name = "ulpic5";
     this.ulpic5.Size = new System.Drawing.Size(309, 82);
     this.ulpic5.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic5, null);
     //
     // ultraTile9
     //
     this.ultraTile9.Caption = "一次计量动态曲线图数据";
     this.ultraTile9.Control = this.ultraChart11;
     this.ultraTile9.Controls.Add(this.ultraChart11);
     this.coreBind.SetDatabasecommand(this.ultraTile9, null);
     this.ultraTile9.Name = "ultraTile9";
     this.ultraTile9.PositionInNormalMode = new System.Drawing.Point(2, 2);
     appearance11.BackColor = System.Drawing.Color.White;
     appearance11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile9.Settings.Appearance = appearance11;
     appearance14.BackColor = System.Drawing.Color.White;
     appearance14.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile9.Settings.HeaderAppearance = appearance14;
     this.ultraTile9.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraTile9, 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.ultraChart11.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart11
     //
     this.ultraChart11.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.ultraChart11.Axis.PE = paintElement1;
     this.ultraChart11.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X.Labels.Visible = false;
     this.ultraChart11.Axis.X.LineThickness = 1;
     this.ultraChart11.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart11.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart11.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.X.Visible = false;
     this.ultraChart11.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X2.Labels.Visible = false;
     this.ultraChart11.Axis.X2.LineThickness = 1;
     this.ultraChart11.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart11.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.X2.Visible = false;
     this.ultraChart11.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart11.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y.LineThickness = 1;
     this.ultraChart11.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Y.TickmarkInterval = 100;
     this.ultraChart11.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Y.Visible = true;
     this.ultraChart11.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart11.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y2.Labels.Visible = false;
     this.ultraChart11.Axis.Y2.LineThickness = 1;
     this.ultraChart11.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Y2.TickmarkInterval = 100;
     this.ultraChart11.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Y2.Visible = false;
     this.ultraChart11.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z.Labels.Visible = false;
     this.ultraChart11.Axis.Z.LineThickness = 1;
     this.ultraChart11.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Z.Visible = false;
     this.ultraChart11.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z2.Labels.Visible = false;
     this.ultraChart11.Axis.Z2.LineThickness = 1;
     this.ultraChart11.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Z2.Visible = false;
     this.ultraChart11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart11.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart11.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart11.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart11.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     this.coreBind.SetDatabasecommand(this.ultraChart11, null);
     this.ultraChart11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart11.Effects.Effects.Add(gradientEffect1);
     this.ultraChart11.Location = new System.Drawing.Point(0, 18);
     this.ultraChart11.Name = "ultraChart11";
     this.ultraChart11.Size = new System.Drawing.Size(309, 82);
     this.ultraChart11.TabIndex = 5;
     this.ultraChart11.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart11, null);
     //
     // ultraTile7
     //
     this.ultraTile7.Caption = "图像7";
     this.ultraTile7.Control = this.ulpic7;
     this.ultraTile7.Controls.Add(this.ulpic7);
     this.coreBind.SetDatabasecommand(this.ultraTile7, null);
     this.ultraTile7.Name = "ultraTile7";
     this.ultraTile7.PositionInNormalMode = new System.Drawing.Point(0, 2);
     appearance25.BackColor = System.Drawing.Color.White;
     appearance25.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile7.Settings.Appearance = appearance25;
     appearance26.BackColor = System.Drawing.Color.White;
     appearance26.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile7.Settings.HeaderAppearance = appearance26;
     this.ultraTile7.TabIndex = 6;
     this.coreBind.SetVerification(this.ultraTile7, null);
     //
     // ulpic7
     //
     this.ulpic7.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic7, null);
     this.ulpic7.Location = new System.Drawing.Point(0, 18);
     this.ulpic7.Name = "ulpic7";
     this.ulpic7.Size = new System.Drawing.Size(309, 82);
     this.ulpic7.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic7, null);
     //
     // ultraTile8
     //
     this.ultraTile8.Caption = "图像8";
     this.ultraTile8.Control = this.ulpic8;
     this.ultraTile8.Controls.Add(this.ulpic8);
     this.coreBind.SetDatabasecommand(this.ultraTile8, null);
     this.ultraTile8.Name = "ultraTile8";
     this.ultraTile8.PositionInNormalMode = new System.Drawing.Point(1, 2);
     appearance27.BackColor = System.Drawing.Color.White;
     appearance27.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile8.Settings.Appearance = appearance27;
     appearance28.BackColor = System.Drawing.Color.White;
     appearance28.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile8.Settings.HeaderAppearance = appearance28;
     this.ultraTile8.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraTile8, null);
     //
     // ulpic8
     //
     this.ulpic8.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic8, null);
     this.ulpic8.Location = new System.Drawing.Point(0, 18);
     this.ulpic8.Name = "ulpic8";
     this.ulpic8.Size = new System.Drawing.Size(309, 82);
     this.ulpic8.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic8, null);
     //
     // ultraTile6
     //
     this.ultraTile6.Caption = "图像6";
     this.ultraTile6.Control = this.ulpic6;
     this.ultraTile6.Controls.Add(this.ulpic6);
     this.coreBind.SetDatabasecommand(this.ultraTile6, null);
     this.ultraTile6.Name = "ultraTile6";
     this.ultraTile6.PositionInNormalMode = new System.Drawing.Point(2, 1);
     appearance15.BackColor = System.Drawing.Color.White;
     appearance15.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile6.Settings.Appearance = appearance15;
     appearance16.BackColor = System.Drawing.Color.White;
     appearance16.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile6.Settings.HeaderAppearance = appearance16;
     this.ultraTile6.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraTile6, null);
     //
     // ulpic6
     //
     this.ulpic6.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic6, null);
     this.ulpic6.Location = new System.Drawing.Point(0, 18);
     this.ulpic6.Name = "ulpic6";
     this.ulpic6.Size = new System.Drawing.Size(309, 82);
     this.ulpic6.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic6, null);
     //
     // MeasureDataOneQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 666);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "MeasureDataOneQuery";
     this.Text = "一次计量数据查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.MeasureDataOneQuery_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultTPPic)).EndInit();
     this.ultTPPic.ResumeLayout(false);
     this.ultraTile1.ResumeLayout(false);
     this.ultraTile2.ResumeLayout(false);
     this.ultraTile3.ResumeLayout(false);
     this.ultraTile4.ResumeLayout(false);
     this.ultraTile5.ResumeLayout(false);
     this.ultraTile9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).EndInit();
     this.ultraTile7.ResumeLayout(false);
     this.ultraTile8.ResumeLayout(false);
     this.ultraTile6.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 12
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);
 }
Ejemplo n.º 13
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.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool14 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MeasureDataQuery));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GROSSDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSSHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TAREDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TARESHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TOCENTERTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TESTIFYDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPECODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_JZDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WXPAYFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_JSDH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CWQR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_KHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATASTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CREATEJSRQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_KSDJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_FHRQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YFDJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_CETH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SJTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_KTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YFJE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_FHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SFJE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ECJLSJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SETTLEMENTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 6175674);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 6175675);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 6175676);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup4 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup3", 6175677);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup5 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup4", 6175678);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup6 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup5", 6175679);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup7 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup6", 6175680);
     Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("12");
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTTYPE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_GROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPOINT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_GROSSDATETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSSHIFT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_TAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPOINT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TAREDATETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TARESHIFT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_NETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_SAMPLETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TOCENTERTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_ACCOUNTDATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TESTIFYDATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TYPECODE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIAL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_JZDATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WXPAYFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_CHECKTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_JSDH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CWQR", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKBL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_KHJZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DATASTATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CREATEJSRQ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_KSDJ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_FHRQ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo65 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_YFDJ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo66 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_CETH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo67 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SJTH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo68 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_KTH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo69 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_YFJE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo70 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_FHJZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo71 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SFJE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo72 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_ECJLSJ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo73 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo74 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SETTLEMENTNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo75 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup0", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo76 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup1", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo77 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup2", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo78 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup3", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo79 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup4", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo80 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup5", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo81 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup6", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_CARDNUMBER", 72, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 19, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 19, true);
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement1 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement2 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect2 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ultraComboEditor1 = new System.Windows.Forms.ComboBox();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.dateBegin = new System.Windows.Forms.DateTimePicker();
     this.dateEnd = new System.Windows.Forms.DateTimePicker();
     this.cbDateField = new System.Windows.Forms.ComboBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbSHDWUSER = new System.Windows.Forms.ComboBox();
     this.cbGYDWUSER = new System.Windows.Forms.ComboBox();
     this.cbHTH = new System.Windows.Forms.ComboBox();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.MeasureDataQuery_Fill_Panel = new System.Windows.Forms.Panel();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     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.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = 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.dataColumn57 = 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.dataColumn71 = 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.dataTable2 = new System.Data.DataTable();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn51 = new System.Data.DataColumn();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultTPPic = new Infragistics.Win.Misc.UltraTilePanel();
     this.ultraTile1 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic1 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile2 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic2 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile3 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic3 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile4 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic4 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile5 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic5 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile6 = new Infragistics.Win.Misc.UltraTile();
     this.ultraChart11 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.ultraTile7 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic7 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile8 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic8 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile9 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic9 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile10 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic10 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile11 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic11 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile12 = new Infragistics.Win.Misc.UltraTile();
     this.ultraChart12 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.dataColumn87 = new System.Data.DataColumn();
     this.panel1.SuspendLayout();
     this.panel1_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.MeasureDataQuery_Fill_Panel.SuspendLayout();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).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.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultTPPic)).BeginInit();
     this.ultTPPic.SuspendLayout();
     this.ultraTile1.SuspendLayout();
     this.ultraTile2.SuspendLayout();
     this.ultraTile3.SuspendLayout();
     this.ultraTile4.SuspendLayout();
     this.ultraTile5.SuspendLayout();
     this.ultraTile6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).BeginInit();
     this.ultraTile7.SuspendLayout();
     this.ultraTile8.SuspendLayout();
     this.ultraTile9.SuspendLayout();
     this.ultraTile10.SuspendLayout();
     this.ultraTile11.SuspendLayout();
     this.ultraTile12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart12)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ultraComboEditor1);
     this.panel1.Controls.Add(this.cbx_Filter);
     this.panel1.Controls.Add(this.txtCarNo);
     this.panel1.Controls.Add(this.dateBegin);
     this.panel1.Controls.Add(this.dateEnd);
     this.panel1.Controls.Add(this.cbDateField);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1028, 27);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // ultraComboEditor1
     //
     this.ultraComboEditor1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ultraComboEditor1.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.ultraComboEditor1, null);
     this.ultraComboEditor1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ultraComboEditor1.FormattingEnabled = true;
     this.ultraComboEditor1.Location = new System.Drawing.Point(767, 5);
     this.ultraComboEditor1.Name = "ultraComboEditor1";
     this.ultraComboEditor1.Size = new System.Drawing.Size(91, 20);
     this.ultraComboEditor1.TabIndex = 705;
     this.coreBind.SetVerification(this.ultraComboEditor1, null);
     //
     // cbx_Filter
     //
     this.cbx_Filter.AutoSize = true;
     this.cbx_Filter.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbx_Filter, null);
     this.cbx_Filter.Location = new System.Drawing.Point(932, 6);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 11;
     this.cbx_Filter.Text = "过滤";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     this.cbx_Filter.Visible = false;
     this.cbx_Filter.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(500, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarNo.TabIndex = 11;
     this.coreBind.SetVerification(this.txtCarNo, null);
     //
     // dateBegin
     //
     this.dateBegin.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateBegin, null);
     this.dateBegin.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateBegin.Location = new System.Drawing.Point(194, 2);
     this.dateBegin.Name = "dateBegin";
     this.dateBegin.Size = new System.Drawing.Size(125, 21);
     this.dateBegin.TabIndex = 599;
     this.coreBind.SetVerification(this.dateBegin, null);
     this.dateBegin.ValueChanged += new System.EventHandler(this.dateBegin_ValueChanged);
     //
     // dateEnd
     //
     this.dateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateEnd, null);
     this.dateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateEnd.Location = new System.Drawing.Point(341, 2);
     this.dateEnd.Name = "dateEnd";
     this.dateEnd.Size = new System.Drawing.Size(125, 21);
     this.dateEnd.TabIndex = 600;
     this.coreBind.SetVerification(this.dateEnd, null);
     //
     // cbDateField
     //
     this.coreBind.SetDatabasecommand(this.cbDateField, null);
     this.cbDateField.FormattingEnabled = true;
     this.cbDateField.Items.AddRange(new object[] {
     "",
     "毛重计量时间",
     "皮重计量时间"});
     this.cbDateField.Location = new System.Drawing.Point(60, 2);
     this.cbDateField.Name = "cbDateField";
     this.cbDateField.Size = new System.Drawing.Size(99, 20);
     this.cbDateField.TabIndex = 605;
     this.coreBind.SetVerification(this.cbDateField, null);
     this.cbDateField.SelectedIndexChanged += new System.EventHandler(this.cbDateField_SelectedIndexChanged);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Controls.Add(this.cbSHDWUSER);
     this.panel1_Fill_Panel.Controls.Add(this.cbGYDWUSER);
     this.panel1_Fill_Panel.Controls.Add(this.cbHTH);
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 54);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1028, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // cbSHDWUSER
     //
     this.coreBind.SetDatabasecommand(this.cbSHDWUSER, null);
     this.cbSHDWUSER.FormattingEnabled = true;
     this.cbSHDWUSER.Location = new System.Drawing.Point(-10000, -10000);
     this.cbSHDWUSER.Name = "cbSHDWUSER";
     this.cbSHDWUSER.Size = new System.Drawing.Size(123, 20);
     this.cbSHDWUSER.TabIndex = 611;
     this.coreBind.SetVerification(this.cbSHDWUSER, null);
     //
     // cbGYDWUSER
     //
     this.coreBind.SetDatabasecommand(this.cbGYDWUSER, null);
     this.cbGYDWUSER.FormattingEnabled = true;
     this.cbGYDWUSER.Location = new System.Drawing.Point(601, 4);
     this.cbGYDWUSER.Name = "cbGYDWUSER";
     this.cbGYDWUSER.Size = new System.Drawing.Size(123, 20);
     this.cbGYDWUSER.TabIndex = 610;
     this.coreBind.SetVerification(this.cbGYDWUSER, null);
     //
     // cbHTH
     //
     this.coreBind.SetDatabasecommand(this.cbHTH, null);
     this.cbHTH.FormattingEnabled = true;
     this.cbHTH.Location = new System.Drawing.Point(473, 3);
     this.cbHTH.Name = "cbHTH";
     this.cbHTH.Size = new System.Drawing.Size(122, 20);
     this.cbHTH.TabIndex = 598;
     this.coreBind.SetVerification(this.cbHTH, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 54);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(269, 316);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(182, 144);
     controlContainerTool10.ControlName = "cbDateField";
     controlContainerTool10.InstanceProps.RecentlyUsed = false;
     controlContainerTool10.InstanceProps.Width = 158;
     controlContainerTool11.ControlName = "dateBegin";
     controlContainerTool11.InstanceProps.Width = 159;
     controlContainerTool12.ControlName = "dateEnd";
     controlContainerTool12.InstanceProps.Width = 147;
     controlContainerTool1.ControlName = "txtCarNo";
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.ControlName = "ultraComboEditor1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool10,
     controlContainerTool11,
     controlContainerTool12,
     controlContainerTool1,
     buttonTool4,
     buttonTool3,
     controlContainerTool3,
     buttonTool1});
     ultraToolbar1.Text = "UltraToolbar1";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     ultraToolbar2.Text = "UltraToolbar2";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     controlContainerTool14.ControlName = "dateBegin";
     controlContainerTool14.SharedPropsInternal.Caption = "开始";
     controlContainerTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool14.SharedPropsInternal.Width = 159;
     appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance34;
     buttonTool5.SharedPropsInternal.Caption = "查询";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.ControlName = "dateEnd";
     controlContainerTool16.SharedPropsInternal.Caption = "至";
     controlContainerTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.SharedPropsInternal.Width = 147;
     controlContainerTool17.ControlName = "cbDateField";
     controlContainerTool17.SharedPropsInternal.Caption = "查询日期";
     controlContainerTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool17.SharedPropsInternal.Width = 158;
     controlContainerTool2.ControlName = "txtCarNo";
     controlContainerTool2.SharedPropsInternal.Caption = "车号";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool7.SharedPropsInternal.Caption = "导出";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.ControlName = "ultraComboEditor1";
     controlContainerTool4.SharedPropsInternal.Caption = "计量点";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool2.SharedPropsInternal.Caption = "票据补打";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool14,
     buttonTool5,
     controlContainerTool16,
     controlContainerTool17,
     controlContainerTool2,
     buttonTool7,
     controlContainerTool4,
     buttonTool2});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1028, 54);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1028, 54);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 27);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1028, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // MeasureDataQuery_Fill_Panel
     //
     this.MeasureDataQuery_Fill_Panel.Controls.Add(this.ultraPanel1);
     this.MeasureDataQuery_Fill_Panel.Controls.Add(this.panel1);
     this.MeasureDataQuery_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.MeasureDataQuery_Fill_Panel, null);
     this.MeasureDataQuery_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.MeasureDataQuery_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.MeasureDataQuery_Fill_Panel.Name = "MeasureDataQuery_Fill_Panel";
     this.MeasureDataQuery_Fill_Panel.Size = new System.Drawing.Size(1028, 666);
     this.MeasureDataQuery_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.MeasureDataQuery_Fill_Panel, null);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.splitContainer1);
     this.coreBind.SetDatabasecommand(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel1, null);
     this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 27);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(1028, 639);
     this.ultraPanel1.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // splitContainer1
     //
     this.coreBind.SetDatabasecommand(this.splitContainer1, null);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox2);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel1, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox3);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel2, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(1028, 639);
     this.splitContainer1.SplitterDistance = 293;
     this.splitContainer1.TabIndex = 11;
     this.coreBind.SetVerification(this.splitContainer1, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1028, 293);
     this.ultraGroupBox2.TabIndex = 12;
     this.ultraGroupBox2.Text = "计量查询数据";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "计量数据";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 56;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 60;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 66;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 64;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 68;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 78;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 82;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 84;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn37.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn38.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.Hidden = true;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 92;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 94;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 96;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 98;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 100;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 43;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn44.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.Header.VisiblePosition = 44;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn45.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.Header.VisiblePosition = 45;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn46.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn47.Header.VisiblePosition = 46;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.Hidden = true;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.Hidden = true;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn55.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn56.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn57.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn58.Header.VisiblePosition = 57;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn58.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn59.Header.VisiblePosition = 58;
     ultraGridColumn59.Hidden = true;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.Header.VisiblePosition = 59;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.Header.VisiblePosition = 60;
     ultraGridColumn61.Hidden = true;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 78;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn62.Header.VisiblePosition = 61;
     ultraGridColumn62.Hidden = true;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn63.Header.VisiblePosition = 62;
     ultraGridColumn63.Hidden = true;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 82;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn64.Header.VisiblePosition = 63;
     ultraGridColumn64.Hidden = true;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 84;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn65.Header.VisiblePosition = 64;
     ultraGridColumn65.Hidden = true;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 86;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn66.Header.VisiblePosition = 65;
     ultraGridColumn66.Hidden = true;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 88;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn67.Header.VisiblePosition = 66;
     ultraGridColumn67.Hidden = true;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 90;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn68.Header.VisiblePosition = 67;
     ultraGridColumn68.Hidden = true;
     ultraGridColumn68.RowLayoutColumnInfo.OriginX = 92;
     ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn68.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn69.Header.VisiblePosition = 68;
     ultraGridColumn69.Hidden = true;
     ultraGridColumn69.RowLayoutColumnInfo.OriginX = 94;
     ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn69.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn69.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn70.Header.VisiblePosition = 69;
     ultraGridColumn70.Hidden = true;
     ultraGridColumn70.RowLayoutColumnInfo.OriginX = 96;
     ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn70.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn70.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn71.Header.VisiblePosition = 70;
     ultraGridColumn71.Hidden = true;
     ultraGridColumn71.RowLayoutColumnInfo.OriginX = 98;
     ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn71.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn71.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn72.Header.VisiblePosition = 71;
     ultraGridColumn72.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn72.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn72.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn72.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn73.Header.VisiblePosition = 72;
     ultraGridColumn73.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn73.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn73.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn74.Header.VisiblePosition = 73;
     ultraGridColumn74.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn74.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn74.RowLayoutColumnInfo.SpanY = 3;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     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,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58,
     ultraGridColumn59,
     ultraGridColumn60,
     ultraGridColumn61,
     ultraGridColumn62,
     ultraGridColumn63,
     ultraGridColumn64,
     ultraGridColumn65,
     ultraGridColumn66,
     ultraGridColumn67,
     ultraGridColumn68,
     ultraGridColumn69,
     ultraGridColumn70,
     ultraGridColumn71,
     ultraGridColumn72,
     ultraGridColumn73,
     ultraGridColumn74});
     ultraGridGroup1.Header.Caption = "重量";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 18;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup2.Header.Caption = "毛重";
     ultraGridGroup2.Key = "NewGroup1";
     ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 30;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 10;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup3.Header.Caption = "皮重";
     ultraGridGroup3.Key = "NewGroup2";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 40;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup4.Header.Caption = "扣渣";
     ultraGridGroup4.Key = "NewGroup3";
     ultraGridGroup4.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup4.RowLayoutGroupInfo.OriginX = 48;
     ultraGridGroup4.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup4.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup4.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup5.Header.Caption = "复磅";
     ultraGridGroup5.Key = "NewGroup4";
     ultraGridGroup5.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup5.RowLayoutGroupInfo.OriginX = 54;
     ultraGridGroup5.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup5.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup5.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup6.Header.Caption = "卸货";
     ultraGridGroup6.Key = "NewGroup5";
     ultraGridGroup6.RowLayoutGroupInfo.OriginX = 62;
     ultraGridGroup6.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup6.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup6.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup7.Header.Caption = "对方重量";
     ultraGridGroup7.Key = "NewGroup6";
     ultraGridGroup7.RowLayoutGroupInfo.OriginX = 24;
     ultraGridGroup7.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup7.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup7.RowLayoutGroupInfo.SpanY = 3;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2,
     ultraGridGroup3,
     ultraGridGroup4,
     ultraGridGroup5,
     ultraGridGroup6,
     ultraGridGroup7});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     rowLayout1.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
     rowLayoutColumnInfo1,
     rowLayoutColumnInfo2,
     rowLayoutColumnInfo3,
     rowLayoutColumnInfo4,
     rowLayoutColumnInfo5,
     rowLayoutColumnInfo6,
     rowLayoutColumnInfo7,
     rowLayoutColumnInfo8,
     rowLayoutColumnInfo9,
     rowLayoutColumnInfo10,
     rowLayoutColumnInfo11,
     rowLayoutColumnInfo12,
     rowLayoutColumnInfo13,
     rowLayoutColumnInfo14,
     rowLayoutColumnInfo15,
     rowLayoutColumnInfo16,
     rowLayoutColumnInfo17,
     rowLayoutColumnInfo18,
     rowLayoutColumnInfo19,
     rowLayoutColumnInfo20,
     rowLayoutColumnInfo21,
     rowLayoutColumnInfo22,
     rowLayoutColumnInfo23,
     rowLayoutColumnInfo24,
     rowLayoutColumnInfo25,
     rowLayoutColumnInfo26,
     rowLayoutColumnInfo27,
     rowLayoutColumnInfo28,
     rowLayoutColumnInfo29,
     rowLayoutColumnInfo30,
     rowLayoutColumnInfo31,
     rowLayoutColumnInfo32,
     rowLayoutColumnInfo33,
     rowLayoutColumnInfo34,
     rowLayoutColumnInfo35,
     rowLayoutColumnInfo36,
     rowLayoutColumnInfo37,
     rowLayoutColumnInfo38,
     rowLayoutColumnInfo39,
     rowLayoutColumnInfo40,
     rowLayoutColumnInfo41,
     rowLayoutColumnInfo42,
     rowLayoutColumnInfo43,
     rowLayoutColumnInfo44,
     rowLayoutColumnInfo45,
     rowLayoutColumnInfo46,
     rowLayoutColumnInfo47,
     rowLayoutColumnInfo48,
     rowLayoutColumnInfo49,
     rowLayoutColumnInfo50,
     rowLayoutColumnInfo51,
     rowLayoutColumnInfo52,
     rowLayoutColumnInfo53,
     rowLayoutColumnInfo54,
     rowLayoutColumnInfo55,
     rowLayoutColumnInfo56,
     rowLayoutColumnInfo57,
     rowLayoutColumnInfo58,
     rowLayoutColumnInfo59,
     rowLayoutColumnInfo60,
     rowLayoutColumnInfo61,
     rowLayoutColumnInfo62,
     rowLayoutColumnInfo63,
     rowLayoutColumnInfo64,
     rowLayoutColumnInfo65,
     rowLayoutColumnInfo66,
     rowLayoutColumnInfo67,
     rowLayoutColumnInfo68,
     rowLayoutColumnInfo69,
     rowLayoutColumnInfo70,
     rowLayoutColumnInfo71,
     rowLayoutColumnInfo72,
     rowLayoutColumnInfo73,
     rowLayoutColumnInfo74,
     rowLayoutColumnInfo75,
     rowLayoutColumnInfo76,
     rowLayoutColumnInfo77,
     rowLayoutColumnInfo78,
     rowLayoutColumnInfo79,
     rowLayoutColumnInfo80,
     rowLayoutColumnInfo81});
     rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
     rowLayout1});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "合计{0}条";
     summarySettings1.GroupBySummaryValueAppearance = appearance3;
     summarySettings2.DisplayFormat = "重量{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance4;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = "拖动列标题到此,按该列进行分组";
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance11.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance11;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance14;
     appearance17.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance17;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid1.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance18.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance18.TextHAlignAsString = "Center";
     appearance18.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance18;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance19.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance19;
     appearance20.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance20;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance21.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance21.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance21;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1022, 272);
     this.ultraGrid1.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid1_DoubleClickRow);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable3});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn2,
     this.dataColumn7,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn1,
     this.dataColumn40,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn50,
     this.dataColumn3,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn38,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     this.dataColumn57,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn68,
     this.dataColumn69,
     this.dataColumn70,
     this.dataColumn71,
     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.dataTable1.TableName = "计量数据";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "合同号";
     this.dataColumn2.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "车号";
     this.dataColumn7.ColumnName = "FS_CARNO";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "物料名称";
     this.dataColumn9.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "发货单位";
     this.dataColumn10.ColumnName = "FS_SENDERNAME";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "承运单位";
     this.dataColumn12.ColumnName = "FS_TRANSNAME";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "收货单位";
     this.dataColumn13.ColumnName = "FS_RECEIVERNAME";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "对方毛重";
     this.dataColumn15.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "对方皮重";
     this.dataColumn16.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "流向";
     this.dataColumn18.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "毛重重量";
     this.dataColumn19.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "毛重计量点";
     this.dataColumn20.ColumnName = "FS_GROSSPOINT";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "毛重计量员";
     this.dataColumn21.ColumnName = "FS_GROSSPERSON";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "毛重计量时间";
     this.dataColumn22.ColumnName = "FD_GROSSDATETIME";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "毛重计量班次";
     this.dataColumn23.ColumnName = "FS_GROSSSHIFT";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "皮重重量";
     this.dataColumn24.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "皮重计量点";
     this.dataColumn25.ColumnName = "FS_TAREPOINT";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "皮重计量员";
     this.dataColumn26.ColumnName = "FS_TAREPERSON";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "皮重计量时间";
     this.dataColumn27.ColumnName = "FD_TAREDATETIME";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "皮重计量班次";
     this.dataColumn28.ColumnName = "FS_TARESHIFT";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "净重";
     this.dataColumn41.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "取样时间";
     this.dataColumn42.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "取样员";
     this.dataColumn43.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "上传时间";
     this.dataColumn47.ColumnName = "FD_TOCENTERTIME";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "计量重磅日期";
     this.dataColumn48.ColumnName = "FD_ACCOUNTDATE";
     //
     // dataColumn49
     //
     this.dataColumn49.Caption = "上传的日期";
     this.dataColumn49.ColumnName = "FD_TESTIFYDATE";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "对方净重";
     this.dataColumn1.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "供应商代码";
     this.dataColumn40.ColumnName = "FS_GY";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "承运商代码";
     this.dataColumn44.ColumnName = "FS_CY";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "收货方代码";
     this.dataColumn45.ColumnName = "FS_SH";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "流向代码";
     this.dataColumn46.ColumnName = "FS_TYPECODE";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "物料编号";
     this.dataColumn50.ColumnName = "FS_MATERIAL";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "记账日期";
     this.dataColumn52.ColumnName = "FS_JZDATE";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "外协标志";
     this.dataColumn53.ColumnName = "FS_WXPAYFLAG";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "取样点";
     this.dataColumn31.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "卸车员";
     this.dataColumn32.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "卸车时间";
     this.dataColumn34.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "卸车点";
     this.dataColumn35.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "验收员";
     this.dataColumn36.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "验收时间";
     this.dataColumn38.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "验收点";
     this.dataColumn54.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "结算单号";
     this.dataColumn55.ColumnName = "FS_JSDH";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "财务确认";
     this.dataColumn56.ColumnName = "FS_CWQR";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "应扣量";
     this.dataColumn58.ColumnName = "FS_YKL";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "应扣比例";
     this.dataColumn59.ColumnName = "FS_YKBL";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "扣后净重";
     this.dataColumn60.ColumnName = "FS_KHJZ";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "收货地点";
     this.dataColumn61.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn62
     //
     this.dataColumn62.Caption = "发货地点";
     this.dataColumn62.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "磅房启用状态";
     this.dataColumn57.ColumnName = "FS_DATASTATE";
     //
     // dataColumn63
     //
     this.dataColumn63.Caption = "炉号";
     this.dataColumn63.ColumnName = "FS_STOVENO";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "供应单位代码";
     this.dataColumn64.ColumnName = "FS_PROVIDER";
     //
     // dataColumn65
     //
     this.dataColumn65.Caption = "供应单位";
     this.dataColumn65.ColumnName = "FS_PROVIDERNAME";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "收货备注";
     this.dataColumn66.ColumnName = "FS_BZ";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "录入状态";
     this.dataColumn67.ColumnName = "FS_MEMO";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "复磅确认员";
     this.dataColumn68.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "复磅确认点";
     this.dataColumn69.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "复磅确认时间";
     this.dataColumn70.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "复磅标记";
     this.dataColumn71.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "验收确认";
     this.dataColumn72.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "卸货确认";
     this.dataColumn73.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "取样确认";
     this.dataColumn74.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "结算日期";
     this.dataColumn75.ColumnName = "FS_CREATEJSRQ";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "矿石单价(元)";
     this.dataColumn76.ColumnName = "FN_KSDJ";
     //
     // dataColumn77
     //
     this.dataColumn77.Caption = "发货日期";
     this.dataColumn77.ColumnName = "FD_FHRQ";
     //
     // dataColumn78
     //
     this.dataColumn78.Caption = "运费单价";
     this.dataColumn78.ColumnName = "FN_YFDJ";
     //
     // dataColumn79
     //
     this.dataColumn79.Caption = "超额途耗";
     this.dataColumn79.ColumnName = "FN_CETH";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "实际途耗";
     this.dataColumn80.ColumnName = "FN_SJTH";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "扣途耗";
     this.dataColumn81.ColumnName = "FN_KTH";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "应付金额";
     this.dataColumn82.ColumnName = "FN_YFJE";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "发货净重";
     this.dataColumn83.ColumnName = "FN_FHJZ";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "实付金额";
     this.dataColumn84.ColumnName = "FN_SFJE";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "二次计量时间";
     this.dataColumn85.ColumnName = "FD_ECJLSJ";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "车证卡号";
     this.dataColumn86.ColumnName = "FS_CARDNUMBER";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn8,
     this.dataColumn11,
     this.dataColumn14,
     this.dataColumn17,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn33,
     this.dataColumn37,
     this.dataColumn39});
     this.dataTable2.TableName = "计量图片";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FB_IMAGE1";
     this.dataColumn4.DataType = typeof(byte[]);
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FB_IMAGE2";
     this.dataColumn5.DataType = typeof(byte[]);
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FB_IMAGE3";
     this.dataColumn6.DataType = typeof(byte[]);
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FB_IMAGE4";
     this.dataColumn8.DataType = typeof(byte[]);
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FB_IMAGE5";
     this.dataColumn11.DataType = typeof(byte[]);
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FS_CURVEIMAGEONE";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FB_IMAGE7";
     this.dataColumn17.DataType = typeof(byte[]);
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FB_IMAGE8";
     this.dataColumn29.DataType = typeof(byte[]);
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FB_IMAGE9";
     this.dataColumn30.DataType = typeof(byte[]);
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FB_IMAGE10";
     this.dataColumn33.DataType = typeof(byte[]);
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FB_IMAGE11";
     this.dataColumn37.DataType = typeof(byte[]);
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FS_CURVEIMAGETWO";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn51});
     this.dataTable3.TableName = "计量点编号";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_POINTCODE";
     //
     // ultraGroupBox3
     //
     appearance9.BackColor = System.Drawing.Color.White;
     appearance9.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGroupBox3.Appearance = appearance9;
     this.ultraGroupBox3.Controls.Add(this.ultTPPic);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox3, null);
     this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(1028, 342);
     this.ultraGroupBox3.TabIndex = 0;
     this.ultraGroupBox3.Text = "计量图片";
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultTPPic
     //
     appearance10.BackColor = System.Drawing.Color.White;
     appearance10.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance10.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultTPPic.Appearance = appearance10;
     this.coreBind.SetDatabasecommand(this.ultTPPic, null);
     this.ultTPPic.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultTPPic.LargeTileOrientation = Infragistics.Win.Misc.TileOrientation.Horizontal;
     this.ultTPPic.LargeTilePosition = Infragistics.Win.Misc.LargeTilePosition.Right;
     this.ultTPPic.Location = new System.Drawing.Point(3, 18);
     this.ultTPPic.Name = "ultTPPic";
     this.ultTPPic.NormalModeDimensions = new System.Drawing.Size(4, 3);
     this.ultTPPic.Size = new System.Drawing.Size(1022, 321);
     this.ultTPPic.StyleLibraryName = "Offic2007";
     this.ultTPPic.StyleSetName = "Offic2007";
     this.ultTPPic.TabIndex = 0;
     this.ultTPPic.Tiles.Add(this.ultraTile1);
     this.ultTPPic.Tiles.Add(this.ultraTile2);
     this.ultTPPic.Tiles.Add(this.ultraTile3);
     this.ultTPPic.Tiles.Add(this.ultraTile4);
     this.ultTPPic.Tiles.Add(this.ultraTile5);
     this.ultTPPic.Tiles.Add(this.ultraTile6);
     this.ultTPPic.Tiles.Add(this.ultraTile7);
     this.ultTPPic.Tiles.Add(this.ultraTile8);
     this.ultTPPic.Tiles.Add(this.ultraTile9);
     this.ultTPPic.Tiles.Add(this.ultraTile10);
     this.ultTPPic.Tiles.Add(this.ultraTile11);
     this.ultTPPic.Tiles.Add(this.ultraTile12);
     appearance7.AlphaLevel = ((short)(214));
     appearance7.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance7.BackColor2 = System.Drawing.SystemColors.Desktop;
     appearance7.BackColorAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
     appearance7.BorderColor3DBase = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance7.ForeColorDisabled = System.Drawing.Color.Transparent;
     this.ultTPPic.TileSettings.Appearance = appearance7;
     appearance8.AlphaLevel = ((short)(253));
     appearance8.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance8.BackColor2 = System.Drawing.SystemColors.Highlight;
     appearance8.BackColorAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
     appearance8.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Centered;
     appearance8.ImageHAlign = Infragistics.Win.HAlign.Center;
     appearance8.ImageVAlign = Infragistics.Win.VAlign.Middle;
     this.ultTPPic.TileSettings.HeaderAppearance = appearance8;
     this.ultTPPic.TileSettings.HeaderPosition = Infragistics.Win.Misc.TileHeaderPosition.Top;
     this.coreBind.SetVerification(this.ultTPPic, null);
     //
     // ultraTile1
     //
     this.ultraTile1.Caption = "图像1";
     this.ultraTile1.Control = this.ulpic1;
     this.ultraTile1.Controls.Add(this.ulpic1);
     this.coreBind.SetDatabasecommand(this.ultraTile1, null);
     this.ultraTile1.Name = "ultraTile1";
     this.ultraTile1.PositionInNormalMode = new System.Drawing.Point(0, 0);
     appearance12.BackColor = System.Drawing.Color.White;
     appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile1.Settings.Appearance = appearance12;
     appearance13.BackColor = System.Drawing.Color.White;
     appearance13.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance13.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile1.Settings.HeaderAppearance = appearance13;
     this.ultraTile1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraTile1, null);
     //
     // ulpic1
     //
     this.ulpic1.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic1, null);
     this.ulpic1.Location = new System.Drawing.Point(0, 18);
     this.ulpic1.Name = "ulpic1";
     this.ulpic1.Size = new System.Drawing.Size(238, 82);
     this.ulpic1.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic1, null);
     //
     // ultraTile2
     //
     this.ultraTile2.Caption = "图像2";
     this.ultraTile2.Control = this.ulpic2;
     this.ultraTile2.Controls.Add(this.ulpic2);
     this.coreBind.SetDatabasecommand(this.ultraTile2, null);
     this.ultraTile2.Name = "ultraTile2";
     this.ultraTile2.PositionInNormalMode = new System.Drawing.Point(1, 0);
     this.ultraTile2.Settings.Appearance = appearance12;
     this.ultraTile2.Settings.HeaderAppearance = appearance13;
     this.ultraTile2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraTile2, null);
     //
     // ulpic2
     //
     this.ulpic2.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic2, null);
     this.ulpic2.Location = new System.Drawing.Point(0, 18);
     this.ulpic2.Name = "ulpic2";
     this.ulpic2.Size = new System.Drawing.Size(238, 82);
     this.ulpic2.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic2, null);
     //
     // ultraTile3
     //
     this.ultraTile3.Caption = "图像3";
     this.ultraTile3.Control = this.ulpic3;
     this.ultraTile3.Controls.Add(this.ulpic3);
     this.coreBind.SetDatabasecommand(this.ultraTile3, null);
     this.ultraTile3.Name = "ultraTile3";
     this.ultraTile3.PositionInNormalMode = new System.Drawing.Point(2, 0);
     this.ultraTile3.Settings.Appearance = appearance12;
     this.ultraTile3.Settings.HeaderAppearance = appearance13;
     this.ultraTile3.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraTile3, null);
     //
     // ulpic3
     //
     this.ulpic3.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic3, null);
     this.ulpic3.Location = new System.Drawing.Point(0, 18);
     this.ulpic3.Name = "ulpic3";
     this.ulpic3.Size = new System.Drawing.Size(238, 82);
     this.ulpic3.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic3, null);
     //
     // ultraTile4
     //
     this.ultraTile4.Caption = "图像4";
     this.ultraTile4.Control = this.ulpic4;
     this.ultraTile4.Controls.Add(this.ulpic4);
     this.coreBind.SetDatabasecommand(this.ultraTile4, null);
     this.ultraTile4.Name = "ultraTile4";
     this.ultraTile4.PositionInNormalMode = new System.Drawing.Point(3, 0);
     this.ultraTile4.Settings.Appearance = appearance12;
     this.ultraTile4.Settings.HeaderAppearance = appearance13;
     this.ultraTile4.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraTile4, null);
     //
     // ulpic4
     //
     this.ulpic4.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic4, null);
     this.ulpic4.Location = new System.Drawing.Point(0, 18);
     this.ulpic4.Name = "ulpic4";
     this.ulpic4.Size = new System.Drawing.Size(238, 82);
     this.ulpic4.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic4, null);
     //
     // ultraTile5
     //
     this.ultraTile5.Caption = "图像5";
     this.ultraTile5.Control = this.ulpic5;
     this.ultraTile5.Controls.Add(this.ulpic5);
     this.coreBind.SetDatabasecommand(this.ultraTile5, null);
     this.ultraTile5.Name = "ultraTile5";
     this.ultraTile5.PositionInNormalMode = new System.Drawing.Point(0, 1);
     this.ultraTile5.Settings.Appearance = appearance12;
     this.ultraTile5.Settings.HeaderAppearance = appearance13;
     this.ultraTile5.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraTile5, null);
     //
     // ulpic5
     //
     this.ulpic5.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic5, null);
     this.ulpic5.Location = new System.Drawing.Point(0, 18);
     this.ulpic5.Name = "ulpic5";
     this.ulpic5.Size = new System.Drawing.Size(238, 82);
     this.ulpic5.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic5, null);
     //
     // ultraTile6
     //
     this.ultraTile6.Caption = "一次计量动态曲线图数据";
     this.ultraTile6.Control = this.ultraChart11;
     this.ultraTile6.Controls.Add(this.ultraChart11);
     this.coreBind.SetDatabasecommand(this.ultraTile6, null);
     this.ultraTile6.Name = "ultraTile6";
     this.ultraTile6.PositionInNormalMode = new System.Drawing.Point(1, 1);
     this.ultraTile6.Settings.Appearance = appearance12;
     this.ultraTile6.Settings.HeaderAppearance = appearance13;
     this.ultraTile6.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraTile6, 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.ultraChart11.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart11
     //
     this.ultraChart11.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.ultraChart11.Axis.PE = paintElement1;
     this.ultraChart11.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X.Labels.Visible = false;
     this.ultraChart11.Axis.X.LineThickness = 1;
     this.ultraChart11.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart11.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart11.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.X.Visible = false;
     this.ultraChart11.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X2.Labels.Visible = false;
     this.ultraChart11.Axis.X2.LineThickness = 1;
     this.ultraChart11.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart11.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.X2.Visible = false;
     this.ultraChart11.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart11.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y.LineThickness = 1;
     this.ultraChart11.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Y.TickmarkInterval = 100;
     this.ultraChart11.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Y.Visible = true;
     this.ultraChart11.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart11.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y2.Labels.Visible = false;
     this.ultraChart11.Axis.Y2.LineThickness = 1;
     this.ultraChart11.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Y2.TickmarkInterval = 100;
     this.ultraChart11.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Y2.Visible = false;
     this.ultraChart11.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z.Labels.Visible = false;
     this.ultraChart11.Axis.Z.LineThickness = 1;
     this.ultraChart11.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Z.Visible = false;
     this.ultraChart11.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z2.Labels.Visible = false;
     this.ultraChart11.Axis.Z2.LineThickness = 1;
     this.ultraChart11.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Z2.Visible = false;
     this.ultraChart11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart11.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart11.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart11.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart11.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     this.coreBind.SetDatabasecommand(this.ultraChart11, null);
     this.ultraChart11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart11.Effects.Effects.Add(gradientEffect1);
     this.ultraChart11.Location = new System.Drawing.Point(0, 18);
     this.ultraChart11.Name = "ultraChart11";
     this.ultraChart11.Size = new System.Drawing.Size(238, 82);
     this.ultraChart11.TabIndex = 5;
     this.ultraChart11.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart11, null);
     //
     // ultraTile7
     //
     this.ultraTile7.Caption = "图像7";
     this.ultraTile7.Control = this.ulpic7;
     this.ultraTile7.Controls.Add(this.ulpic7);
     this.coreBind.SetDatabasecommand(this.ultraTile7, null);
     this.ultraTile7.Name = "ultraTile7";
     this.ultraTile7.PositionInNormalMode = new System.Drawing.Point(2, 1);
     this.ultraTile7.Settings.Appearance = appearance12;
     this.ultraTile7.Settings.HeaderAppearance = appearance13;
     this.ultraTile7.TabIndex = 6;
     this.coreBind.SetVerification(this.ultraTile7, null);
     //
     // ulpic7
     //
     this.ulpic7.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic7, null);
     this.ulpic7.Location = new System.Drawing.Point(0, 18);
     this.ulpic7.Name = "ulpic7";
     this.ulpic7.Size = new System.Drawing.Size(238, 82);
     this.ulpic7.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic7, null);
     //
     // ultraTile8
     //
     this.ultraTile8.Caption = "图像8";
     this.ultraTile8.Control = this.ulpic8;
     this.ultraTile8.Controls.Add(this.ulpic8);
     this.coreBind.SetDatabasecommand(this.ultraTile8, null);
     this.ultraTile8.Name = "ultraTile8";
     this.ultraTile8.PositionInNormalMode = new System.Drawing.Point(3, 1);
     this.ultraTile8.Settings.Appearance = appearance12;
     this.ultraTile8.Settings.HeaderAppearance = appearance13;
     this.ultraTile8.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraTile8, null);
     //
     // ulpic8
     //
     this.ulpic8.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic8, null);
     this.ulpic8.Location = new System.Drawing.Point(0, 18);
     this.ulpic8.Name = "ulpic8";
     this.ulpic8.Size = new System.Drawing.Size(238, 82);
     this.ulpic8.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic8, null);
     //
     // ultraTile9
     //
     this.ultraTile9.Caption = "图像9";
     this.ultraTile9.Control = this.ulpic9;
     this.ultraTile9.Controls.Add(this.ulpic9);
     this.coreBind.SetDatabasecommand(this.ultraTile9, null);
     this.ultraTile9.Name = "ultraTile9";
     this.ultraTile9.PositionInNormalMode = new System.Drawing.Point(0, 2);
     this.ultraTile9.Settings.Appearance = appearance12;
     this.ultraTile9.Settings.HeaderAppearance = appearance13;
     this.ultraTile9.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraTile9, null);
     //
     // ulpic9
     //
     this.ulpic9.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic9, null);
     this.ulpic9.Location = new System.Drawing.Point(0, 18);
     this.ulpic9.Name = "ulpic9";
     this.ulpic9.Size = new System.Drawing.Size(238, 82);
     this.ulpic9.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic9, null);
     //
     // ultraTile10
     //
     this.ultraTile10.Caption = "图像10";
     this.ultraTile10.Control = this.ulpic10;
     this.ultraTile10.Controls.Add(this.ulpic10);
     this.coreBind.SetDatabasecommand(this.ultraTile10, null);
     this.ultraTile10.Name = "ultraTile10";
     this.ultraTile10.PositionInNormalMode = new System.Drawing.Point(1, 2);
     this.ultraTile10.Settings.Appearance = appearance12;
     this.ultraTile10.Settings.HeaderAppearance = appearance13;
     this.ultraTile10.TabIndex = 9;
     this.coreBind.SetVerification(this.ultraTile10, null);
     //
     // ulpic10
     //
     this.ulpic10.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic10, null);
     this.ulpic10.Location = new System.Drawing.Point(0, 18);
     this.ulpic10.Name = "ulpic10";
     this.ulpic10.Size = new System.Drawing.Size(238, 82);
     this.ulpic10.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic10, null);
     //
     // ultraTile11
     //
     this.ultraTile11.Caption = "图像11";
     this.ultraTile11.Control = this.ulpic11;
     this.ultraTile11.Controls.Add(this.ulpic11);
     this.coreBind.SetDatabasecommand(this.ultraTile11, null);
     this.ultraTile11.Name = "ultraTile11";
     this.ultraTile11.PositionInNormalMode = new System.Drawing.Point(2, 2);
     this.ultraTile11.Settings.Appearance = appearance12;
     this.ultraTile11.Settings.HeaderAppearance = appearance13;
     this.ultraTile11.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraTile11, null);
     //
     // ulpic11
     //
     this.ulpic11.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic11, null);
     this.ulpic11.Location = new System.Drawing.Point(0, 18);
     this.ulpic11.Name = "ulpic11";
     this.ulpic11.Size = new System.Drawing.Size(238, 82);
     this.ulpic11.TabIndex = 2;
     this.coreBind.SetVerification(this.ulpic11, null);
     //
     // ultraTile12
     //
     this.ultraTile12.Caption = "二次计量动态曲线图数据";
     this.ultraTile12.Control = this.ultraChart12;
     this.ultraTile12.Controls.Add(this.ultraChart12);
     this.coreBind.SetDatabasecommand(this.ultraTile12, null);
     this.ultraTile12.Name = "ultraTile12";
     this.ultraTile12.PositionInNormalMode = new System.Drawing.Point(3, 2);
     this.ultraTile12.Settings.Appearance = appearance12;
     this.ultraTile12.Settings.HeaderAppearance = appearance13;
     this.ultraTile12.TabIndex = 11;
     this.coreBind.SetVerification(this.ultraTile12, 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.ultraChart12.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart12
     //
     this.ultraChart12.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     paintElement2.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
     paintElement2.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     this.ultraChart12.Axis.PE = paintElement2;
     this.ultraChart12.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X.Labels.Visible = false;
     this.ultraChart12.Axis.X.LineThickness = 1;
     this.ultraChart12.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart12.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart12.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.X.Visible = false;
     this.ultraChart12.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X2.Labels.Visible = false;
     this.ultraChart12.Axis.X2.LineThickness = 1;
     this.ultraChart12.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart12.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.X2.Visible = false;
     this.ultraChart12.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart12.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y.LineThickness = 1;
     this.ultraChart12.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Y.TickmarkInterval = 100;
     this.ultraChart12.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Y.Visible = true;
     this.ultraChart12.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart12.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y2.Labels.Visible = false;
     this.ultraChart12.Axis.Y2.LineThickness = 1;
     this.ultraChart12.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Y2.TickmarkInterval = 100;
     this.ultraChart12.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Y2.Visible = false;
     this.ultraChart12.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z.Labels.Visible = false;
     this.ultraChart12.Axis.Z.LineThickness = 1;
     this.ultraChart12.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Z.Visible = false;
     this.ultraChart12.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z2.Labels.Visible = false;
     this.ultraChart12.Axis.Z2.LineThickness = 1;
     this.ultraChart12.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Z2.Visible = false;
     this.ultraChart12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart12.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart12.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart12.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart12.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     this.coreBind.SetDatabasecommand(this.ultraChart12, null);
     this.ultraChart12.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart12.Effects.Effects.Add(gradientEffect2);
     this.ultraChart12.Location = new System.Drawing.Point(0, 18);
     this.ultraChart12.Name = "ultraChart12";
     this.ultraChart12.Size = new System.Drawing.Size(238, 82);
     this.ultraChart12.TabIndex = 4;
     this.ultraChart12.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart12, null);
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "结算单位";
     this.dataColumn87.ColumnName = "FS_SETTLEMENTNAME";
     //
     // MeasureDataQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1028, 666);
     this.Controls.Add(this.MeasureDataQuery_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "MeasureDataQuery";
     this.Text = "汽车衡计量数据查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.MeasureDataQuery_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel1_Fill_Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.MeasureDataQuery_Fill_Panel.ResumeLayout(false);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).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.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultTPPic)).EndInit();
     this.ultTPPic.ResumeLayout(false);
     this.ultraTile1.ResumeLayout(false);
     this.ultraTile2.ResumeLayout(false);
     this.ultraTile3.ResumeLayout(false);
     this.ultraTile4.ResumeLayout(false);
     this.ultraTile5.ResumeLayout(false);
     this.ultraTile6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).EndInit();
     this.ultraTile7.ResumeLayout(false);
     this.ultraTile8.ResumeLayout(false);
     this.ultraTile9.ResumeLayout(false);
     this.ultraTile10.ResumeLayout(false);
     this.ultraTile11.ResumeLayout(false);
     this.ultraTile12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart12)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 14
0
        /// <summary>
        /// Chart를 초기화한다.
        /// </summary>
        /// <param name="ctlChart">Infragistics.Win.UltraWinChart.UltraChart object </param>
        public static void InitChart(Infragistics.Win.UltraWinChart.UltraChart ctlChart)
        {
            Color[] ChartColors;

            ChartColors = new Color[] { Color.Blue,
                                        Color.BlueViolet,
                                        Color.Brown,
                                        Color.BurlyWood,
                                        Color.CadetBlue,
                                        Color.Chartreuse,
                                        Color.Chocolate,
                                        Color.Coral,
                                        Color.CornflowerBlue,
                                        Color.Crimson,
                                        Color.Cyan,
                                        Color.DarkBlue,
                                        Color.DarkCyan,
                                        Color.DarkGoldenrod,
                                        Color.DarkGray,
                                        Color.DarkGreen,
                                        Color.DarkKhaki,
                                        Color.DarkMagenta,
                                        Color.DarkOliveGreen,
                                        Color.DarkOrange,
                                        Color.DarkOrchid,
                                        Color.DarkRed,
                                        Color.DarkSalmon,
                                        Color.DarkSeaGreen,
                                        Color.DarkSlateBlue,
                                        Color.DarkSlateGray,
                                        Color.DarkTurquoise,
                                        Color.DarkViolet,
                                        Color.DeepPink,
                                        Color.DeepSkyBlue,
                                        Color.DimGray,
                                        Color.DodgerBlue,
                                        Color.Firebrick,
                                        Color.ForestGreen,
                                        Color.Gainsboro,
                                        Color.Gold,
                                        Color.Goldenrod,
                                        Color.Gray,
                                        Color.Green,
                                        Color.HotPink,
                                        Color.IndianRed,
                                        Color.Aqua,
                                        Color.LightBlue,
                                        Color.LightCoral,
                                        Color.LightGray,
                                        Color.LightGreen,
                                        Color.LightPink,
                                        Color.LightSalmon,
                                        Color.LightSeaGreen,
                                        Color.LightSkyBlue,
                                        Color.LightSlateGray,
                                        Color.LightSteelBlue,
                                        Color.Lime,
                                        Color.LimeGreen,
                                        Color.Magenta,
                                        Color.Maroon,
                                        Color.MediumAquamarine,
                                        Color.MediumBlue,
                                        Color.MediumOrchid,
                                        Color.MediumPurple,
                                        Color.MediumSeaGreen,
                                        Color.MediumSlateBlue,
                                        Color.MediumSpringGreen,
                                        Color.MediumTurquoise,
                                        Color.MediumVioletRed,
                                        Color.MidnightBlue,
                                        Color.Navy,
                                        Color.Olive,
                                        Color.OliveDrab,
                                        Color.Orange,
                                        Color.OrangeRed,
                                        Color.Orchid,
                                        Color.PaleGoldenrod,
                                        Color.PaleGreen,
                                        Color.PaleTurquoise,
                                        Color.PaleVioletRed,
                                        Color.PeachPuff,
                                        Color.Peru,
                                        Color.Pink,
                                        Color.Plum,
                                        Color.PowderBlue,
                                        Color.Purple,
                                        Color.Red,
                                        Color.RosyBrown,
                                        Color.RoyalBlue,
                                        Color.SaddleBrown,
                                        Color.Salmon,
                                        Color.SeaGreen,
                                        Color.SeaShell,
                                        Color.Sienna,
                                        Color.Silver,
                                        Color.SkyBlue,
                                        Color.SlateBlue,
                                        Color.SlateGray,
                                        Color.Snow,
                                        Color.SpringGreen,
                                        Color.SteelBlue,
                                        Color.Tan,
                                        Color.Teal,
                                        Color.Thistle,
                                        Color.Tomato,
                                        Color.Transparent,
                                        Color.Turquoise,
                                        Color.Violet,
                                        Color.Wheat,
                                        Color.Yellow,
                                        Color.YellowGreen };


            // Init UntraChartChart.
            ctlChart.Series.Clear();
            ctlChart.TitleBottom.Text = "";
            ctlChart.TitleLeft.Text   = "";
            ctlChart.TitleRight.Text  = "";
            ctlChart.TitleTop.Text    = "";

            ctlChart.ColorModel.ModelStyle    = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
            ctlChart.ColorModel.CustomPalette = ChartColors;
        }