frmHotDeliveryActualCheck.Designer.cs 164 KB

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