frmHotDeliveryActual.Designer.cs 179 KB

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