frmHotDeliveryActualQueryCheck.Designer.cs 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574
  1. namespace StorageMeterSystem
  2. {
  3. partial class frmHotDeliveryActualQueryCheck
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  30. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnQuery");
  31. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnQuery");
  32. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  33. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmHotDeliveryActualQueryCheck));
  34. Infragistics.Win.UltraWinToolbars.LabelTool labelTool9 = new Infragistics.Win.UltraWinToolbars.LabelTool("时间");
  35. Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool4");
  36. Infragistics.Win.UltraWinToolbars.LabelTool labelTool10 = new Infragistics.Win.UltraWinToolbars.LabelTool("-");
  37. Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool5");
  38. Infragistics.Win.UltraWinToolbars.LabelTool labelTool5 = new Infragistics.Win.UltraWinToolbars.LabelTool("计量点");
  39. Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
  40. Infragistics.Win.UltraWinToolbars.LabelTool labelTool6 = new Infragistics.Win.UltraWinToolbars.LabelTool("预报状态");
  41. Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
  42. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCancel");
  43. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnUnCancel");
  45. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPrintOne");
  47. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPrintSome");
  49. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("批号");
  51. Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
  52. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnInsert");
  53. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnUpdate");
  55. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCheck");
  57. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCheckOut");
  59. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量实绩", -1);
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualNo");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("predictionNo");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("noticeNo");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("batchNo");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("memo");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManNo");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManName");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateManNo");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateManName");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteManNo");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteManName");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productNo");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productName");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradeNo");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradeName");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("standardNo");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("standardName");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("packageNo");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("blockNum");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productDate");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sealNo");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bucketNo");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualWeight");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("referWeight");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareWeight");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossWeight");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("combinPackageNo");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weightType");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkFlag");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netWeight");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNoMes");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNoSeq");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNo");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterGroup");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterClass");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("theoreticalWeight");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specNo");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specName");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("acDiffWeight");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNCK", 0);
  106. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "blockNum", 20, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "blockNum", 20, true);
  107. Infragistics.Win.Appearance appearance137 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "netWeight", 33, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "netWeight", 33, true);
  109. Infragistics.Win.Appearance appearance138 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "grossWeight", 27, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "grossWeight", 27, true);
  111. Infragistics.Win.Appearance appearance139 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "tareWeight", 26, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "tareWeight", 26, true);
  113. Infragistics.Win.Appearance appearance140 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  121. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  122. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
  132. Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
  136. Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
  137. Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
  138. Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.Appearance appearance123 = new Infragistics.Win.Appearance();
  152. Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
  153. Infragistics.Win.Appearance appearance125 = new Infragistics.Win.Appearance();
  154. Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
  155. Infragistics.Win.Appearance appearance127 = new Infragistics.Win.Appearance();
  156. Infragistics.Win.Appearance appearance128 = new Infragistics.Win.Appearance();
  157. Infragistics.Win.Appearance appearance129 = new Infragistics.Win.Appearance();
  158. Infragistics.Win.Appearance appearance130 = new Infragistics.Win.Appearance();
  159. Infragistics.Win.Appearance appearance131 = new Infragistics.Win.Appearance();
  160. Infragistics.Win.Appearance appearance132 = new Infragistics.Win.Appearance();
  161. Infragistics.Win.Appearance appearance133 = new Infragistics.Win.Appearance();
  162. Infragistics.Win.Appearance appearance134 = new Infragistics.Win.Appearance();
  163. Infragistics.Win.Appearance appearance135 = new Infragistics.Win.Appearance();
  164. Infragistics.Win.Appearance appearance136 = new Infragistics.Win.Appearance();
  165. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  166. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  167. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  168. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  169. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  170. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  171. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  172. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  173. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  174. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  175. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  176. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  177. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  178. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  179. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  180. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  181. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  182. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  183. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  184. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  185. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  186. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  188. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  189. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  190. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  191. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  192. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  193. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  195. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  196. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  197. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  198. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  199. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  200. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  201. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  202. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  203. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  204. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  205. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  206. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  207. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  218. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  219. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  220. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  221. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  222. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  223. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  224. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  225. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  226. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  227. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  228. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  229. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  230. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  231. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  232. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  233. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  234. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  235. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  236. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  237. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  238. this.panel1 = new System.Windows.Forms.Panel();
  239. this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
  240. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  241. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  242. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  243. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  244. this.dataSet2 = new System.Data.DataSet();
  245. this.dataTable1 = new System.Data.DataTable();
  246. this.dataColumn1 = new System.Data.DataColumn();
  247. this.dataColumn2 = new System.Data.DataColumn();
  248. this.dataColumn3 = new System.Data.DataColumn();
  249. this.dataColumn9 = new System.Data.DataColumn();
  250. this.dataColumn4 = new System.Data.DataColumn();
  251. this.dataColumn5 = new System.Data.DataColumn();
  252. this.dataColumn6 = new System.Data.DataColumn();
  253. this.dataColumn7 = new System.Data.DataColumn();
  254. this.dataColumn8 = new System.Data.DataColumn();
  255. this.dataColumn10 = new System.Data.DataColumn();
  256. this.dataColumn11 = new System.Data.DataColumn();
  257. this.dataColumn12 = new System.Data.DataColumn();
  258. this.dataColumn13 = new System.Data.DataColumn();
  259. this.dataColumn14 = new System.Data.DataColumn();
  260. this.dataColumn15 = new System.Data.DataColumn();
  261. this.dataColumn16 = new System.Data.DataColumn();
  262. this.dataColumn17 = new System.Data.DataColumn();
  263. this.dataColumn18 = new System.Data.DataColumn();
  264. this.dataColumn19 = new System.Data.DataColumn();
  265. this.dataColumn20 = new System.Data.DataColumn();
  266. this.dataColumn21 = new System.Data.DataColumn();
  267. this.dataColumn22 = new System.Data.DataColumn();
  268. this.dataColumn23 = new System.Data.DataColumn();
  269. this.dataColumn24 = new System.Data.DataColumn();
  270. this.dataColumn25 = new System.Data.DataColumn();
  271. this.dataColumn26 = new System.Data.DataColumn();
  272. this.dataColumn27 = new System.Data.DataColumn();
  273. this.dataColumn28 = new System.Data.DataColumn();
  274. this.dataColumn29 = new System.Data.DataColumn();
  275. this.dataColumn30 = new System.Data.DataColumn();
  276. this.dataColumn31 = new System.Data.DataColumn();
  277. this.dataColumn32 = new System.Data.DataColumn();
  278. this.dataColumn33 = new System.Data.DataColumn();
  279. this.dataColumn34 = new System.Data.DataColumn();
  280. this.dataColumn35 = new System.Data.DataColumn();
  281. this.dataColumn36 = new System.Data.DataColumn();
  282. this.dataColumn37 = new System.Data.DataColumn();
  283. this.dataColumn38 = new System.Data.DataColumn();
  284. this.dataColumn39 = new System.Data.DataColumn();
  285. this.dataColumn40 = new System.Data.DataColumn();
  286. this.dataColumn41 = new System.Data.DataColumn();
  287. this.dataColumn42 = new System.Data.DataColumn();
  288. this.dataColumn43 = new System.Data.DataColumn();
  289. this.dtEndTime = new System.Windows.Forms.DateTimePicker();
  290. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  291. this.panel2 = new System.Windows.Forms.Panel();
  292. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  293. this.panel2Query = new System.Windows.Forms.Panel();
  294. this.cbAll = new System.Windows.Forms.CheckBox();
  295. this.ultraGridScale = new Infragistics.Win.UltraWinGrid.UltraGrid();
  296. this.ultraGroupBoxEdit = new Infragistics.Win.Misc.UltraGroupBox();
  297. this.cmbMeterGroupUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
  298. this.cmbMeterClassUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
  299. this.label10 = new System.Windows.Forms.Label();
  300. this.tbMemo = new System.Windows.Forms.TextBox();
  301. this.label19 = new System.Windows.Forms.Label();
  302. this.numReferWeight = new System.Windows.Forms.NumericUpDown();
  303. this.numTareWeight = new System.Windows.Forms.NumericUpDown();
  304. this.numNetWeight = new System.Windows.Forms.NumericUpDown();
  305. this.tbPredictionNo = new System.Windows.Forms.TextBox();
  306. this.label18 = new System.Windows.Forms.Label();
  307. this.numCollectWeight = new System.Windows.Forms.NumericUpDown();
  308. this.label17 = new System.Windows.Forms.Label();
  309. this.label16 = new System.Windows.Forms.Label();
  310. this.label15 = new System.Windows.Forms.Label();
  311. this.label14 = new System.Windows.Forms.Label();
  312. this.label13 = new System.Windows.Forms.Label();
  313. this.tbBlockNumUp = new System.Windows.Forms.TextBox();
  314. this.label12 = new System.Windows.Forms.Label();
  315. this.tbPackageNoUp = new System.Windows.Forms.TextBox();
  316. this.label11 = new System.Windows.Forms.Label();
  317. this.tbTheoreticalWeightUp = new System.Windows.Forms.TextBox();
  318. this.label9 = new System.Windows.Forms.Label();
  319. this.cmbGradeNameUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
  320. this.label8 = new System.Windows.Forms.Label();
  321. this.cmbSpcNameUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
  322. this.label7 = new System.Windows.Forms.Label();
  323. this.tbHeatNoUp = new System.Windows.Forms.TextBox();
  324. this.label6 = new System.Windows.Forms.Label();
  325. this.cmbPointUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
  326. this.label5 = new System.Windows.Forms.Label();
  327. this.ultraGroupBoxCondition = new Infragistics.Win.Misc.UltraGroupBox();
  328. this.ckFilter = new System.Windows.Forms.CheckBox();
  329. this.cmbCheckState = new System.Windows.Forms.TextBox();
  330. this.label24 = new System.Windows.Forms.Label();
  331. this.cmbMeterGroup = new Infragistics.Win.UltraWinGrid.UltraCombo();
  332. this.cmbGradeName = new Infragistics.Win.UltraWinGrid.UltraCombo();
  333. this.cmbMeterClass = new Infragistics.Win.UltraWinGrid.UltraCombo();
  334. this.label23 = new System.Windows.Forms.Label();
  335. this.label22 = new System.Windows.Forms.Label();
  336. this.cmbSpcName = new Infragistics.Win.UltraWinGrid.UltraCombo();
  337. this.label21 = new System.Windows.Forms.Label();
  338. this.label20 = new System.Windows.Forms.Label();
  339. this.cmbScaleState = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  340. this.dtStartTime = new System.Windows.Forms.DateTimePicker();
  341. this.label4 = new System.Windows.Forms.Label();
  342. this.label3 = new System.Windows.Forms.Label();
  343. this.label2 = new System.Windows.Forms.Label();
  344. this.cmbPoint = new Infragistics.Win.UltraWinGrid.UltraCombo();
  345. this.label1 = new System.Windows.Forms.Label();
  346. this.dataColumn44 = new System.Data.DataColumn();
  347. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  348. this.panel1.SuspendLayout();
  349. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  350. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  351. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  352. this.ultraGroupBox1.SuspendLayout();
  353. this.panel2.SuspendLayout();
  354. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  355. this.ultraGroupBox4.SuspendLayout();
  356. this.panel2Query.SuspendLayout();
  357. ((System.ComponentModel.ISupportInitialize)(this.ultraGridScale)).BeginInit();
  358. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxEdit)).BeginInit();
  359. this.ultraGroupBoxEdit.SuspendLayout();
  360. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroupUp)).BeginInit();
  361. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClassUp)).BeginInit();
  362. ((System.ComponentModel.ISupportInitialize)(this.numReferWeight)).BeginInit();
  363. ((System.ComponentModel.ISupportInitialize)(this.numTareWeight)).BeginInit();
  364. ((System.ComponentModel.ISupportInitialize)(this.numNetWeight)).BeginInit();
  365. ((System.ComponentModel.ISupportInitialize)(this.numCollectWeight)).BeginInit();
  366. ((System.ComponentModel.ISupportInitialize)(this.cmbGradeNameUp)).BeginInit();
  367. ((System.ComponentModel.ISupportInitialize)(this.cmbSpcNameUp)).BeginInit();
  368. ((System.ComponentModel.ISupportInitialize)(this.cmbPointUp)).BeginInit();
  369. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxCondition)).BeginInit();
  370. this.ultraGroupBoxCondition.SuspendLayout();
  371. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroup)).BeginInit();
  372. ((System.ComponentModel.ISupportInitialize)(this.cmbGradeName)).BeginInit();
  373. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClass)).BeginInit();
  374. ((System.ComponentModel.ISupportInitialize)(this.cmbSpcName)).BeginInit();
  375. ((System.ComponentModel.ISupportInitialize)(this.cmbScaleState)).BeginInit();
  376. ((System.ComponentModel.ISupportInitialize)(this.cmbPoint)).BeginInit();
  377. this.SuspendLayout();
  378. //
  379. // ultraToolbarsManager1
  380. //
  381. this.ultraToolbarsManager1.DesignerFlags = 1;
  382. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  383. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  384. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
  385. ultraToolbar1.DockedColumn = 0;
  386. ultraToolbar1.DockedRow = 0;
  387. ultraToolbar1.FloatingLocation = new System.Drawing.Point(616, 345);
  388. ultraToolbar1.FloatingSize = new System.Drawing.Size(1240, 29);
  389. buttonTool5.InstanceProps.IsFirstInGroup = true;
  390. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  391. buttonTool5});
  392. ultraToolbar1.Text = "UltraToolbar1";
  393. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  394. ultraToolbar1});
  395. appearance25.Image = ((object)(resources.GetObject("appearance25.Image")));
  396. buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance25;
  397. buttonTool7.SharedPropsInternal.Caption = "查询";
  398. buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  399. labelTool9.SharedPropsInternal.Caption = "预报时间";
  400. controlContainerTool9.SharedPropsInternal.Caption = "ControlContainerTool4";
  401. controlContainerTool9.SharedPropsInternal.Width = 198;
  402. labelTool10.SharedPropsInternal.Caption = "至";
  403. controlContainerTool10.SharedPropsInternal.Caption = "ControlContainerTool5";
  404. controlContainerTool10.SharedPropsInternal.Width = 200;
  405. labelTool5.SharedPropsInternal.Caption = "计量点";
  406. controlContainerTool5.SharedPropsInternal.Caption = "ControlContainerTool1";
  407. labelTool6.SharedPropsInternal.Caption = "预报状态";
  408. controlContainerTool6.SharedPropsInternal.Caption = "ControlContainerTool2";
  409. controlContainerTool6.SharedPropsInternal.Width = 190;
  410. appearance18.Image = ((object)(resources.GetObject("appearance18.Image")));
  411. buttonTool3.SharedPropsInternal.AppearancesSmall.Appearance = appearance18;
  412. buttonTool3.SharedPropsInternal.Caption = "作废";
  413. buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  414. appearance19.Image = ((object)(resources.GetObject("appearance19.Image")));
  415. buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance19;
  416. buttonTool4.SharedPropsInternal.Caption = "恢复";
  417. buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  418. appearance20.Image = ((object)(resources.GetObject("appearance20.Image")));
  419. buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance20;
  420. buttonTool9.SharedPropsInternal.Caption = "单桶打印";
  421. buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  422. appearance21.Image = ((object)(resources.GetObject("appearance21.Image")));
  423. buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance21;
  424. buttonTool10.SharedPropsInternal.Caption = "打印";
  425. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  426. labelTool2.SharedPropsInternal.Caption = "批号";
  427. controlContainerTool4.SharedPropsInternal.Caption = "ControlContainerTool3";
  428. appearance36.Image = ((object)(resources.GetObject("appearance36.Image")));
  429. buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance36;
  430. buttonTool8.SharedPropsInternal.Caption = "新增";
  431. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  432. appearance37.Image = ((object)(resources.GetObject("appearance37.Image")));
  433. buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance37;
  434. buttonTool12.SharedPropsInternal.Caption = "修改";
  435. buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  436. appearance93.Image = ((object)(resources.GetObject("appearance93.Image")));
  437. buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance93;
  438. buttonTool14.SharedPropsInternal.Caption = "审核";
  439. buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  440. appearance98.Image = ((object)(resources.GetObject("appearance98.Image")));
  441. buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance98;
  442. buttonTool16.SharedPropsInternal.Caption = "反审";
  443. buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  444. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  445. buttonTool7,
  446. labelTool9,
  447. controlContainerTool9,
  448. labelTool10,
  449. controlContainerTool10,
  450. labelTool5,
  451. controlContainerTool5,
  452. labelTool6,
  453. controlContainerTool6,
  454. buttonTool3,
  455. buttonTool4,
  456. buttonTool9,
  457. buttonTool10,
  458. labelTool2,
  459. controlContainerTool4,
  460. buttonTool8,
  461. buttonTool12,
  462. buttonTool14,
  463. buttonTool16});
  464. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  465. //
  466. // panel1
  467. //
  468. this.panel1.Controls.Add(this.panel1_Fill_Panel);
  469. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  470. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  471. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  472. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  473. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  474. this.panel1.Location = new System.Drawing.Point(3, 0);
  475. this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  476. this.panel1.Name = "panel1";
  477. this.panel1.Size = new System.Drawing.Size(1936, 38);
  478. this.panel1.TabIndex = 0;
  479. //
  480. // panel1_Fill_Panel
  481. //
  482. this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  483. this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  484. this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 31);
  485. this.panel1_Fill_Panel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  486. this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
  487. this.panel1_Fill_Panel.Size = new System.Drawing.Size(1936, 7);
  488. this.panel1_Fill_Panel.TabIndex = 0;
  489. //
  490. // _panel1_Toolbars_Dock_Area_Left
  491. //
  492. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  493. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  494. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  495. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  496. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 31);
  497. this._panel1_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  498. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  499. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 7);
  500. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  501. //
  502. // _panel1_Toolbars_Dock_Area_Right
  503. //
  504. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  505. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  506. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  507. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  508. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1936, 31);
  509. this._panel1_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  510. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  511. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 7);
  512. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  513. //
  514. // _panel1_Toolbars_Dock_Area_Top
  515. //
  516. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  517. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  518. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  519. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  520. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  521. this._panel1_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  522. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  523. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1936, 31);
  524. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  525. //
  526. // _panel1_Toolbars_Dock_Area_Bottom
  527. //
  528. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  529. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  530. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  531. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  532. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 38);
  533. this._panel1_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  534. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  535. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1936, 0);
  536. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  537. //
  538. // dataSet2
  539. //
  540. this.dataSet2.DataSetName = "NewDataSet";
  541. this.dataSet2.Locale = new System.Globalization.CultureInfo("zh-CN");
  542. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  543. this.dataTable1});
  544. //
  545. // dataTable1
  546. //
  547. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  548. this.dataColumn1,
  549. this.dataColumn2,
  550. this.dataColumn3,
  551. this.dataColumn9,
  552. this.dataColumn4,
  553. this.dataColumn5,
  554. this.dataColumn6,
  555. this.dataColumn7,
  556. this.dataColumn8,
  557. this.dataColumn10,
  558. this.dataColumn11,
  559. this.dataColumn12,
  560. this.dataColumn13,
  561. this.dataColumn14,
  562. this.dataColumn15,
  563. this.dataColumn16,
  564. this.dataColumn17,
  565. this.dataColumn18,
  566. this.dataColumn19,
  567. this.dataColumn20,
  568. this.dataColumn21,
  569. this.dataColumn22,
  570. this.dataColumn23,
  571. this.dataColumn24,
  572. this.dataColumn25,
  573. this.dataColumn26,
  574. this.dataColumn27,
  575. this.dataColumn28,
  576. this.dataColumn29,
  577. this.dataColumn30,
  578. this.dataColumn31,
  579. this.dataColumn32,
  580. this.dataColumn33,
  581. this.dataColumn34,
  582. this.dataColumn35,
  583. this.dataColumn36,
  584. this.dataColumn37,
  585. this.dataColumn38,
  586. this.dataColumn39,
  587. this.dataColumn40,
  588. this.dataColumn41,
  589. this.dataColumn42,
  590. this.dataColumn43,
  591. this.dataColumn44});
  592. this.dataTable1.TableName = "计量实绩";
  593. //
  594. // dataColumn1
  595. //
  596. this.dataColumn1.Caption = "实绩编号";
  597. this.dataColumn1.ColumnName = "actualNo";
  598. //
  599. // dataColumn2
  600. //
  601. this.dataColumn2.Caption = "预报编号";
  602. this.dataColumn2.ColumnName = "predictionNo";
  603. //
  604. // dataColumn3
  605. //
  606. this.dataColumn3.Caption = "通知单号";
  607. this.dataColumn3.ColumnName = "noticeNo";
  608. //
  609. // dataColumn9
  610. //
  611. this.dataColumn9.Caption = "批号";
  612. this.dataColumn9.ColumnName = "batchNo";
  613. //
  614. // dataColumn4
  615. //
  616. this.dataColumn4.Caption = "备注";
  617. this.dataColumn4.ColumnName = "memo";
  618. //
  619. // dataColumn5
  620. //
  621. this.dataColumn5.Caption = "数据状态";
  622. this.dataColumn5.ColumnName = "valueFlag";
  623. //
  624. // dataColumn6
  625. //
  626. this.dataColumn6.Caption = "创建人编号";
  627. this.dataColumn6.ColumnName = "createManNo";
  628. //
  629. // dataColumn7
  630. //
  631. this.dataColumn7.Caption = "司秤工";
  632. this.dataColumn7.ColumnName = "createManName";
  633. //
  634. // dataColumn8
  635. //
  636. this.dataColumn8.Caption = "过磅时间";
  637. this.dataColumn8.ColumnName = "createTime";
  638. //
  639. // dataColumn10
  640. //
  641. this.dataColumn10.Caption = "修改人编号";
  642. this.dataColumn10.ColumnName = "updateManNo";
  643. //
  644. // dataColumn11
  645. //
  646. this.dataColumn11.Caption = "修改人";
  647. this.dataColumn11.ColumnName = "updateManName";
  648. //
  649. // dataColumn12
  650. //
  651. this.dataColumn12.Caption = "删除人编号";
  652. this.dataColumn12.ColumnName = "deleteManNo";
  653. //
  654. // dataColumn13
  655. //
  656. this.dataColumn13.Caption = "删除人";
  657. this.dataColumn13.ColumnName = "deleteManName";
  658. //
  659. // dataColumn14
  660. //
  661. this.dataColumn14.Caption = "产品编号";
  662. this.dataColumn14.ColumnName = "productNo";
  663. //
  664. // dataColumn15
  665. //
  666. this.dataColumn15.Caption = "产品名称";
  667. this.dataColumn15.ColumnName = "productName";
  668. //
  669. // dataColumn16
  670. //
  671. this.dataColumn16.Caption = "钢号编码";
  672. this.dataColumn16.ColumnName = "gradeNo";
  673. //
  674. // dataColumn17
  675. //
  676. this.dataColumn17.Caption = "钢种";
  677. this.dataColumn17.ColumnName = "gradeName";
  678. //
  679. // dataColumn18
  680. //
  681. this.dataColumn18.Caption = "标准编号";
  682. this.dataColumn18.ColumnName = "standardNo";
  683. //
  684. // dataColumn19
  685. //
  686. this.dataColumn19.Caption = "标准";
  687. this.dataColumn19.ColumnName = "standardName";
  688. //
  689. // dataColumn20
  690. //
  691. this.dataColumn20.Caption = "顺序号";
  692. this.dataColumn20.ColumnName = "packageNo";
  693. //
  694. // dataColumn21
  695. //
  696. this.dataColumn21.Caption = "支数";
  697. this.dataColumn21.ColumnName = "blockNum";
  698. //
  699. // dataColumn22
  700. //
  701. this.dataColumn22.Caption = "生产日期";
  702. this.dataColumn22.ColumnName = "productDate";
  703. //
  704. // dataColumn23
  705. //
  706. this.dataColumn23.Caption = "铅封号";
  707. this.dataColumn23.ColumnName = "sealNo";
  708. //
  709. // dataColumn24
  710. //
  711. this.dataColumn24.Caption = "桶号";
  712. this.dataColumn24.ColumnName = "bucketNo";
  713. //
  714. // dataColumn25
  715. //
  716. this.dataColumn25.Caption = "净重";
  717. this.dataColumn25.ColumnName = "actualWeight";
  718. //
  719. // dataColumn26
  720. //
  721. this.dataColumn26.Caption = "仪表底数";
  722. this.dataColumn26.ColumnName = "referWeight";
  723. //
  724. // dataColumn27
  725. //
  726. this.dataColumn27.Caption = "零点重量";
  727. this.dataColumn27.ColumnName = "tareWeight";
  728. //
  729. // dataColumn28
  730. //
  731. this.dataColumn28.Caption = "毛重";
  732. this.dataColumn28.ColumnName = "grossWeight";
  733. //
  734. // dataColumn29
  735. //
  736. this.dataColumn29.Caption = "重量组合包号";
  737. this.dataColumn29.ColumnName = "combinPackageNo";
  738. //
  739. // dataColumn30
  740. //
  741. this.dataColumn30.Caption = "重量类型";
  742. this.dataColumn30.ColumnName = "weightType";
  743. //
  744. // dataColumn31
  745. //
  746. this.dataColumn31.Caption = "审核状态";
  747. this.dataColumn31.ColumnName = "checkFlag";
  748. //
  749. // dataColumn32
  750. //
  751. this.dataColumn32.Caption = "计量点编号";
  752. this.dataColumn32.ColumnName = "baseSpotNo";
  753. //
  754. // dataColumn33
  755. //
  756. this.dataColumn33.Caption = "计量点";
  757. this.dataColumn33.ColumnName = "baseSpotName";
  758. //
  759. // dataColumn34
  760. //
  761. this.dataColumn34.Caption = "净重";
  762. this.dataColumn34.ColumnName = "netWeight";
  763. //
  764. // dataColumn35
  765. //
  766. this.dataColumn35.Caption = "修改时间";
  767. this.dataColumn35.ColumnName = "updateTime";
  768. //
  769. // dataColumn36
  770. //
  771. this.dataColumn36.Caption = "MES炉号";
  772. this.dataColumn36.ColumnName = "heatNoMes";
  773. //
  774. // dataColumn37
  775. //
  776. this.dataColumn37.Caption = "顺序炉号";
  777. this.dataColumn37.ColumnName = "heatNoSeq";
  778. //
  779. // dataColumn38
  780. //
  781. this.dataColumn38.Caption = "炉号";
  782. this.dataColumn38.ColumnName = "heatNo";
  783. //
  784. // dataColumn39
  785. //
  786. this.dataColumn39.Caption = "班组";
  787. this.dataColumn39.ColumnName = "meterGroup";
  788. //
  789. // dataColumn40
  790. //
  791. this.dataColumn40.Caption = "班次";
  792. this.dataColumn40.ColumnName = "meterClass";
  793. //
  794. // dataColumn41
  795. //
  796. this.dataColumn41.Caption = "理论重量";
  797. this.dataColumn41.ColumnName = "theoreticalWeight";
  798. //
  799. // dataColumn42
  800. //
  801. this.dataColumn42.Caption = "规格编号";
  802. this.dataColumn42.ColumnName = "specNo";
  803. //
  804. // dataColumn43
  805. //
  806. this.dataColumn43.Caption = "规格";
  807. this.dataColumn43.ColumnName = "specName";
  808. //
  809. // dtEndTime
  810. //
  811. this.dtEndTime.Cursor = System.Windows.Forms.Cursors.Default;
  812. this.dtEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  813. this.dtEndTime.Font = new System.Drawing.Font("宋体", 12F);
  814. this.dtEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  815. this.dtEndTime.Location = new System.Drawing.Point(415, 25);
  816. this.dtEndTime.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
  817. this.dtEndTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
  818. this.dtEndTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  819. this.dtEndTime.Name = "dtEndTime";
  820. this.dtEndTime.Size = new System.Drawing.Size(265, 30);
  821. this.dtEndTime.TabIndex = 107;
  822. //
  823. // ultraGroupBox1
  824. //
  825. this.ultraGroupBox1.Controls.Add(this.panel2);
  826. this.ultraGroupBox1.Controls.Add(this.panel1);
  827. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  828. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  829. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  830. this.ultraGroupBox1.Name = "ultraGroupBox1";
  831. this.ultraGroupBox1.Size = new System.Drawing.Size(1942, 882);
  832. this.ultraGroupBox1.TabIndex = 0;
  833. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  834. //
  835. // panel2
  836. //
  837. this.panel2.Controls.Add(this.ultraGroupBox4);
  838. this.panel2.Controls.Add(this.ultraGroupBoxEdit);
  839. this.panel2.Controls.Add(this.ultraGroupBoxCondition);
  840. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  841. this.panel2.Location = new System.Drawing.Point(3, 38);
  842. this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  843. this.panel2.Name = "panel2";
  844. this.panel2.Size = new System.Drawing.Size(1936, 841);
  845. this.panel2.TabIndex = 1;
  846. //
  847. // ultraGroupBox4
  848. //
  849. this.ultraGroupBox4.Controls.Add(this.panel2Query);
  850. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  851. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 115);
  852. this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  853. this.ultraGroupBox4.Name = "ultraGroupBox4";
  854. this.ultraGroupBox4.Size = new System.Drawing.Size(1936, 435);
  855. this.ultraGroupBox4.TabIndex = 2;
  856. this.ultraGroupBox4.Text = "实绩数据展示区域";
  857. this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  858. //
  859. // panel2Query
  860. //
  861. this.panel2Query.Controls.Add(this.cbAll);
  862. this.panel2Query.Controls.Add(this.ultraGridScale);
  863. this.panel2Query.Dock = System.Windows.Forms.DockStyle.Fill;
  864. this.panel2Query.Location = new System.Drawing.Point(3, 21);
  865. this.panel2Query.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  866. this.panel2Query.Name = "panel2Query";
  867. this.panel2Query.Size = new System.Drawing.Size(1930, 411);
  868. this.panel2Query.TabIndex = 3;
  869. //
  870. // cbAll
  871. //
  872. this.cbAll.AutoSize = true;
  873. this.cbAll.Location = new System.Drawing.Point(93, 9);
  874. this.cbAll.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  875. this.cbAll.Name = "cbAll";
  876. this.cbAll.Size = new System.Drawing.Size(18, 17);
  877. this.cbAll.TabIndex = 1;
  878. this.cbAll.UseVisualStyleBackColor = true;
  879. this.cbAll.CheckedChanged += new System.EventHandler(this.cbAll_CheckedChanged);
  880. //
  881. // ultraGridScale
  882. //
  883. this.ultraGridScale.DataMember = "计量实绩";
  884. this.ultraGridScale.DataSource = this.dataSet2;
  885. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  886. ultraGridColumn1.Header.VisiblePosition = 0;
  887. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 2;
  888. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  889. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  890. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  891. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  892. ultraGridColumn2.Header.VisiblePosition = 1;
  893. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 10;
  894. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  895. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  896. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  897. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  898. ultraGridColumn3.Header.VisiblePosition = 2;
  899. ultraGridColumn3.Hidden = true;
  900. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  901. ultraGridColumn4.Header.VisiblePosition = 3;
  902. ultraGridColumn4.Hidden = true;
  903. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 12;
  904. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  905. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  906. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  907. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  908. ultraGridColumn5.Header.VisiblePosition = 4;
  909. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 46;
  910. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  911. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  912. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  913. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  914. ultraGridColumn6.Header.VisiblePosition = 5;
  915. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 4;
  916. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  917. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  918. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  919. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  920. ultraGridColumn7.Header.VisiblePosition = 6;
  921. ultraGridColumn7.Hidden = true;
  922. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  923. ultraGridColumn8.Header.VisiblePosition = 7;
  924. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 38;
  925. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  926. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  927. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  928. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  929. ultraGridColumn9.Header.VisiblePosition = 8;
  930. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 40;
  931. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  932. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  933. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  934. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  935. ultraGridColumn10.Header.VisiblePosition = 9;
  936. ultraGridColumn10.Hidden = true;
  937. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  938. ultraGridColumn11.Header.VisiblePosition = 10;
  939. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 42;
  940. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  941. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  942. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  943. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  944. ultraGridColumn12.Header.VisiblePosition = 11;
  945. ultraGridColumn12.Hidden = true;
  946. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  947. ultraGridColumn13.Header.VisiblePosition = 12;
  948. ultraGridColumn13.Hidden = true;
  949. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  950. ultraGridColumn14.Header.VisiblePosition = 13;
  951. ultraGridColumn14.Hidden = true;
  952. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  953. ultraGridColumn15.Header.VisiblePosition = 14;
  954. ultraGridColumn15.Hidden = true;
  955. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 6;
  956. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  957. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  958. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  959. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  960. ultraGridColumn16.Header.VisiblePosition = 15;
  961. ultraGridColumn16.Hidden = true;
  962. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  963. ultraGridColumn17.Header.VisiblePosition = 16;
  964. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 16;
  965. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  966. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  967. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  968. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  969. ultraGridColumn18.Header.VisiblePosition = 17;
  970. ultraGridColumn18.Hidden = true;
  971. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  972. ultraGridColumn19.Header.VisiblePosition = 18;
  973. ultraGridColumn19.Hidden = true;
  974. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 10;
  975. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  976. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  977. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  978. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  979. ultraGridColumn20.Header.VisiblePosition = 19;
  980. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 18;
  981. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  982. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  983. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
  984. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  985. ultraGridColumn21.Header.VisiblePosition = 20;
  986. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 20;
  987. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  988. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  989. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  990. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  991. ultraGridColumn22.Header.VisiblePosition = 21;
  992. ultraGridColumn22.Hidden = true;
  993. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 34;
  994. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  995. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  996. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
  997. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  998. ultraGridColumn23.Header.VisiblePosition = 22;
  999. ultraGridColumn23.Hidden = true;
  1000. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 28;
  1001. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1002. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  1003. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  1004. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1005. ultraGridColumn24.Header.VisiblePosition = 23;
  1006. ultraGridColumn24.Hidden = true;
  1007. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 16;
  1008. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1009. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  1010. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  1011. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1012. ultraGridColumn25.Header.VisiblePosition = 24;
  1013. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 32;
  1014. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1015. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  1016. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  1017. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1018. ultraGridColumn26.Header.VisiblePosition = 25;
  1019. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 30;
  1020. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1021. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  1022. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  1023. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1024. ultraGridColumn27.Header.VisiblePosition = 26;
  1025. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 28;
  1026. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1027. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  1028. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  1029. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1030. ultraGridColumn28.Header.VisiblePosition = 27;
  1031. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 24;
  1032. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  1033. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  1034. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  1035. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1036. ultraGridColumn29.Header.VisiblePosition = 28;
  1037. ultraGridColumn29.Hidden = true;
  1038. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 30;
  1039. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1040. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  1041. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  1042. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1043. ultraGridColumn30.Header.VisiblePosition = 29;
  1044. ultraGridColumn30.Hidden = true;
  1045. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 36;
  1046. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1047. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  1048. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  1049. ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1050. ultraGridColumn31.Header.VisiblePosition = 30;
  1051. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 6;
  1052. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1053. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  1054. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  1055. ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1056. ultraGridColumn32.Header.VisiblePosition = 31;
  1057. ultraGridColumn32.Hidden = true;
  1058. ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1059. ultraGridColumn33.Header.VisiblePosition = 32;
  1060. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 8;
  1061. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1062. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  1063. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  1064. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1065. ultraGridColumn34.Header.VisiblePosition = 33;
  1066. ultraGridColumn34.Hidden = true;
  1067. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 26;
  1068. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1069. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  1070. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1071. ultraGridColumn35.Header.VisiblePosition = 34;
  1072. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 44;
  1073. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1074. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  1075. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  1076. ultraGridColumn36.Header.VisiblePosition = 35;
  1077. ultraGridColumn36.Hidden = true;
  1078. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 24;
  1079. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  1080. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
  1081. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
  1082. ultraGridColumn37.Header.VisiblePosition = 36;
  1083. ultraGridColumn37.Hidden = true;
  1084. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 26;
  1085. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  1086. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
  1087. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
  1088. ultraGridColumn38.Header.VisiblePosition = 37;
  1089. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 12;
  1090. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  1091. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
  1092. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
  1093. ultraGridColumn39.Header.VisiblePosition = 38;
  1094. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 36;
  1095. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  1096. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
  1097. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
  1098. ultraGridColumn40.Header.VisiblePosition = 39;
  1099. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 34;
  1100. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  1101. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
  1102. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
  1103. ultraGridColumn41.Header.VisiblePosition = 40;
  1104. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 22;
  1105. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  1106. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
  1107. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
  1108. ultraGridColumn42.Header.VisiblePosition = 41;
  1109. ultraGridColumn42.Hidden = true;
  1110. ultraGridColumn43.Header.VisiblePosition = 42;
  1111. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 14;
  1112. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  1113. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
  1114. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
  1115. ultraGridColumn44.Header.VisiblePosition = 43;
  1116. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 26;
  1117. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  1118. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
  1119. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
  1120. ultraGridColumn45.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.Edit;
  1121. ultraGridColumn45.DataType = typeof(bool);
  1122. ultraGridColumn45.DefaultCellValue = false;
  1123. ultraGridColumn45.Header.Caption = "选择";
  1124. ultraGridColumn45.Header.VisiblePosition = 44;
  1125. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 0;
  1126. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  1127. ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(41, 0);
  1128. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
  1129. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
  1130. ultraGridColumn45.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1131. ultraGridBand1.Columns.AddRange(new object[] {
  1132. ultraGridColumn1,
  1133. ultraGridColumn2,
  1134. ultraGridColumn3,
  1135. ultraGridColumn4,
  1136. ultraGridColumn5,
  1137. ultraGridColumn6,
  1138. ultraGridColumn7,
  1139. ultraGridColumn8,
  1140. ultraGridColumn9,
  1141. ultraGridColumn10,
  1142. ultraGridColumn11,
  1143. ultraGridColumn12,
  1144. ultraGridColumn13,
  1145. ultraGridColumn14,
  1146. ultraGridColumn15,
  1147. ultraGridColumn16,
  1148. ultraGridColumn17,
  1149. ultraGridColumn18,
  1150. ultraGridColumn19,
  1151. ultraGridColumn20,
  1152. ultraGridColumn21,
  1153. ultraGridColumn22,
  1154. ultraGridColumn23,
  1155. ultraGridColumn24,
  1156. ultraGridColumn25,
  1157. ultraGridColumn26,
  1158. ultraGridColumn27,
  1159. ultraGridColumn28,
  1160. ultraGridColumn29,
  1161. ultraGridColumn30,
  1162. ultraGridColumn31,
  1163. ultraGridColumn32,
  1164. ultraGridColumn33,
  1165. ultraGridColumn34,
  1166. ultraGridColumn35,
  1167. ultraGridColumn36,
  1168. ultraGridColumn37,
  1169. ultraGridColumn38,
  1170. ultraGridColumn39,
  1171. ultraGridColumn40,
  1172. ultraGridColumn41,
  1173. ultraGridColumn42,
  1174. ultraGridColumn43,
  1175. ultraGridColumn44,
  1176. ultraGridColumn45});
  1177. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  1178. summarySettings1.DisplayFormat = "{0}";
  1179. summarySettings1.GroupBySummaryValueAppearance = appearance137;
  1180. summarySettings1.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
  1181. summarySettings2.DisplayFormat = "{0}";
  1182. summarySettings2.GroupBySummaryValueAppearance = appearance138;
  1183. summarySettings2.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
  1184. summarySettings3.DisplayFormat = "{0}";
  1185. summarySettings3.GroupBySummaryValueAppearance = appearance139;
  1186. summarySettings3.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
  1187. summarySettings4.DisplayFormat = "{0}";
  1188. summarySettings4.GroupBySummaryValueAppearance = appearance140;
  1189. summarySettings4.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
  1190. ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  1191. summarySettings1,
  1192. summarySettings2,
  1193. summarySettings3,
  1194. summarySettings4});
  1195. ultraGridBand1.SummaryFooterCaption = "合计";
  1196. this.ultraGridScale.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  1197. this.ultraGridScale.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
  1198. this.ultraGridScale.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
  1199. this.ultraGridScale.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
  1200. appearance13.TextVAlignAsString = "Middle";
  1201. this.ultraGridScale.DisplayLayout.Override.CellAppearance = appearance13;
  1202. this.ultraGridScale.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  1203. appearance14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  1204. appearance14.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  1205. this.ultraGridScale.DisplayLayout.Override.HeaderAppearance = appearance14;
  1206. this.ultraGridScale.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1207. this.ultraGridScale.DisplayLayout.Override.MaxSelectedRows = 1;
  1208. this.ultraGridScale.DisplayLayout.Override.MinRowHeight = 21;
  1209. appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  1210. appearance15.TextVAlignAsString = "Middle";
  1211. this.ultraGridScale.DisplayLayout.Override.RowSelectorAppearance = appearance15;
  1212. this.ultraGridScale.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1213. this.ultraGridScale.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  1214. this.ultraGridScale.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1215. this.ultraGridScale.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  1216. this.ultraGridScale.Dock = System.Windows.Forms.DockStyle.Fill;
  1217. this.ultraGridScale.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1218. this.ultraGridScale.Location = new System.Drawing.Point(0, 0);
  1219. this.ultraGridScale.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1220. this.ultraGridScale.Name = "ultraGridScale";
  1221. this.ultraGridScale.Size = new System.Drawing.Size(1930, 411);
  1222. this.ultraGridScale.TabIndex = 6;
  1223. this.ultraGridScale.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridScale_ClickCell);
  1224. //
  1225. // ultraGroupBoxEdit
  1226. //
  1227. this.ultraGroupBoxEdit.Controls.Add(this.cmbMeterGroupUp);
  1228. this.ultraGroupBoxEdit.Controls.Add(this.cmbMeterClassUp);
  1229. this.ultraGroupBoxEdit.Controls.Add(this.label10);
  1230. this.ultraGroupBoxEdit.Controls.Add(this.tbMemo);
  1231. this.ultraGroupBoxEdit.Controls.Add(this.label19);
  1232. this.ultraGroupBoxEdit.Controls.Add(this.numReferWeight);
  1233. this.ultraGroupBoxEdit.Controls.Add(this.numTareWeight);
  1234. this.ultraGroupBoxEdit.Controls.Add(this.numNetWeight);
  1235. this.ultraGroupBoxEdit.Controls.Add(this.tbPredictionNo);
  1236. this.ultraGroupBoxEdit.Controls.Add(this.label18);
  1237. this.ultraGroupBoxEdit.Controls.Add(this.numCollectWeight);
  1238. this.ultraGroupBoxEdit.Controls.Add(this.label17);
  1239. this.ultraGroupBoxEdit.Controls.Add(this.label16);
  1240. this.ultraGroupBoxEdit.Controls.Add(this.label15);
  1241. this.ultraGroupBoxEdit.Controls.Add(this.label14);
  1242. this.ultraGroupBoxEdit.Controls.Add(this.label13);
  1243. this.ultraGroupBoxEdit.Controls.Add(this.tbBlockNumUp);
  1244. this.ultraGroupBoxEdit.Controls.Add(this.label12);
  1245. this.ultraGroupBoxEdit.Controls.Add(this.tbPackageNoUp);
  1246. this.ultraGroupBoxEdit.Controls.Add(this.label11);
  1247. this.ultraGroupBoxEdit.Controls.Add(this.tbTheoreticalWeightUp);
  1248. this.ultraGroupBoxEdit.Controls.Add(this.label9);
  1249. this.ultraGroupBoxEdit.Controls.Add(this.cmbGradeNameUp);
  1250. this.ultraGroupBoxEdit.Controls.Add(this.label8);
  1251. this.ultraGroupBoxEdit.Controls.Add(this.cmbSpcNameUp);
  1252. this.ultraGroupBoxEdit.Controls.Add(this.label7);
  1253. this.ultraGroupBoxEdit.Controls.Add(this.tbHeatNoUp);
  1254. this.ultraGroupBoxEdit.Controls.Add(this.label6);
  1255. this.ultraGroupBoxEdit.Controls.Add(this.cmbPointUp);
  1256. this.ultraGroupBoxEdit.Controls.Add(this.label5);
  1257. this.ultraGroupBoxEdit.Dock = System.Windows.Forms.DockStyle.Bottom;
  1258. this.ultraGroupBoxEdit.Location = new System.Drawing.Point(0, 550);
  1259. this.ultraGroupBoxEdit.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1260. this.ultraGroupBoxEdit.Name = "ultraGroupBoxEdit";
  1261. this.ultraGroupBoxEdit.Size = new System.Drawing.Size(1936, 291);
  1262. this.ultraGroupBoxEdit.TabIndex = 1;
  1263. this.ultraGroupBoxEdit.Text = "实绩编辑区域";
  1264. this.ultraGroupBoxEdit.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1265. //
  1266. // cmbMeterGroupUp
  1267. //
  1268. this.cmbMeterGroupUp.CheckedListSettings.CheckStateMember = "";
  1269. appearance34.BackColor = System.Drawing.SystemColors.Window;
  1270. appearance34.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1271. this.cmbMeterGroupUp.DisplayLayout.Appearance = appearance34;
  1272. this.cmbMeterGroupUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1273. this.cmbMeterGroupUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1274. appearance35.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1275. appearance35.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1276. appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1277. appearance35.BorderColor = System.Drawing.SystemColors.Window;
  1278. this.cmbMeterGroupUp.DisplayLayout.GroupByBox.Appearance = appearance35;
  1279. appearance38.ForeColor = System.Drawing.SystemColors.GrayText;
  1280. this.cmbMeterGroupUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance38;
  1281. this.cmbMeterGroupUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1282. appearance39.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1283. appearance39.BackColor2 = System.Drawing.SystemColors.Control;
  1284. appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1285. appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
  1286. this.cmbMeterGroupUp.DisplayLayout.GroupByBox.PromptAppearance = appearance39;
  1287. this.cmbMeterGroupUp.DisplayLayout.MaxColScrollRegions = 1;
  1288. this.cmbMeterGroupUp.DisplayLayout.MaxRowScrollRegions = 1;
  1289. appearance52.BackColor = System.Drawing.SystemColors.Window;
  1290. appearance52.ForeColor = System.Drawing.SystemColors.ControlText;
  1291. this.cmbMeterGroupUp.DisplayLayout.Override.ActiveCellAppearance = appearance52;
  1292. appearance53.BackColor = System.Drawing.SystemColors.Highlight;
  1293. appearance53.ForeColor = System.Drawing.SystemColors.HighlightText;
  1294. this.cmbMeterGroupUp.DisplayLayout.Override.ActiveRowAppearance = appearance53;
  1295. this.cmbMeterGroupUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1296. this.cmbMeterGroupUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1297. appearance94.BackColor = System.Drawing.SystemColors.Window;
  1298. this.cmbMeterGroupUp.DisplayLayout.Override.CardAreaAppearance = appearance94;
  1299. appearance95.BorderColor = System.Drawing.Color.Silver;
  1300. appearance95.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1301. this.cmbMeterGroupUp.DisplayLayout.Override.CellAppearance = appearance95;
  1302. this.cmbMeterGroupUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1303. this.cmbMeterGroupUp.DisplayLayout.Override.CellPadding = 0;
  1304. appearance96.BackColor = System.Drawing.SystemColors.Control;
  1305. appearance96.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1306. appearance96.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1307. appearance96.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1308. appearance96.BorderColor = System.Drawing.SystemColors.Window;
  1309. this.cmbMeterGroupUp.DisplayLayout.Override.GroupByRowAppearance = appearance96;
  1310. appearance97.TextHAlignAsString = "Left";
  1311. this.cmbMeterGroupUp.DisplayLayout.Override.HeaderAppearance = appearance97;
  1312. this.cmbMeterGroupUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1313. this.cmbMeterGroupUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1314. appearance99.BackColor = System.Drawing.SystemColors.Window;
  1315. appearance99.BorderColor = System.Drawing.Color.Silver;
  1316. this.cmbMeterGroupUp.DisplayLayout.Override.RowAppearance = appearance99;
  1317. this.cmbMeterGroupUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1318. appearance100.BackColor = System.Drawing.SystemColors.ControlLight;
  1319. this.cmbMeterGroupUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance100;
  1320. this.cmbMeterGroupUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1321. this.cmbMeterGroupUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1322. this.cmbMeterGroupUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1323. this.cmbMeterGroupUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1324. this.cmbMeterGroupUp.Location = new System.Drawing.Point(629, 99);
  1325. this.cmbMeterGroupUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1326. this.cmbMeterGroupUp.Name = "cmbMeterGroupUp";
  1327. this.cmbMeterGroupUp.Size = new System.Drawing.Size(93, 35);
  1328. this.cmbMeterGroupUp.TabIndex = 145;
  1329. //
  1330. // cmbMeterClassUp
  1331. //
  1332. this.cmbMeterClassUp.CheckedListSettings.CheckStateMember = "";
  1333. appearance101.BackColor = System.Drawing.SystemColors.Window;
  1334. appearance101.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1335. this.cmbMeterClassUp.DisplayLayout.Appearance = appearance101;
  1336. this.cmbMeterClassUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1337. this.cmbMeterClassUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1338. appearance102.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1339. appearance102.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1340. appearance102.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1341. appearance102.BorderColor = System.Drawing.SystemColors.Window;
  1342. this.cmbMeterClassUp.DisplayLayout.GroupByBox.Appearance = appearance102;
  1343. appearance103.ForeColor = System.Drawing.SystemColors.GrayText;
  1344. this.cmbMeterClassUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance103;
  1345. this.cmbMeterClassUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1346. appearance104.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1347. appearance104.BackColor2 = System.Drawing.SystemColors.Control;
  1348. appearance104.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1349. appearance104.ForeColor = System.Drawing.SystemColors.GrayText;
  1350. this.cmbMeterClassUp.DisplayLayout.GroupByBox.PromptAppearance = appearance104;
  1351. this.cmbMeterClassUp.DisplayLayout.MaxColScrollRegions = 1;
  1352. this.cmbMeterClassUp.DisplayLayout.MaxRowScrollRegions = 1;
  1353. appearance105.BackColor = System.Drawing.SystemColors.Window;
  1354. appearance105.ForeColor = System.Drawing.SystemColors.ControlText;
  1355. this.cmbMeterClassUp.DisplayLayout.Override.ActiveCellAppearance = appearance105;
  1356. appearance106.BackColor = System.Drawing.SystemColors.Highlight;
  1357. appearance106.ForeColor = System.Drawing.SystemColors.HighlightText;
  1358. this.cmbMeterClassUp.DisplayLayout.Override.ActiveRowAppearance = appearance106;
  1359. this.cmbMeterClassUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1360. this.cmbMeterClassUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1361. appearance107.BackColor = System.Drawing.SystemColors.Window;
  1362. this.cmbMeterClassUp.DisplayLayout.Override.CardAreaAppearance = appearance107;
  1363. appearance108.BorderColor = System.Drawing.Color.Silver;
  1364. appearance108.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1365. this.cmbMeterClassUp.DisplayLayout.Override.CellAppearance = appearance108;
  1366. this.cmbMeterClassUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1367. this.cmbMeterClassUp.DisplayLayout.Override.CellPadding = 0;
  1368. appearance109.BackColor = System.Drawing.SystemColors.Control;
  1369. appearance109.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1370. appearance109.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1371. appearance109.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1372. appearance109.BorderColor = System.Drawing.SystemColors.Window;
  1373. this.cmbMeterClassUp.DisplayLayout.Override.GroupByRowAppearance = appearance109;
  1374. appearance110.TextHAlignAsString = "Left";
  1375. this.cmbMeterClassUp.DisplayLayout.Override.HeaderAppearance = appearance110;
  1376. this.cmbMeterClassUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1377. this.cmbMeterClassUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1378. appearance111.BackColor = System.Drawing.SystemColors.Window;
  1379. appearance111.BorderColor = System.Drawing.Color.Silver;
  1380. this.cmbMeterClassUp.DisplayLayout.Override.RowAppearance = appearance111;
  1381. this.cmbMeterClassUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1382. appearance112.BackColor = System.Drawing.SystemColors.ControlLight;
  1383. this.cmbMeterClassUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance112;
  1384. this.cmbMeterClassUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1385. this.cmbMeterClassUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1386. this.cmbMeterClassUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1387. this.cmbMeterClassUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1388. this.cmbMeterClassUp.Location = new System.Drawing.Point(528, 99);
  1389. this.cmbMeterClassUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1390. this.cmbMeterClassUp.Name = "cmbMeterClassUp";
  1391. this.cmbMeterClassUp.Size = new System.Drawing.Size(93, 35);
  1392. this.cmbMeterClassUp.TabIndex = 144;
  1393. //
  1394. // label10
  1395. //
  1396. this.label10.AutoSize = true;
  1397. this.label10.BackColor = System.Drawing.Color.Transparent;
  1398. this.label10.Location = new System.Drawing.Point(413, 109);
  1399. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1400. this.label10.Name = "label10";
  1401. this.label10.Size = new System.Drawing.Size(67, 15);
  1402. this.label10.TabIndex = 143;
  1403. this.label10.Text = "班次班组";
  1404. //
  1405. // tbMemo
  1406. //
  1407. this.tbMemo.Font = new System.Drawing.Font("宋体", 14F);
  1408. this.tbMemo.Location = new System.Drawing.Point(528, 231);
  1409. this.tbMemo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1410. this.tbMemo.Name = "tbMemo";
  1411. this.tbMemo.Size = new System.Drawing.Size(604, 34);
  1412. this.tbMemo.TabIndex = 142;
  1413. //
  1414. // label19
  1415. //
  1416. this.label19.AutoSize = true;
  1417. this.label19.BackColor = System.Drawing.Color.Transparent;
  1418. this.label19.Location = new System.Drawing.Point(428, 241);
  1419. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1420. this.label19.Name = "label19";
  1421. this.label19.Size = new System.Drawing.Size(69, 15);
  1422. this.label19.TabIndex = 141;
  1423. this.label19.Text = "备 注";
  1424. //
  1425. // numReferWeight
  1426. //
  1427. this.numReferWeight.DecimalPlaces = 2;
  1428. this.numReferWeight.Font = new System.Drawing.Font("宋体", 14F);
  1429. this.numReferWeight.Increment = new decimal(new int[] {
  1430. 1,
  1431. 0,
  1432. 0,
  1433. 131072});
  1434. this.numReferWeight.Location = new System.Drawing.Point(933, 169);
  1435. this.numReferWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1436. this.numReferWeight.Maximum = new decimal(new int[] {
  1437. 100000,
  1438. 0,
  1439. 0,
  1440. 0});
  1441. this.numReferWeight.Minimum = new decimal(new int[] {
  1442. 100000,
  1443. 0,
  1444. 0,
  1445. -2147483648});
  1446. this.numReferWeight.Name = "numReferWeight";
  1447. this.numReferWeight.Size = new System.Drawing.Size(200, 34);
  1448. this.numReferWeight.TabIndex = 140;
  1449. this.numReferWeight.ValueChanged += new System.EventHandler(this.numCollectWeight_ValueChanged);
  1450. //
  1451. // numTareWeight
  1452. //
  1453. this.numTareWeight.DecimalPlaces = 2;
  1454. this.numTareWeight.Font = new System.Drawing.Font("宋体", 14F);
  1455. this.numTareWeight.Increment = new decimal(new int[] {
  1456. 1,
  1457. 0,
  1458. 0,
  1459. 131072});
  1460. this.numTareWeight.Location = new System.Drawing.Point(528, 169);
  1461. this.numTareWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1462. this.numTareWeight.Maximum = new decimal(new int[] {
  1463. 100000,
  1464. 0,
  1465. 0,
  1466. 0});
  1467. this.numTareWeight.Minimum = new decimal(new int[] {
  1468. 100000,
  1469. 0,
  1470. 0,
  1471. -2147483648});
  1472. this.numTareWeight.Name = "numTareWeight";
  1473. this.numTareWeight.Size = new System.Drawing.Size(200, 34);
  1474. this.numTareWeight.TabIndex = 139;
  1475. this.numTareWeight.ValueChanged += new System.EventHandler(this.numCollectWeight_ValueChanged);
  1476. //
  1477. // numNetWeight
  1478. //
  1479. this.numNetWeight.DecimalPlaces = 2;
  1480. this.numNetWeight.Enabled = false;
  1481. this.numNetWeight.Font = new System.Drawing.Font("宋体", 14F);
  1482. this.numNetWeight.Increment = new decimal(new int[] {
  1483. 1,
  1484. 0,
  1485. 0,
  1486. 131072});
  1487. this.numNetWeight.Location = new System.Drawing.Point(1335, 169);
  1488. this.numNetWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1489. this.numNetWeight.Maximum = new decimal(new int[] {
  1490. 100000,
  1491. 0,
  1492. 0,
  1493. 0});
  1494. this.numNetWeight.Minimum = new decimal(new int[] {
  1495. 100000,
  1496. 0,
  1497. 0,
  1498. -2147483648});
  1499. this.numNetWeight.Name = "numNetWeight";
  1500. this.numNetWeight.Size = new System.Drawing.Size(200, 34);
  1501. this.numNetWeight.TabIndex = 138;
  1502. //
  1503. // tbPredictionNo
  1504. //
  1505. this.tbPredictionNo.Font = new System.Drawing.Font("宋体", 14F);
  1506. this.tbPredictionNo.Location = new System.Drawing.Point(116, 231);
  1507. this.tbPredictionNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1508. this.tbPredictionNo.Name = "tbPredictionNo";
  1509. this.tbPredictionNo.Size = new System.Drawing.Size(199, 34);
  1510. this.tbPredictionNo.TabIndex = 137;
  1511. //
  1512. // label18
  1513. //
  1514. this.label18.AutoSize = true;
  1515. this.label18.BackColor = System.Drawing.Color.Transparent;
  1516. this.label18.Location = new System.Drawing.Point(16, 241);
  1517. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1518. this.label18.Name = "label18";
  1519. this.label18.Size = new System.Drawing.Size(67, 15);
  1520. this.label18.TabIndex = 136;
  1521. this.label18.Text = "预报编号";
  1522. //
  1523. // numCollectWeight
  1524. //
  1525. this.numCollectWeight.DecimalPlaces = 2;
  1526. this.numCollectWeight.Font = new System.Drawing.Font("宋体", 14F);
  1527. this.numCollectWeight.Increment = new decimal(new int[] {
  1528. 1,
  1529. 0,
  1530. 0,
  1531. 131072});
  1532. this.numCollectWeight.Location = new System.Drawing.Point(116, 169);
  1533. this.numCollectWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1534. this.numCollectWeight.Maximum = new decimal(new int[] {
  1535. 100000,
  1536. 0,
  1537. 0,
  1538. 0});
  1539. this.numCollectWeight.Minimum = new decimal(new int[] {
  1540. 100000,
  1541. 0,
  1542. 0,
  1543. -2147483648});
  1544. this.numCollectWeight.Name = "numCollectWeight";
  1545. this.numCollectWeight.Size = new System.Drawing.Size(200, 34);
  1546. this.numCollectWeight.TabIndex = 134;
  1547. this.numCollectWeight.ValueChanged += new System.EventHandler(this.numCollectWeight_ValueChanged);
  1548. //
  1549. // label17
  1550. //
  1551. this.label17.AutoSize = true;
  1552. this.label17.BackColor = System.Drawing.Color.Transparent;
  1553. this.label17.Location = new System.Drawing.Point(1235, 231);
  1554. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1555. this.label17.Name = "label17";
  1556. this.label17.Size = new System.Drawing.Size(287, 15);
  1557. this.label17.TabIndex = 133;
  1558. this.label17.Text = "说 明:净重=采集重量+零点值-仪表底数";
  1559. //
  1560. // label16
  1561. //
  1562. this.label16.AutoSize = true;
  1563. this.label16.BackColor = System.Drawing.Color.Transparent;
  1564. this.label16.Location = new System.Drawing.Point(1235, 179);
  1565. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1566. this.label16.Name = "label16";
  1567. this.label16.Size = new System.Drawing.Size(69, 15);
  1568. this.label16.TabIndex = 131;
  1569. this.label16.Text = "净 重";
  1570. //
  1571. // label15
  1572. //
  1573. this.label15.AutoSize = true;
  1574. this.label15.BackColor = System.Drawing.Color.Transparent;
  1575. this.label15.Location = new System.Drawing.Point(428, 179);
  1576. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1577. this.label15.Name = "label15";
  1578. this.label15.Size = new System.Drawing.Size(68, 15);
  1579. this.label15.TabIndex = 129;
  1580. this.label15.Text = "零 点 值";
  1581. //
  1582. // label14
  1583. //
  1584. this.label14.AutoSize = true;
  1585. this.label14.BackColor = System.Drawing.Color.Transparent;
  1586. this.label14.Location = new System.Drawing.Point(833, 179);
  1587. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1588. this.label14.Name = "label14";
  1589. this.label14.Size = new System.Drawing.Size(67, 15);
  1590. this.label14.TabIndex = 127;
  1591. this.label14.Text = "仪表底数";
  1592. //
  1593. // label13
  1594. //
  1595. this.label13.AutoSize = true;
  1596. this.label13.BackColor = System.Drawing.Color.Transparent;
  1597. this.label13.Location = new System.Drawing.Point(16, 179);
  1598. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1599. this.label13.Name = "label13";
  1600. this.label13.Size = new System.Drawing.Size(67, 15);
  1601. this.label13.TabIndex = 125;
  1602. this.label13.Text = "采集重量";
  1603. //
  1604. // tbBlockNumUp
  1605. //
  1606. this.tbBlockNumUp.Font = new System.Drawing.Font("宋体", 14F);
  1607. this.tbBlockNumUp.Location = new System.Drawing.Point(1335, 96);
  1608. this.tbBlockNumUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1609. this.tbBlockNumUp.Name = "tbBlockNumUp";
  1610. this.tbBlockNumUp.Size = new System.Drawing.Size(199, 34);
  1611. this.tbBlockNumUp.TabIndex = 124;
  1612. //
  1613. // label12
  1614. //
  1615. this.label12.AutoSize = true;
  1616. this.label12.BackColor = System.Drawing.Color.Transparent;
  1617. this.label12.Location = new System.Drawing.Point(1235, 106);
  1618. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1619. this.label12.Name = "label12";
  1620. this.label12.Size = new System.Drawing.Size(68, 15);
  1621. this.label12.TabIndex = 123;
  1622. this.label12.Text = "总 支 数";
  1623. //
  1624. // tbPackageNoUp
  1625. //
  1626. this.tbPackageNoUp.Font = new System.Drawing.Font("宋体", 14F);
  1627. this.tbPackageNoUp.Location = new System.Drawing.Point(933, 96);
  1628. this.tbPackageNoUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1629. this.tbPackageNoUp.Name = "tbPackageNoUp";
  1630. this.tbPackageNoUp.Size = new System.Drawing.Size(199, 34);
  1631. this.tbPackageNoUp.TabIndex = 122;
  1632. //
  1633. // label11
  1634. //
  1635. this.label11.AutoSize = true;
  1636. this.label11.BackColor = System.Drawing.Color.Transparent;
  1637. this.label11.Location = new System.Drawing.Point(833, 106);
  1638. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1639. this.label11.Name = "label11";
  1640. this.label11.Size = new System.Drawing.Size(68, 15);
  1641. this.label11.TabIndex = 121;
  1642. this.label11.Text = "顺 序 号";
  1643. //
  1644. // tbTheoreticalWeightUp
  1645. //
  1646. this.tbTheoreticalWeightUp.Font = new System.Drawing.Font("宋体", 14F);
  1647. this.tbTheoreticalWeightUp.Location = new System.Drawing.Point(116, 96);
  1648. this.tbTheoreticalWeightUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1649. this.tbTheoreticalWeightUp.Name = "tbTheoreticalWeightUp";
  1650. this.tbTheoreticalWeightUp.Size = new System.Drawing.Size(199, 34);
  1651. this.tbTheoreticalWeightUp.TabIndex = 118;
  1652. //
  1653. // label9
  1654. //
  1655. this.label9.AutoSize = true;
  1656. this.label9.BackColor = System.Drawing.Color.Transparent;
  1657. this.label9.Location = new System.Drawing.Point(16, 106);
  1658. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1659. this.label9.Name = "label9";
  1660. this.label9.Size = new System.Drawing.Size(67, 15);
  1661. this.label9.TabIndex = 117;
  1662. this.label9.Text = "理论重量";
  1663. //
  1664. // cmbGradeNameUp
  1665. //
  1666. this.cmbGradeNameUp.CheckedListSettings.CheckStateMember = "";
  1667. appearance113.BackColor = System.Drawing.SystemColors.Window;
  1668. appearance113.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1669. this.cmbGradeNameUp.DisplayLayout.Appearance = appearance113;
  1670. this.cmbGradeNameUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1671. this.cmbGradeNameUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1672. appearance114.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1673. appearance114.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1674. appearance114.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1675. appearance114.BorderColor = System.Drawing.SystemColors.Window;
  1676. this.cmbGradeNameUp.DisplayLayout.GroupByBox.Appearance = appearance114;
  1677. appearance115.ForeColor = System.Drawing.SystemColors.GrayText;
  1678. this.cmbGradeNameUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance115;
  1679. this.cmbGradeNameUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1680. appearance116.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1681. appearance116.BackColor2 = System.Drawing.SystemColors.Control;
  1682. appearance116.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1683. appearance116.ForeColor = System.Drawing.SystemColors.GrayText;
  1684. this.cmbGradeNameUp.DisplayLayout.GroupByBox.PromptAppearance = appearance116;
  1685. this.cmbGradeNameUp.DisplayLayout.MaxColScrollRegions = 1;
  1686. this.cmbGradeNameUp.DisplayLayout.MaxRowScrollRegions = 1;
  1687. appearance117.BackColor = System.Drawing.SystemColors.Window;
  1688. appearance117.ForeColor = System.Drawing.SystemColors.ControlText;
  1689. this.cmbGradeNameUp.DisplayLayout.Override.ActiveCellAppearance = appearance117;
  1690. appearance118.BackColor = System.Drawing.SystemColors.Highlight;
  1691. appearance118.ForeColor = System.Drawing.SystemColors.HighlightText;
  1692. this.cmbGradeNameUp.DisplayLayout.Override.ActiveRowAppearance = appearance118;
  1693. this.cmbGradeNameUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1694. this.cmbGradeNameUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1695. appearance119.BackColor = System.Drawing.SystemColors.Window;
  1696. this.cmbGradeNameUp.DisplayLayout.Override.CardAreaAppearance = appearance119;
  1697. appearance120.BorderColor = System.Drawing.Color.Silver;
  1698. appearance120.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1699. this.cmbGradeNameUp.DisplayLayout.Override.CellAppearance = appearance120;
  1700. this.cmbGradeNameUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1701. this.cmbGradeNameUp.DisplayLayout.Override.CellPadding = 0;
  1702. appearance121.BackColor = System.Drawing.SystemColors.Control;
  1703. appearance121.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1704. appearance121.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1705. appearance121.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1706. appearance121.BorderColor = System.Drawing.SystemColors.Window;
  1707. this.cmbGradeNameUp.DisplayLayout.Override.GroupByRowAppearance = appearance121;
  1708. appearance122.TextHAlignAsString = "Left";
  1709. this.cmbGradeNameUp.DisplayLayout.Override.HeaderAppearance = appearance122;
  1710. this.cmbGradeNameUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1711. this.cmbGradeNameUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1712. appearance123.BackColor = System.Drawing.SystemColors.Window;
  1713. appearance123.BorderColor = System.Drawing.Color.Silver;
  1714. this.cmbGradeNameUp.DisplayLayout.Override.RowAppearance = appearance123;
  1715. this.cmbGradeNameUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1716. appearance124.BackColor = System.Drawing.SystemColors.ControlLight;
  1717. this.cmbGradeNameUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance124;
  1718. this.cmbGradeNameUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1719. this.cmbGradeNameUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1720. this.cmbGradeNameUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1721. this.cmbGradeNameUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1722. this.cmbGradeNameUp.Location = new System.Drawing.Point(1335, 36);
  1723. this.cmbGradeNameUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1724. this.cmbGradeNameUp.Name = "cmbGradeNameUp";
  1725. this.cmbGradeNameUp.Size = new System.Drawing.Size(200, 35);
  1726. this.cmbGradeNameUp.TabIndex = 116;
  1727. //
  1728. // label8
  1729. //
  1730. this.label8.AutoSize = true;
  1731. this.label8.BackColor = System.Drawing.Color.Transparent;
  1732. this.label8.Location = new System.Drawing.Point(1235, 46);
  1733. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1734. this.label8.Name = "label8";
  1735. this.label8.Size = new System.Drawing.Size(69, 15);
  1736. this.label8.TabIndex = 115;
  1737. this.label8.Text = "钢 种";
  1738. //
  1739. // cmbSpcNameUp
  1740. //
  1741. this.cmbSpcNameUp.CheckedListSettings.CheckStateMember = "";
  1742. appearance125.BackColor = System.Drawing.SystemColors.Window;
  1743. appearance125.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1744. this.cmbSpcNameUp.DisplayLayout.Appearance = appearance125;
  1745. this.cmbSpcNameUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1746. this.cmbSpcNameUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1747. appearance126.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1748. appearance126.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1749. appearance126.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1750. appearance126.BorderColor = System.Drawing.SystemColors.Window;
  1751. this.cmbSpcNameUp.DisplayLayout.GroupByBox.Appearance = appearance126;
  1752. appearance127.ForeColor = System.Drawing.SystemColors.GrayText;
  1753. this.cmbSpcNameUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance127;
  1754. this.cmbSpcNameUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1755. appearance128.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1756. appearance128.BackColor2 = System.Drawing.SystemColors.Control;
  1757. appearance128.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1758. appearance128.ForeColor = System.Drawing.SystemColors.GrayText;
  1759. this.cmbSpcNameUp.DisplayLayout.GroupByBox.PromptAppearance = appearance128;
  1760. this.cmbSpcNameUp.DisplayLayout.MaxColScrollRegions = 1;
  1761. this.cmbSpcNameUp.DisplayLayout.MaxRowScrollRegions = 1;
  1762. appearance129.BackColor = System.Drawing.SystemColors.Window;
  1763. appearance129.ForeColor = System.Drawing.SystemColors.ControlText;
  1764. this.cmbSpcNameUp.DisplayLayout.Override.ActiveCellAppearance = appearance129;
  1765. appearance130.BackColor = System.Drawing.SystemColors.Highlight;
  1766. appearance130.ForeColor = System.Drawing.SystemColors.HighlightText;
  1767. this.cmbSpcNameUp.DisplayLayout.Override.ActiveRowAppearance = appearance130;
  1768. this.cmbSpcNameUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1769. this.cmbSpcNameUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1770. appearance131.BackColor = System.Drawing.SystemColors.Window;
  1771. this.cmbSpcNameUp.DisplayLayout.Override.CardAreaAppearance = appearance131;
  1772. appearance132.BorderColor = System.Drawing.Color.Silver;
  1773. appearance132.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1774. this.cmbSpcNameUp.DisplayLayout.Override.CellAppearance = appearance132;
  1775. this.cmbSpcNameUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1776. this.cmbSpcNameUp.DisplayLayout.Override.CellPadding = 0;
  1777. appearance133.BackColor = System.Drawing.SystemColors.Control;
  1778. appearance133.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1779. appearance133.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1780. appearance133.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1781. appearance133.BorderColor = System.Drawing.SystemColors.Window;
  1782. this.cmbSpcNameUp.DisplayLayout.Override.GroupByRowAppearance = appearance133;
  1783. appearance134.TextHAlignAsString = "Left";
  1784. this.cmbSpcNameUp.DisplayLayout.Override.HeaderAppearance = appearance134;
  1785. this.cmbSpcNameUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1786. this.cmbSpcNameUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1787. appearance135.BackColor = System.Drawing.SystemColors.Window;
  1788. appearance135.BorderColor = System.Drawing.Color.Silver;
  1789. this.cmbSpcNameUp.DisplayLayout.Override.RowAppearance = appearance135;
  1790. this.cmbSpcNameUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1791. appearance136.BackColor = System.Drawing.SystemColors.ControlLight;
  1792. this.cmbSpcNameUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance136;
  1793. this.cmbSpcNameUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1794. this.cmbSpcNameUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1795. this.cmbSpcNameUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1796. this.cmbSpcNameUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1797. this.cmbSpcNameUp.Location = new System.Drawing.Point(933, 36);
  1798. this.cmbSpcNameUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1799. this.cmbSpcNameUp.Name = "cmbSpcNameUp";
  1800. this.cmbSpcNameUp.Size = new System.Drawing.Size(200, 35);
  1801. this.cmbSpcNameUp.TabIndex = 114;
  1802. //
  1803. // label7
  1804. //
  1805. this.label7.AutoSize = true;
  1806. this.label7.BackColor = System.Drawing.Color.Transparent;
  1807. this.label7.Location = new System.Drawing.Point(833, 46);
  1808. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1809. this.label7.Name = "label7";
  1810. this.label7.Size = new System.Drawing.Size(69, 15);
  1811. this.label7.TabIndex = 113;
  1812. this.label7.Text = "规 格";
  1813. //
  1814. // tbHeatNoUp
  1815. //
  1816. this.tbHeatNoUp.Font = new System.Drawing.Font("宋体", 14F);
  1817. this.tbHeatNoUp.Location = new System.Drawing.Point(528, 36);
  1818. this.tbHeatNoUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1819. this.tbHeatNoUp.Name = "tbHeatNoUp";
  1820. this.tbHeatNoUp.Size = new System.Drawing.Size(199, 34);
  1821. this.tbHeatNoUp.TabIndex = 112;
  1822. //
  1823. // label6
  1824. //
  1825. this.label6.AutoSize = true;
  1826. this.label6.BackColor = System.Drawing.Color.Transparent;
  1827. this.label6.Location = new System.Drawing.Point(428, 46);
  1828. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1829. this.label6.Name = "label6";
  1830. this.label6.Size = new System.Drawing.Size(69, 15);
  1831. this.label6.TabIndex = 111;
  1832. this.label6.Text = "炉 号";
  1833. //
  1834. // cmbPointUp
  1835. //
  1836. this.cmbPointUp.CheckedListSettings.CheckStateMember = "";
  1837. appearance69.BackColor = System.Drawing.SystemColors.Window;
  1838. appearance69.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1839. this.cmbPointUp.DisplayLayout.Appearance = appearance69;
  1840. this.cmbPointUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1841. this.cmbPointUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1842. appearance70.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1843. appearance70.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1844. appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1845. appearance70.BorderColor = System.Drawing.SystemColors.Window;
  1846. this.cmbPointUp.DisplayLayout.GroupByBox.Appearance = appearance70;
  1847. appearance71.ForeColor = System.Drawing.SystemColors.GrayText;
  1848. this.cmbPointUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance71;
  1849. this.cmbPointUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1850. appearance72.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1851. appearance72.BackColor2 = System.Drawing.SystemColors.Control;
  1852. appearance72.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1853. appearance72.ForeColor = System.Drawing.SystemColors.GrayText;
  1854. this.cmbPointUp.DisplayLayout.GroupByBox.PromptAppearance = appearance72;
  1855. this.cmbPointUp.DisplayLayout.MaxColScrollRegions = 1;
  1856. this.cmbPointUp.DisplayLayout.MaxRowScrollRegions = 1;
  1857. appearance73.BackColor = System.Drawing.SystemColors.Window;
  1858. appearance73.ForeColor = System.Drawing.SystemColors.ControlText;
  1859. this.cmbPointUp.DisplayLayout.Override.ActiveCellAppearance = appearance73;
  1860. appearance74.BackColor = System.Drawing.SystemColors.Highlight;
  1861. appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
  1862. this.cmbPointUp.DisplayLayout.Override.ActiveRowAppearance = appearance74;
  1863. this.cmbPointUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1864. this.cmbPointUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1865. appearance75.BackColor = System.Drawing.SystemColors.Window;
  1866. this.cmbPointUp.DisplayLayout.Override.CardAreaAppearance = appearance75;
  1867. appearance76.BorderColor = System.Drawing.Color.Silver;
  1868. appearance76.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1869. this.cmbPointUp.DisplayLayout.Override.CellAppearance = appearance76;
  1870. this.cmbPointUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1871. this.cmbPointUp.DisplayLayout.Override.CellPadding = 0;
  1872. appearance77.BackColor = System.Drawing.SystemColors.Control;
  1873. appearance77.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1874. appearance77.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1875. appearance77.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1876. appearance77.BorderColor = System.Drawing.SystemColors.Window;
  1877. this.cmbPointUp.DisplayLayout.Override.GroupByRowAppearance = appearance77;
  1878. appearance78.TextHAlignAsString = "Left";
  1879. this.cmbPointUp.DisplayLayout.Override.HeaderAppearance = appearance78;
  1880. this.cmbPointUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1881. this.cmbPointUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1882. appearance79.BackColor = System.Drawing.SystemColors.Window;
  1883. appearance79.BorderColor = System.Drawing.Color.Silver;
  1884. this.cmbPointUp.DisplayLayout.Override.RowAppearance = appearance79;
  1885. this.cmbPointUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1886. appearance80.BackColor = System.Drawing.SystemColors.ControlLight;
  1887. this.cmbPointUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance80;
  1888. this.cmbPointUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1889. this.cmbPointUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1890. this.cmbPointUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1891. this.cmbPointUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1892. this.cmbPointUp.Location = new System.Drawing.Point(116, 36);
  1893. this.cmbPointUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1894. this.cmbPointUp.Name = "cmbPointUp";
  1895. this.cmbPointUp.Size = new System.Drawing.Size(200, 35);
  1896. this.cmbPointUp.TabIndex = 110;
  1897. //
  1898. // label5
  1899. //
  1900. this.label5.AutoSize = true;
  1901. this.label5.BackColor = System.Drawing.Color.Transparent;
  1902. this.label5.Location = new System.Drawing.Point(16, 46);
  1903. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1904. this.label5.Name = "label5";
  1905. this.label5.Size = new System.Drawing.Size(68, 15);
  1906. this.label5.TabIndex = 109;
  1907. this.label5.Text = "计 量 点";
  1908. //
  1909. // ultraGroupBoxCondition
  1910. //
  1911. this.ultraGroupBoxCondition.Controls.Add(this.ckFilter);
  1912. this.ultraGroupBoxCondition.Controls.Add(this.cmbCheckState);
  1913. this.ultraGroupBoxCondition.Controls.Add(this.label24);
  1914. this.ultraGroupBoxCondition.Controls.Add(this.cmbMeterGroup);
  1915. this.ultraGroupBoxCondition.Controls.Add(this.cmbGradeName);
  1916. this.ultraGroupBoxCondition.Controls.Add(this.cmbMeterClass);
  1917. this.ultraGroupBoxCondition.Controls.Add(this.label23);
  1918. this.ultraGroupBoxCondition.Controls.Add(this.label22);
  1919. this.ultraGroupBoxCondition.Controls.Add(this.cmbSpcName);
  1920. this.ultraGroupBoxCondition.Controls.Add(this.label21);
  1921. this.ultraGroupBoxCondition.Controls.Add(this.label20);
  1922. this.ultraGroupBoxCondition.Controls.Add(this.cmbScaleState);
  1923. this.ultraGroupBoxCondition.Controls.Add(this.dtStartTime);
  1924. this.ultraGroupBoxCondition.Controls.Add(this.label4);
  1925. this.ultraGroupBoxCondition.Controls.Add(this.label3);
  1926. this.ultraGroupBoxCondition.Controls.Add(this.label2);
  1927. this.ultraGroupBoxCondition.Controls.Add(this.dtEndTime);
  1928. this.ultraGroupBoxCondition.Controls.Add(this.cmbPoint);
  1929. this.ultraGroupBoxCondition.Controls.Add(this.label1);
  1930. this.ultraGroupBoxCondition.Dock = System.Windows.Forms.DockStyle.Top;
  1931. this.ultraGroupBoxCondition.Location = new System.Drawing.Point(0, 0);
  1932. this.ultraGroupBoxCondition.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1933. this.ultraGroupBoxCondition.Name = "ultraGroupBoxCondition";
  1934. this.ultraGroupBoxCondition.Size = new System.Drawing.Size(1936, 115);
  1935. this.ultraGroupBoxCondition.TabIndex = 0;
  1936. this.ultraGroupBoxCondition.Text = "实绩查询条件";
  1937. this.ultraGroupBoxCondition.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1938. //
  1939. // ckFilter
  1940. //
  1941. this.ckFilter.AutoSize = true;
  1942. this.ckFilter.BackColor = System.Drawing.Color.Transparent;
  1943. this.ckFilter.Location = new System.Drawing.Point(1717, 81);
  1944. this.ckFilter.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1945. this.ckFilter.Name = "ckFilter";
  1946. this.ckFilter.Size = new System.Drawing.Size(89, 19);
  1947. this.ckFilter.TabIndex = 151;
  1948. this.ckFilter.Text = "是否过滤";
  1949. this.ckFilter.UseVisualStyleBackColor = false;
  1950. this.ckFilter.CheckedChanged += new System.EventHandler(this.ckFilter_CheckedChanged);
  1951. //
  1952. // cmbCheckState
  1953. //
  1954. this.cmbCheckState.Font = new System.Drawing.Font("宋体", 14F);
  1955. this.cmbCheckState.Location = new System.Drawing.Point(1444, 24);
  1956. this.cmbCheckState.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1957. this.cmbCheckState.Name = "cmbCheckState";
  1958. this.cmbCheckState.ReadOnly = true;
  1959. this.cmbCheckState.Size = new System.Drawing.Size(199, 34);
  1960. this.cmbCheckState.TabIndex = 146;
  1961. this.cmbCheckState.Text = "已审核";
  1962. //
  1963. // label24
  1964. //
  1965. this.label24.AutoSize = true;
  1966. this.label24.BackColor = System.Drawing.Color.Transparent;
  1967. this.label24.Location = new System.Drawing.Point(47, 81);
  1968. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1969. this.label24.Name = "label24";
  1970. this.label24.Size = new System.Drawing.Size(354, 15);
  1971. this.label24.TabIndex = 149;
  1972. this.label24.Text = "说 明:已作废数据为红色,已审核数据为黄绿色";
  1973. //
  1974. // cmbMeterGroup
  1975. //
  1976. this.cmbMeterGroup.CheckedListSettings.CheckStateMember = "";
  1977. appearance57.BackColor = System.Drawing.SystemColors.Window;
  1978. appearance57.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1979. this.cmbMeterGroup.DisplayLayout.Appearance = appearance57;
  1980. this.cmbMeterGroup.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1981. this.cmbMeterGroup.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1982. appearance58.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1983. appearance58.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1984. appearance58.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1985. appearance58.BorderColor = System.Drawing.SystemColors.Window;
  1986. this.cmbMeterGroup.DisplayLayout.GroupByBox.Appearance = appearance58;
  1987. appearance59.ForeColor = System.Drawing.SystemColors.GrayText;
  1988. this.cmbMeterGroup.DisplayLayout.GroupByBox.BandLabelAppearance = appearance59;
  1989. this.cmbMeterGroup.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1990. appearance60.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1991. appearance60.BackColor2 = System.Drawing.SystemColors.Control;
  1992. appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1993. appearance60.ForeColor = System.Drawing.SystemColors.GrayText;
  1994. this.cmbMeterGroup.DisplayLayout.GroupByBox.PromptAppearance = appearance60;
  1995. this.cmbMeterGroup.DisplayLayout.MaxColScrollRegions = 1;
  1996. this.cmbMeterGroup.DisplayLayout.MaxRowScrollRegions = 1;
  1997. appearance61.BackColor = System.Drawing.SystemColors.Window;
  1998. appearance61.ForeColor = System.Drawing.SystemColors.ControlText;
  1999. this.cmbMeterGroup.DisplayLayout.Override.ActiveCellAppearance = appearance61;
  2000. appearance62.BackColor = System.Drawing.SystemColors.Highlight;
  2001. appearance62.ForeColor = System.Drawing.SystemColors.HighlightText;
  2002. this.cmbMeterGroup.DisplayLayout.Override.ActiveRowAppearance = appearance62;
  2003. this.cmbMeterGroup.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2004. this.cmbMeterGroup.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2005. appearance63.BackColor = System.Drawing.SystemColors.Window;
  2006. this.cmbMeterGroup.DisplayLayout.Override.CardAreaAppearance = appearance63;
  2007. appearance64.BorderColor = System.Drawing.Color.Silver;
  2008. appearance64.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2009. this.cmbMeterGroup.DisplayLayout.Override.CellAppearance = appearance64;
  2010. this.cmbMeterGroup.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2011. this.cmbMeterGroup.DisplayLayout.Override.CellPadding = 0;
  2012. appearance65.BackColor = System.Drawing.SystemColors.Control;
  2013. appearance65.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2014. appearance65.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2015. appearance65.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2016. appearance65.BorderColor = System.Drawing.SystemColors.Window;
  2017. this.cmbMeterGroup.DisplayLayout.Override.GroupByRowAppearance = appearance65;
  2018. appearance66.TextHAlignAsString = "Left";
  2019. this.cmbMeterGroup.DisplayLayout.Override.HeaderAppearance = appearance66;
  2020. this.cmbMeterGroup.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2021. this.cmbMeterGroup.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2022. appearance67.BackColor = System.Drawing.SystemColors.Window;
  2023. appearance67.BorderColor = System.Drawing.Color.Silver;
  2024. this.cmbMeterGroup.DisplayLayout.Override.RowAppearance = appearance67;
  2025. this.cmbMeterGroup.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2026. appearance68.BackColor = System.Drawing.SystemColors.ControlLight;
  2027. this.cmbMeterGroup.DisplayLayout.Override.TemplateAddRowAppearance = appearance68;
  2028. this.cmbMeterGroup.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2029. this.cmbMeterGroup.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2030. this.cmbMeterGroup.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2031. this.cmbMeterGroup.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2032. this.cmbMeterGroup.Location = new System.Drawing.Point(1545, 74);
  2033. this.cmbMeterGroup.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2034. this.cmbMeterGroup.Name = "cmbMeterGroup";
  2035. this.cmbMeterGroup.Size = new System.Drawing.Size(93, 35);
  2036. this.cmbMeterGroup.TabIndex = 148;
  2037. //
  2038. // cmbGradeName
  2039. //
  2040. this.cmbGradeName.CheckedListSettings.CheckStateMember = "";
  2041. appearance40.BackColor = System.Drawing.SystemColors.Window;
  2042. appearance40.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2043. this.cmbGradeName.DisplayLayout.Appearance = appearance40;
  2044. this.cmbGradeName.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2045. this.cmbGradeName.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2046. appearance41.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2047. appearance41.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2048. appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2049. appearance41.BorderColor = System.Drawing.SystemColors.Window;
  2050. this.cmbGradeName.DisplayLayout.GroupByBox.Appearance = appearance41;
  2051. appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
  2052. this.cmbGradeName.DisplayLayout.GroupByBox.BandLabelAppearance = appearance42;
  2053. this.cmbGradeName.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2054. appearance43.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2055. appearance43.BackColor2 = System.Drawing.SystemColors.Control;
  2056. appearance43.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2057. appearance43.ForeColor = System.Drawing.SystemColors.GrayText;
  2058. this.cmbGradeName.DisplayLayout.GroupByBox.PromptAppearance = appearance43;
  2059. this.cmbGradeName.DisplayLayout.MaxColScrollRegions = 1;
  2060. this.cmbGradeName.DisplayLayout.MaxRowScrollRegions = 1;
  2061. appearance44.BackColor = System.Drawing.SystemColors.Window;
  2062. appearance44.ForeColor = System.Drawing.SystemColors.ControlText;
  2063. this.cmbGradeName.DisplayLayout.Override.ActiveCellAppearance = appearance44;
  2064. appearance45.BackColor = System.Drawing.SystemColors.Highlight;
  2065. appearance45.ForeColor = System.Drawing.SystemColors.HighlightText;
  2066. this.cmbGradeName.DisplayLayout.Override.ActiveRowAppearance = appearance45;
  2067. this.cmbGradeName.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2068. this.cmbGradeName.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2069. appearance46.BackColor = System.Drawing.SystemColors.Window;
  2070. this.cmbGradeName.DisplayLayout.Override.CardAreaAppearance = appearance46;
  2071. appearance47.BorderColor = System.Drawing.Color.Silver;
  2072. appearance47.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2073. this.cmbGradeName.DisplayLayout.Override.CellAppearance = appearance47;
  2074. this.cmbGradeName.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2075. this.cmbGradeName.DisplayLayout.Override.CellPadding = 0;
  2076. appearance48.BackColor = System.Drawing.SystemColors.Control;
  2077. appearance48.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2078. appearance48.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2079. appearance48.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2080. appearance48.BorderColor = System.Drawing.SystemColors.Window;
  2081. this.cmbGradeName.DisplayLayout.Override.GroupByRowAppearance = appearance48;
  2082. appearance49.TextHAlignAsString = "Left";
  2083. this.cmbGradeName.DisplayLayout.Override.HeaderAppearance = appearance49;
  2084. this.cmbGradeName.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2085. this.cmbGradeName.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2086. appearance50.BackColor = System.Drawing.SystemColors.Window;
  2087. appearance50.BorderColor = System.Drawing.Color.Silver;
  2088. this.cmbGradeName.DisplayLayout.Override.RowAppearance = appearance50;
  2089. this.cmbGradeName.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2090. appearance51.BackColor = System.Drawing.SystemColors.ControlLight;
  2091. this.cmbGradeName.DisplayLayout.Override.TemplateAddRowAppearance = appearance51;
  2092. this.cmbGradeName.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2093. this.cmbGradeName.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2094. this.cmbGradeName.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2095. this.cmbGradeName.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2096. this.cmbGradeName.Location = new System.Drawing.Point(1141, 74);
  2097. this.cmbGradeName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2098. this.cmbGradeName.Name = "cmbGradeName";
  2099. this.cmbGradeName.Size = new System.Drawing.Size(192, 35);
  2100. this.cmbGradeName.TabIndex = 147;
  2101. //
  2102. // cmbMeterClass
  2103. //
  2104. this.cmbMeterClass.CheckedListSettings.CheckStateMember = "";
  2105. appearance5.BackColor = System.Drawing.SystemColors.Window;
  2106. appearance5.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2107. this.cmbMeterClass.DisplayLayout.Appearance = appearance5;
  2108. this.cmbMeterClass.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2109. this.cmbMeterClass.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2110. appearance6.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2111. appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2112. appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2113. appearance6.BorderColor = System.Drawing.SystemColors.Window;
  2114. this.cmbMeterClass.DisplayLayout.GroupByBox.Appearance = appearance6;
  2115. appearance7.ForeColor = System.Drawing.SystemColors.GrayText;
  2116. this.cmbMeterClass.DisplayLayout.GroupByBox.BandLabelAppearance = appearance7;
  2117. this.cmbMeterClass.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2118. appearance8.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2119. appearance8.BackColor2 = System.Drawing.SystemColors.Control;
  2120. appearance8.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2121. appearance8.ForeColor = System.Drawing.SystemColors.GrayText;
  2122. this.cmbMeterClass.DisplayLayout.GroupByBox.PromptAppearance = appearance8;
  2123. this.cmbMeterClass.DisplayLayout.MaxColScrollRegions = 1;
  2124. this.cmbMeterClass.DisplayLayout.MaxRowScrollRegions = 1;
  2125. appearance9.BackColor = System.Drawing.SystemColors.Window;
  2126. appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
  2127. this.cmbMeterClass.DisplayLayout.Override.ActiveCellAppearance = appearance9;
  2128. appearance10.BackColor = System.Drawing.SystemColors.Highlight;
  2129. appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
  2130. this.cmbMeterClass.DisplayLayout.Override.ActiveRowAppearance = appearance10;
  2131. this.cmbMeterClass.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2132. this.cmbMeterClass.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2133. appearance11.BackColor = System.Drawing.SystemColors.Window;
  2134. this.cmbMeterClass.DisplayLayout.Override.CardAreaAppearance = appearance11;
  2135. appearance12.BorderColor = System.Drawing.Color.Silver;
  2136. appearance12.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2137. this.cmbMeterClass.DisplayLayout.Override.CellAppearance = appearance12;
  2138. this.cmbMeterClass.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2139. this.cmbMeterClass.DisplayLayout.Override.CellPadding = 0;
  2140. appearance29.BackColor = System.Drawing.SystemColors.Control;
  2141. appearance29.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2142. appearance29.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2143. appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2144. appearance29.BorderColor = System.Drawing.SystemColors.Window;
  2145. this.cmbMeterClass.DisplayLayout.Override.GroupByRowAppearance = appearance29;
  2146. appearance31.TextHAlignAsString = "Left";
  2147. this.cmbMeterClass.DisplayLayout.Override.HeaderAppearance = appearance31;
  2148. this.cmbMeterClass.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2149. this.cmbMeterClass.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2150. appearance32.BackColor = System.Drawing.SystemColors.Window;
  2151. appearance32.BorderColor = System.Drawing.Color.Silver;
  2152. this.cmbMeterClass.DisplayLayout.Override.RowAppearance = appearance32;
  2153. this.cmbMeterClass.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2154. appearance33.BackColor = System.Drawing.SystemColors.ControlLight;
  2155. this.cmbMeterClass.DisplayLayout.Override.TemplateAddRowAppearance = appearance33;
  2156. this.cmbMeterClass.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2157. this.cmbMeterClass.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2158. this.cmbMeterClass.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2159. this.cmbMeterClass.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2160. this.cmbMeterClass.Location = new System.Drawing.Point(1444, 74);
  2161. this.cmbMeterClass.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2162. this.cmbMeterClass.Name = "cmbMeterClass";
  2163. this.cmbMeterClass.Size = new System.Drawing.Size(93, 35);
  2164. this.cmbMeterClass.TabIndex = 147;
  2165. //
  2166. // label23
  2167. //
  2168. this.label23.AutoSize = true;
  2169. this.label23.BackColor = System.Drawing.Color.Transparent;
  2170. this.label23.Location = new System.Drawing.Point(1365, 84);
  2171. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2172. this.label23.Name = "label23";
  2173. this.label23.Size = new System.Drawing.Size(67, 15);
  2174. this.label23.TabIndex = 146;
  2175. this.label23.Text = "班次班组";
  2176. //
  2177. // label22
  2178. //
  2179. this.label22.AutoSize = true;
  2180. this.label22.BackColor = System.Drawing.Color.Transparent;
  2181. this.label22.Location = new System.Drawing.Point(1063, 81);
  2182. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2183. this.label22.Name = "label22";
  2184. this.label22.Size = new System.Drawing.Size(69, 15);
  2185. this.label22.TabIndex = 146;
  2186. this.label22.Text = "钢 种";
  2187. //
  2188. // cmbSpcName
  2189. //
  2190. this.cmbSpcName.CheckedListSettings.CheckStateMember = "";
  2191. appearance81.BackColor = System.Drawing.SystemColors.Window;
  2192. appearance81.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2193. this.cmbSpcName.DisplayLayout.Appearance = appearance81;
  2194. this.cmbSpcName.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2195. this.cmbSpcName.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2196. appearance82.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2197. appearance82.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2198. appearance82.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2199. appearance82.BorderColor = System.Drawing.SystemColors.Window;
  2200. this.cmbSpcName.DisplayLayout.GroupByBox.Appearance = appearance82;
  2201. appearance83.ForeColor = System.Drawing.SystemColors.GrayText;
  2202. this.cmbSpcName.DisplayLayout.GroupByBox.BandLabelAppearance = appearance83;
  2203. this.cmbSpcName.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2204. appearance84.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2205. appearance84.BackColor2 = System.Drawing.SystemColors.Control;
  2206. appearance84.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2207. appearance84.ForeColor = System.Drawing.SystemColors.GrayText;
  2208. this.cmbSpcName.DisplayLayout.GroupByBox.PromptAppearance = appearance84;
  2209. this.cmbSpcName.DisplayLayout.MaxColScrollRegions = 1;
  2210. this.cmbSpcName.DisplayLayout.MaxRowScrollRegions = 1;
  2211. appearance85.BackColor = System.Drawing.SystemColors.Window;
  2212. appearance85.ForeColor = System.Drawing.SystemColors.ControlText;
  2213. this.cmbSpcName.DisplayLayout.Override.ActiveCellAppearance = appearance85;
  2214. appearance86.BackColor = System.Drawing.SystemColors.Highlight;
  2215. appearance86.ForeColor = System.Drawing.SystemColors.HighlightText;
  2216. this.cmbSpcName.DisplayLayout.Override.ActiveRowAppearance = appearance86;
  2217. this.cmbSpcName.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2218. this.cmbSpcName.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2219. appearance87.BackColor = System.Drawing.SystemColors.Window;
  2220. this.cmbSpcName.DisplayLayout.Override.CardAreaAppearance = appearance87;
  2221. appearance88.BorderColor = System.Drawing.Color.Silver;
  2222. appearance88.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2223. this.cmbSpcName.DisplayLayout.Override.CellAppearance = appearance88;
  2224. this.cmbSpcName.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2225. this.cmbSpcName.DisplayLayout.Override.CellPadding = 0;
  2226. appearance89.BackColor = System.Drawing.SystemColors.Control;
  2227. appearance89.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2228. appearance89.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2229. appearance89.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2230. appearance89.BorderColor = System.Drawing.SystemColors.Window;
  2231. this.cmbSpcName.DisplayLayout.Override.GroupByRowAppearance = appearance89;
  2232. appearance90.TextHAlignAsString = "Left";
  2233. this.cmbSpcName.DisplayLayout.Override.HeaderAppearance = appearance90;
  2234. this.cmbSpcName.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2235. this.cmbSpcName.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2236. appearance91.BackColor = System.Drawing.SystemColors.Window;
  2237. appearance91.BorderColor = System.Drawing.Color.Silver;
  2238. this.cmbSpcName.DisplayLayout.Override.RowAppearance = appearance91;
  2239. this.cmbSpcName.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2240. appearance92.BackColor = System.Drawing.SystemColors.ControlLight;
  2241. this.cmbSpcName.DisplayLayout.Override.TemplateAddRowAppearance = appearance92;
  2242. this.cmbSpcName.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2243. this.cmbSpcName.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2244. this.cmbSpcName.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2245. this.cmbSpcName.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2246. this.cmbSpcName.Location = new System.Drawing.Point(827, 74);
  2247. this.cmbSpcName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2248. this.cmbSpcName.Name = "cmbSpcName";
  2249. this.cmbSpcName.Size = new System.Drawing.Size(200, 35);
  2250. this.cmbSpcName.TabIndex = 147;
  2251. //
  2252. // label21
  2253. //
  2254. this.label21.AutoSize = true;
  2255. this.label21.BackColor = System.Drawing.Color.Transparent;
  2256. this.label21.Location = new System.Drawing.Point(727, 84);
  2257. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2258. this.label21.Name = "label21";
  2259. this.label21.Size = new System.Drawing.Size(69, 15);
  2260. this.label21.TabIndex = 146;
  2261. this.label21.Text = "规 格";
  2262. //
  2263. // label20
  2264. //
  2265. this.label20.AutoSize = true;
  2266. this.label20.BackColor = System.Drawing.Color.Transparent;
  2267. this.label20.Location = new System.Drawing.Point(1365, 34);
  2268. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2269. this.label20.Name = "label20";
  2270. this.label20.Size = new System.Drawing.Size(67, 15);
  2271. this.label20.TabIndex = 114;
  2272. this.label20.Text = "审核状态";
  2273. //
  2274. // cmbScaleState
  2275. //
  2276. this.cmbScaleState.Font = new System.Drawing.Font("宋体", 14F);
  2277. this.cmbScaleState.Location = new System.Drawing.Point(1141, 25);
  2278. this.cmbScaleState.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2279. this.cmbScaleState.Name = "cmbScaleState";
  2280. this.cmbScaleState.Size = new System.Drawing.Size(192, 34);
  2281. this.cmbScaleState.TabIndex = 113;
  2282. //
  2283. // dtStartTime
  2284. //
  2285. this.dtStartTime.Cursor = System.Windows.Forms.Cursors.Default;
  2286. this.dtStartTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2287. this.dtStartTime.Font = new System.Drawing.Font("宋体", 12F);
  2288. this.dtStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2289. this.dtStartTime.Location = new System.Drawing.Point(116, 25);
  2290. this.dtStartTime.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
  2291. this.dtStartTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
  2292. this.dtStartTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  2293. this.dtStartTime.Name = "dtStartTime";
  2294. this.dtStartTime.Size = new System.Drawing.Size(265, 30);
  2295. this.dtStartTime.TabIndex = 112;
  2296. //
  2297. // label4
  2298. //
  2299. this.label4.AutoSize = true;
  2300. this.label4.BackColor = System.Drawing.Color.Transparent;
  2301. this.label4.Location = new System.Drawing.Point(388, 34);
  2302. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2303. this.label4.Name = "label4";
  2304. this.label4.Size = new System.Drawing.Size(22, 15);
  2305. this.label4.TabIndex = 111;
  2306. this.label4.Text = "至";
  2307. //
  2308. // label3
  2309. //
  2310. this.label3.AutoSize = true;
  2311. this.label3.BackColor = System.Drawing.Color.Transparent;
  2312. this.label3.Location = new System.Drawing.Point(1063, 34);
  2313. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2314. this.label3.Name = "label3";
  2315. this.label3.Size = new System.Drawing.Size(67, 15);
  2316. this.label3.TabIndex = 110;
  2317. this.label3.Text = "数据状态";
  2318. //
  2319. // label2
  2320. //
  2321. this.label2.AutoSize = true;
  2322. this.label2.BackColor = System.Drawing.Color.Transparent;
  2323. this.label2.Location = new System.Drawing.Point(727, 31);
  2324. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2325. this.label2.Name = "label2";
  2326. this.label2.Size = new System.Drawing.Size(68, 15);
  2327. this.label2.TabIndex = 109;
  2328. this.label2.Text = "计 量 点";
  2329. //
  2330. // cmbPoint
  2331. //
  2332. this.cmbPoint.CheckedListSettings.CheckStateMember = "";
  2333. appearance16.BackColor = System.Drawing.SystemColors.Window;
  2334. appearance16.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2335. this.cmbPoint.DisplayLayout.Appearance = appearance16;
  2336. this.cmbPoint.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2337. this.cmbPoint.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2338. appearance17.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2339. appearance17.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2340. appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2341. appearance17.BorderColor = System.Drawing.SystemColors.Window;
  2342. this.cmbPoint.DisplayLayout.GroupByBox.Appearance = appearance17;
  2343. appearance22.ForeColor = System.Drawing.SystemColors.GrayText;
  2344. this.cmbPoint.DisplayLayout.GroupByBox.BandLabelAppearance = appearance22;
  2345. this.cmbPoint.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2346. appearance23.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2347. appearance23.BackColor2 = System.Drawing.SystemColors.Control;
  2348. appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2349. appearance23.ForeColor = System.Drawing.SystemColors.GrayText;
  2350. this.cmbPoint.DisplayLayout.GroupByBox.PromptAppearance = appearance23;
  2351. this.cmbPoint.DisplayLayout.MaxColScrollRegions = 1;
  2352. this.cmbPoint.DisplayLayout.MaxRowScrollRegions = 1;
  2353. appearance24.BackColor = System.Drawing.SystemColors.Window;
  2354. appearance24.ForeColor = System.Drawing.SystemColors.ControlText;
  2355. this.cmbPoint.DisplayLayout.Override.ActiveCellAppearance = appearance24;
  2356. appearance26.BackColor = System.Drawing.SystemColors.Highlight;
  2357. appearance26.ForeColor = System.Drawing.SystemColors.HighlightText;
  2358. this.cmbPoint.DisplayLayout.Override.ActiveRowAppearance = appearance26;
  2359. this.cmbPoint.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2360. this.cmbPoint.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2361. appearance27.BackColor = System.Drawing.SystemColors.Window;
  2362. this.cmbPoint.DisplayLayout.Override.CardAreaAppearance = appearance27;
  2363. appearance28.BorderColor = System.Drawing.Color.Silver;
  2364. appearance28.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2365. this.cmbPoint.DisplayLayout.Override.CellAppearance = appearance28;
  2366. this.cmbPoint.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2367. this.cmbPoint.DisplayLayout.Override.CellPadding = 0;
  2368. appearance30.BackColor = System.Drawing.SystemColors.Control;
  2369. appearance30.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2370. appearance30.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2371. appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2372. appearance30.BorderColor = System.Drawing.SystemColors.Window;
  2373. this.cmbPoint.DisplayLayout.Override.GroupByRowAppearance = appearance30;
  2374. appearance54.TextHAlignAsString = "Left";
  2375. this.cmbPoint.DisplayLayout.Override.HeaderAppearance = appearance54;
  2376. this.cmbPoint.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2377. this.cmbPoint.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2378. appearance55.BackColor = System.Drawing.SystemColors.Window;
  2379. appearance55.BorderColor = System.Drawing.Color.Silver;
  2380. this.cmbPoint.DisplayLayout.Override.RowAppearance = appearance55;
  2381. this.cmbPoint.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2382. appearance56.BackColor = System.Drawing.SystemColors.ControlLight;
  2383. this.cmbPoint.DisplayLayout.Override.TemplateAddRowAppearance = appearance56;
  2384. this.cmbPoint.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2385. this.cmbPoint.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2386. this.cmbPoint.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2387. this.cmbPoint.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2388. this.cmbPoint.Location = new System.Drawing.Point(827, 24);
  2389. this.cmbPoint.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2390. this.cmbPoint.Name = "cmbPoint";
  2391. this.cmbPoint.Size = new System.Drawing.Size(200, 35);
  2392. this.cmbPoint.TabIndex = 12;
  2393. //
  2394. // label1
  2395. //
  2396. this.label1.AutoSize = true;
  2397. this.label1.BackColor = System.Drawing.Color.Transparent;
  2398. this.label1.Location = new System.Drawing.Point(41, 34);
  2399. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2400. this.label1.Name = "label1";
  2401. this.label1.Size = new System.Drawing.Size(67, 15);
  2402. this.label1.TabIndex = 108;
  2403. this.label1.Text = "过磅时间";
  2404. //
  2405. // dataColumn44
  2406. //
  2407. this.dataColumn44.Caption = "差值";
  2408. this.dataColumn44.ColumnName = "acDiffWeight";
  2409. //
  2410. // frmHotDeliveryActualQueryCheck
  2411. //
  2412. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  2413. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2414. this.ClientSize = new System.Drawing.Size(1942, 882);
  2415. this.Controls.Add(this.ultraGroupBox1);
  2416. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  2417. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2418. this.Name = "frmHotDeliveryActualQueryCheck";
  2419. this.Text = "实绩查询界面(实施)";
  2420. this.Load += new System.EventHandler(this.frmHotDeliveryActualQueryCheck_Load);
  2421. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2422. this.panel1.ResumeLayout(false);
  2423. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  2424. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2425. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2426. this.ultraGroupBox1.ResumeLayout(false);
  2427. this.panel2.ResumeLayout(false);
  2428. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  2429. this.ultraGroupBox4.ResumeLayout(false);
  2430. this.panel2Query.ResumeLayout(false);
  2431. this.panel2Query.PerformLayout();
  2432. ((System.ComponentModel.ISupportInitialize)(this.ultraGridScale)).EndInit();
  2433. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxEdit)).EndInit();
  2434. this.ultraGroupBoxEdit.ResumeLayout(false);
  2435. this.ultraGroupBoxEdit.PerformLayout();
  2436. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroupUp)).EndInit();
  2437. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClassUp)).EndInit();
  2438. ((System.ComponentModel.ISupportInitialize)(this.numReferWeight)).EndInit();
  2439. ((System.ComponentModel.ISupportInitialize)(this.numTareWeight)).EndInit();
  2440. ((System.ComponentModel.ISupportInitialize)(this.numNetWeight)).EndInit();
  2441. ((System.ComponentModel.ISupportInitialize)(this.numCollectWeight)).EndInit();
  2442. ((System.ComponentModel.ISupportInitialize)(this.cmbGradeNameUp)).EndInit();
  2443. ((System.ComponentModel.ISupportInitialize)(this.cmbSpcNameUp)).EndInit();
  2444. ((System.ComponentModel.ISupportInitialize)(this.cmbPointUp)).EndInit();
  2445. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxCondition)).EndInit();
  2446. this.ultraGroupBoxCondition.ResumeLayout(false);
  2447. this.ultraGroupBoxCondition.PerformLayout();
  2448. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroup)).EndInit();
  2449. ((System.ComponentModel.ISupportInitialize)(this.cmbGradeName)).EndInit();
  2450. ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClass)).EndInit();
  2451. ((System.ComponentModel.ISupportInitialize)(this.cmbSpcName)).EndInit();
  2452. ((System.ComponentModel.ISupportInitialize)(this.cmbScaleState)).EndInit();
  2453. ((System.ComponentModel.ISupportInitialize)(this.cmbPoint)).EndInit();
  2454. this.ResumeLayout(false);
  2455. }
  2456. #endregion
  2457. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  2458. private System.Data.DataSet dataSet2;
  2459. private System.Data.DataTable dataTable1;
  2460. private System.Data.DataColumn dataColumn1;
  2461. private System.Data.DataColumn dataColumn2;
  2462. private System.Data.DataColumn dataColumn3;
  2463. private System.Data.DataColumn dataColumn9;
  2464. private System.Data.DataColumn dataColumn4;
  2465. private System.Data.DataColumn dataColumn5;
  2466. private System.Data.DataColumn dataColumn6;
  2467. private System.Data.DataColumn dataColumn7;
  2468. private System.Data.DataColumn dataColumn8;
  2469. private System.Data.DataColumn dataColumn10;
  2470. private System.Data.DataColumn dataColumn11;
  2471. private System.Data.DataColumn dataColumn12;
  2472. private System.Data.DataColumn dataColumn13;
  2473. private System.Data.DataColumn dataColumn14;
  2474. private System.Data.DataColumn dataColumn15;
  2475. private System.Data.DataColumn dataColumn16;
  2476. private System.Data.DataColumn dataColumn17;
  2477. private System.Data.DataColumn dataColumn18;
  2478. private System.Data.DataColumn dataColumn19;
  2479. private System.Data.DataColumn dataColumn20;
  2480. private System.Data.DataColumn dataColumn21;
  2481. private System.Data.DataColumn dataColumn22;
  2482. private System.Data.DataColumn dataColumn23;
  2483. private System.Data.DataColumn dataColumn24;
  2484. private System.Data.DataColumn dataColumn25;
  2485. private System.Data.DataColumn dataColumn26;
  2486. private System.Data.DataColumn dataColumn27;
  2487. private System.Data.DataColumn dataColumn28;
  2488. private System.Data.DataColumn dataColumn29;
  2489. private System.Data.DataColumn dataColumn30;
  2490. private System.Data.DataColumn dataColumn31;
  2491. private System.Data.DataColumn dataColumn32;
  2492. private System.Data.DataColumn dataColumn33;
  2493. private System.Data.DataColumn dataColumn34;
  2494. private System.Data.DataColumn dataColumn35;
  2495. private System.Windows.Forms.Panel panel1;
  2496. private Infragistics.Win.UltraWinGrid.UltraCombo cmbPoint;
  2497. private System.Windows.Forms.DateTimePicker dtEndTime;
  2498. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  2499. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  2500. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  2501. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  2502. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2503. private System.Windows.Forms.Panel panel2;
  2504. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  2505. private System.Windows.Forms.Panel panel2Query;
  2506. private System.Windows.Forms.CheckBox cbAll;
  2507. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridScale;
  2508. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBoxEdit;
  2509. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBoxCondition;
  2510. private System.Windows.Forms.Panel panel1_Fill_Panel;
  2511. private System.Windows.Forms.Label label3;
  2512. private System.Windows.Forms.Label label2;
  2513. private System.Windows.Forms.Label label1;
  2514. private System.Windows.Forms.Label label4;
  2515. private System.Windows.Forms.DateTimePicker dtStartTime;
  2516. private System.Data.DataColumn dataColumn36;
  2517. private System.Data.DataColumn dataColumn37;
  2518. private System.Data.DataColumn dataColumn38;
  2519. private System.Data.DataColumn dataColumn39;
  2520. private System.Data.DataColumn dataColumn40;
  2521. private System.Data.DataColumn dataColumn41;
  2522. private System.Data.DataColumn dataColumn42;
  2523. private System.Data.DataColumn dataColumn43;
  2524. private Infragistics.Win.UltraWinGrid.UltraCombo cmbPointUp;
  2525. private System.Windows.Forms.Label label5;
  2526. private System.Windows.Forms.Label label6;
  2527. private System.Windows.Forms.Label label7;
  2528. private Infragistics.Win.UltraWinGrid.UltraCombo cmbGradeNameUp;
  2529. private System.Windows.Forms.Label label8;
  2530. private Infragistics.Win.UltraWinGrid.UltraCombo cmbSpcNameUp;
  2531. private System.Windows.Forms.TextBox tbBlockNumUp;
  2532. private System.Windows.Forms.Label label12;
  2533. private System.Windows.Forms.TextBox tbPackageNoUp;
  2534. private System.Windows.Forms.Label label11;
  2535. private System.Windows.Forms.TextBox tbTheoreticalWeightUp;
  2536. private System.Windows.Forms.Label label9;
  2537. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbScaleState;
  2538. private System.Windows.Forms.Label label15;
  2539. private System.Windows.Forms.Label label14;
  2540. private System.Windows.Forms.Label label13;
  2541. private System.Windows.Forms.Label label16;
  2542. private System.Windows.Forms.Label label17;
  2543. private System.Windows.Forms.NumericUpDown numCollectWeight;
  2544. private System.Windows.Forms.TextBox tbPredictionNo;
  2545. private System.Windows.Forms.Label label18;
  2546. private System.Windows.Forms.NumericUpDown numReferWeight;
  2547. private System.Windows.Forms.NumericUpDown numTareWeight;
  2548. private System.Windows.Forms.NumericUpDown numNetWeight;
  2549. private System.Windows.Forms.TextBox tbMemo;
  2550. private System.Windows.Forms.Label label19;
  2551. private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterGroupUp;
  2552. private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterClassUp;
  2553. private System.Windows.Forms.Label label10;
  2554. private System.Windows.Forms.Label label20;
  2555. private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterGroup;
  2556. private Infragistics.Win.UltraWinGrid.UltraCombo cmbGradeName;
  2557. private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterClass;
  2558. private System.Windows.Forms.Label label23;
  2559. private System.Windows.Forms.Label label22;
  2560. private Infragistics.Win.UltraWinGrid.UltraCombo cmbSpcName;
  2561. private System.Windows.Forms.Label label21;
  2562. private System.Windows.Forms.Label label24;
  2563. private System.Windows.Forms.TextBox tbHeatNoUp;
  2564. private System.Windows.Forms.TextBox cmbCheckState;
  2565. private System.Windows.Forms.CheckBox ckFilter;
  2566. private System.Data.DataColumn dataColumn44;
  2567. }
  2568. }