frmMain.Designer.cs 162 KB

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