frmHotDeliveryActualQueryAll.Designer.cs 168 KB

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