FrmTundishManage.Designer.cs 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. namespace Core.LgMes.Client.LgDeviceManager
  2. {
  3. partial class FrmTundishManage
  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.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("TUNDISHID");
  30. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("AGE");
  31. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATUS");
  32. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("NOWPOSITION");
  33. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("LADLELIDID");
  34. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ONCLASS");
  35. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn7 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATIONS");
  36. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn8 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("UPLADLETIME");
  37. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn9 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("GRUDE");
  38. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn10 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MOULDID");
  39. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn11 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MINFIREBEGINTIME");
  40. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn12 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MIDDLEFIREBEGINTIME");
  41. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn13 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MAXBEGINTIME");
  42. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn14 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CYCID");
  43. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn15 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("OPENWCLASS");
  44. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn16 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("BEGINTIME");
  45. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn17 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ENDTIME");
  46. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn18 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("REASON");
  47. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn19 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("TUNDISHUSE");
  48. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn20 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CHECKNAME");
  49. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn21 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FACTORYNAME");
  50. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn22 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("SLIDEGATENOZZLEFACTROY");
  51. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn23 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("DOPEFACTROY");
  52. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn24 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("UPNOZZLEFACTROY");
  53. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn25 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STICKFACTROY");
  54. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn26 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("DOWNNOZZLEFACTROY");
  55. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn27 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MEMO");
  56. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn28 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ID");
  57. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  60. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  61. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  62. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  67. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  70. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  71. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  73. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  74. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  75. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  76. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  78. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  79. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  80. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  81. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TUNDISHID");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AGE");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NOWPOSITION");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LADLELIDID");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ONCLASS");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATIONS");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPLADLETIME");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRUDE");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MOULDID");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINFIREBEGINTIME");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MIDDLEFIREBEGINTIME");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAXBEGINTIME");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CYCID");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OPENWCLASS");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BEGINTIME");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ENDTIME");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REASON");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TUNDISHUSE");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKNAME");
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FACTORYNAME");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLIDEGATENOZZLEFACTROY");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DOPEFACTROY");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPNOZZLEFACTROY");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STICKFACTROY");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DOWNNOZZLEFACTROY");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  114. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(463841501);
  117. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  118. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  119. Infragistics.Win.ValueList valueList2 = new Infragistics.Win.ValueList(465061454);
  120. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  121. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  122. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  123. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  124. Infragistics.Win.ValueList valueList3 = new Infragistics.Win.ValueList(875567876);
  125. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  126. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  127. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  128. Infragistics.Win.ValueList valueList4 = new Infragistics.Win.ValueList(954418485);
  129. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  130. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  131. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  132. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  133. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TUNDISHID");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AGE");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CCM_ID");
  139. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATIONS");
  140. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATIVEDATE");
  141. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYDATE");
  142. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  143. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("THELEVEL");
  144. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USETIMES");
  145. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PARAID");
  146. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  147. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.ValueList valueList5 = new Infragistics.Win.ValueList(891407563);
  150. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  151. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  152. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  153. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn29 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("TUNDISHID");
  154. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn30 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("AGE");
  155. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn31 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATUS");
  156. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn32 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CCM_ID");
  157. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn33 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATIONS");
  158. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn34 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CREATIVEDATE");
  159. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn35 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("BUYDATE");
  160. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn36 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MEMO");
  161. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn37 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("THELEVEL");
  162. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn38 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("USETIMES");
  163. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn39 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("PARAID");
  164. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn40 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ID");
  165. this.udsrUseInfo = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
  166. this.ucmeID = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  167. this.ucmeZJH = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  168. this.label1 = new System.Windows.Forms.Label();
  169. this.udteEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  170. this.udteStart = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  171. this.chkZJH = new System.Windows.Forms.CheckBox();
  172. this.chkID = new System.Windows.Forms.CheckBox();
  173. this.chkDate = new System.Windows.Forms.CheckBox();
  174. this.ulexpgrpModel = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  175. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  176. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  177. this.lblTundishName2 = new System.Windows.Forms.Label();
  178. this.txtTundishName = new System.Windows.Forms.TextBox();
  179. this.btn_MinFire = new Infragistics.Win.Misc.UltraButton();
  180. this.udteMinFireBeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  181. this.btn_MiddleFire = new Infragistics.Win.Misc.UltraButton();
  182. this.lblMinFireBeginTime = new System.Windows.Forms.Label();
  183. this.udteMiddleFireBeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  184. this.btnClrMid = new Infragistics.Win.Misc.UltraButton();
  185. this.btnClrMax = new Infragistics.Win.Misc.UltraButton();
  186. this.lblMiddleFireBeginTime = new System.Windows.Forms.Label();
  187. this.lblMaxFireBeginTime = new System.Windows.Forms.Label();
  188. this.btn_MaxFire = new Infragistics.Win.Misc.UltraButton();
  189. this.btnClrMin = new Infragistics.Win.Misc.UltraButton();
  190. this.udteMaxFireBeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  191. this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
  192. this.ucmeGrude = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  193. this.lblTundishName = new System.Windows.Forms.Label();
  194. this.ucmeDownNozzleFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  195. this.txtAge = new System.Windows.Forms.TextBox();
  196. this.ucmeUpNozzleFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  197. this.lblSlidegateNozzleFactory = new System.Windows.Forms.Label();
  198. this.ucmeSlidegateNozzleFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  199. this.lblUpLableDate = new System.Windows.Forms.Label();
  200. this.ucmeStickFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  201. this.lblReason = new System.Windows.Forms.Label();
  202. this.ucmeDopeFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  203. this.lblBeginDate = new System.Windows.Forms.Label();
  204. this.ucmeReason = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  205. this.lblDownNozzleFactory = new System.Windows.Forms.Label();
  206. this.ucmeClass = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  207. this.lblStickFactory = new System.Windows.Forms.Label();
  208. this.ucmeUpClass = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  209. this.lblUpNozzleFactory = new System.Windows.Forms.Label();
  210. this.txtTundishName1 = new System.Windows.Forms.TextBox();
  211. this.lblDopeFactory = new System.Windows.Forms.Label();
  212. this.lblFactoryName = new System.Windows.Forms.Label();
  213. this.lblAge = new System.Windows.Forms.Label();
  214. this.txtFactoryName = new System.Windows.Forms.TextBox();
  215. this.lblMouldID = new System.Windows.Forms.Label();
  216. this.lblCheckName = new System.Windows.Forms.Label();
  217. this.txtMouldID = new System.Windows.Forms.TextBox();
  218. this.txtCheckName = new System.Windows.Forms.TextBox();
  219. this.txtMemo = new System.Windows.Forms.TextBox();
  220. this.lblClass = new System.Windows.Forms.Label();
  221. this.lblMemo = new System.Windows.Forms.Label();
  222. this.udtpEndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  223. this.lblGrude = new System.Windows.Forms.Label();
  224. this.lblEndTime = new System.Windows.Forms.Label();
  225. this.lblStatus = new System.Windows.Forms.Label();
  226. this.lblUpClass = new System.Windows.Forms.Label();
  227. this.cmbStatus = new System.Windows.Forms.ComboBox();
  228. this.cmbPositionId = new System.Windows.Forms.ComboBox();
  229. this.lblCcmPositionID = new System.Windows.Forms.Label();
  230. this.lblPositionId = new System.Windows.Forms.Label();
  231. this.label3 = new System.Windows.Forms.Label();
  232. this.uldtpUpLableDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  233. this.uldtpBeginDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  234. this.lblLadlelId = new System.Windows.Forms.Label();
  235. this.cmbCcmPositionID = new System.Windows.Forms.ComboBox();
  236. this.txtLadlelId = new System.Windows.Forms.TextBox();
  237. this.txtTundidhUse = new System.Windows.Forms.TextBox();
  238. this.lblTundidhUse = new System.Windows.Forms.Label();
  239. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  240. this.ugrdUseInfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
  241. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  242. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  243. this.ugrdBaseInfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
  244. this.udsrBaseInfo = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
  245. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  246. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  247. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  248. this.splitter2 = new System.Windows.Forms.Splitter();
  249. ((System.ComponentModel.ISupportInitialize)(this.udsrUseInfo)).BeginInit();
  250. ((System.ComponentModel.ISupportInitialize)(this.ucmeID)).BeginInit();
  251. ((System.ComponentModel.ISupportInitialize)(this.ucmeZJH)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.udteEnd)).BeginInit();
  253. ((System.ComponentModel.ISupportInitialize)(this.udteStart)).BeginInit();
  254. this.ulexpgrpModel.SuspendLayout();
  255. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  256. this.ultraGroupBox1.SuspendLayout();
  257. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  258. this.ultraGroupBox2.SuspendLayout();
  259. ((System.ComponentModel.ISupportInitialize)(this.udteMinFireBeginTime)).BeginInit();
  260. ((System.ComponentModel.ISupportInitialize)(this.udteMiddleFireBeginTime)).BeginInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.udteMaxFireBeginTime)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
  263. this.ultraGroupBox5.SuspendLayout();
  264. ((System.ComponentModel.ISupportInitialize)(this.ucmeGrude)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.ucmeDownNozzleFactory)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.ucmeUpNozzleFactory)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.ucmeSlidegateNozzleFactory)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.ucmeStickFactory)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.ucmeDopeFactory)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.ucmeReason)).BeginInit();
  271. ((System.ComponentModel.ISupportInitialize)(this.ucmeClass)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.ucmeUpClass)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.udtpEndTime)).BeginInit();
  274. ((System.ComponentModel.ISupportInitialize)(this.uldtpUpLableDate)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.uldtpBeginDate)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  277. this.ultraExpandableGroupBox1.SuspendLayout();
  278. ((System.ComponentModel.ISupportInitialize)(this.ugrdUseInfo)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  280. this.ultraExpandableGroupBox2.SuspendLayout();
  281. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  282. ((System.ComponentModel.ISupportInitialize)(this.ugrdBaseInfo)).BeginInit();
  283. ((System.ComponentModel.ISupportInitialize)(this.udsrBaseInfo)).BeginInit();
  284. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  285. this.ultraGroupBox3.SuspendLayout();
  286. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  287. this.ultraGroupBox4.SuspendLayout();
  288. this.ultraPanel1.ClientArea.SuspendLayout();
  289. this.ultraPanel1.SuspendLayout();
  290. this.SuspendLayout();
  291. //
  292. // udsrUseInfo
  293. //
  294. this.udsrUseInfo.Band.Columns.AddRange(new object[] {
  295. ultraDataColumn1,
  296. ultraDataColumn2,
  297. ultraDataColumn3,
  298. ultraDataColumn4,
  299. ultraDataColumn5,
  300. ultraDataColumn6,
  301. ultraDataColumn7,
  302. ultraDataColumn8,
  303. ultraDataColumn9,
  304. ultraDataColumn10,
  305. ultraDataColumn11,
  306. ultraDataColumn12,
  307. ultraDataColumn13,
  308. ultraDataColumn14,
  309. ultraDataColumn15,
  310. ultraDataColumn16,
  311. ultraDataColumn17,
  312. ultraDataColumn18,
  313. ultraDataColumn19,
  314. ultraDataColumn20,
  315. ultraDataColumn21,
  316. ultraDataColumn22,
  317. ultraDataColumn23,
  318. ultraDataColumn24,
  319. ultraDataColumn25,
  320. ultraDataColumn26,
  321. ultraDataColumn27,
  322. ultraDataColumn28});
  323. //
  324. // ucmeID
  325. //
  326. appearance2.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  327. appearance2.BorderColor = System.Drawing.Color.Black;
  328. this.ucmeID.Appearance = appearance2;
  329. this.ucmeID.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  330. this.ucmeID.Enabled = false;
  331. this.ucmeID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  332. this.ucmeID.Location = new System.Drawing.Point(284, 9);
  333. this.ucmeID.Name = "ucmeID";
  334. this.ucmeID.Size = new System.Drawing.Size(97, 19);
  335. this.ucmeID.TabIndex = 290;
  336. this.ucmeID.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  337. //
  338. // ucmeZJH
  339. //
  340. appearance3.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  341. appearance3.BorderColor = System.Drawing.Color.Black;
  342. this.ucmeZJH.Appearance = appearance3;
  343. this.ucmeZJH.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  344. this.ucmeZJH.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  345. this.ucmeZJH.Enabled = false;
  346. this.ucmeZJH.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  347. valueListItem2.DataValue = "1";
  348. valueListItem2.DisplayText = "1#连铸机";
  349. valueListItem3.DataValue = "2";
  350. valueListItem3.DisplayText = "2#连铸机";
  351. valueListItem4.DataValue = "3";
  352. valueListItem4.DisplayText = "3#连铸机";
  353. this.ucmeZJH.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  354. valueListItem2,
  355. valueListItem3,
  356. valueListItem4});
  357. this.ucmeZJH.Location = new System.Drawing.Point(84, 9);
  358. this.ucmeZJH.Name = "ucmeZJH";
  359. this.ucmeZJH.Size = new System.Drawing.Size(97, 19);
  360. this.ucmeZJH.TabIndex = 289;
  361. this.ucmeZJH.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  362. this.ucmeZJH.SelectionChanged += new System.EventHandler(this.cbbZJH_SelectedIndexChanged);
  363. //
  364. // label1
  365. //
  366. this.label1.BackColor = System.Drawing.Color.Transparent;
  367. this.label1.Location = new System.Drawing.Point(636, 12);
  368. this.label1.Name = "label1";
  369. this.label1.Size = new System.Drawing.Size(21, 14);
  370. this.label1.TabIndex = 0;
  371. this.label1.Text = "到";
  372. //
  373. // udteEnd
  374. //
  375. this.udteEnd.Enabled = false;
  376. this.udteEnd.Location = new System.Drawing.Point(663, 7);
  377. this.udteEnd.MaskInput = "{date}";
  378. this.udteEnd.Name = "udteEnd";
  379. this.udteEnd.Size = new System.Drawing.Size(117, 23);
  380. this.udteEnd.TabIndex = 6;
  381. //
  382. // udteStart
  383. //
  384. this.udteStart.Enabled = false;
  385. this.udteStart.Location = new System.Drawing.Point(514, 8);
  386. this.udteStart.MaskInput = "{date}";
  387. this.udteStart.Name = "udteStart";
  388. this.udteStart.Size = new System.Drawing.Size(117, 23);
  389. this.udteStart.TabIndex = 5;
  390. //
  391. // chkZJH
  392. //
  393. this.chkZJH.BackColor = System.Drawing.Color.Transparent;
  394. this.chkZJH.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  395. this.chkZJH.Location = new System.Drawing.Point(20, 10);
  396. this.chkZJH.Name = "chkZJH";
  397. this.chkZJH.Size = new System.Drawing.Size(65, 18);
  398. this.chkZJH.TabIndex = 0;
  399. this.chkZJH.Text = "铸机号";
  400. this.chkZJH.UseVisualStyleBackColor = false;
  401. this.chkZJH.CheckedChanged += new System.EventHandler(this.chkQPositionID_CheckedChanged);
  402. //
  403. // chkID
  404. //
  405. this.chkID.BackColor = System.Drawing.Color.Transparent;
  406. this.chkID.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  407. this.chkID.Location = new System.Drawing.Point(194, 10);
  408. this.chkID.Name = "chkID";
  409. this.chkID.Size = new System.Drawing.Size(93, 18);
  410. this.chkID.TabIndex = 2;
  411. this.chkID.Text = "中间包编号";
  412. this.chkID.UseVisualStyleBackColor = false;
  413. this.chkID.CheckedChanged += new System.EventHandler(this.chkQTundishName_CheckedChanged);
  414. //
  415. // chkDate
  416. //
  417. this.chkDate.BackColor = System.Drawing.Color.Transparent;
  418. this.chkDate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  419. this.chkDate.Location = new System.Drawing.Point(393, 10);
  420. this.chkDate.Name = "chkDate";
  421. this.chkDate.Size = new System.Drawing.Size(121, 18);
  422. this.chkDate.TabIndex = 4;
  423. this.chkDate.Text = "上包时间 从:";
  424. this.chkDate.UseVisualStyleBackColor = false;
  425. this.chkDate.CheckedChanged += new System.EventHandler(this.cbDate_CheckedChanged);
  426. //
  427. // ulexpgrpModel
  428. //
  429. this.ulexpgrpModel.Controls.Add(this.ultraGroupBox1);
  430. this.ulexpgrpModel.Dock = System.Windows.Forms.DockStyle.Fill;
  431. this.ulexpgrpModel.Location = new System.Drawing.Point(2, 20);
  432. this.ulexpgrpModel.Name = "ulexpgrpModel";
  433. this.ulexpgrpModel.Size = new System.Drawing.Size(1021, 255);
  434. this.ulexpgrpModel.TabIndex = 0;
  435. //
  436. // ultraGroupBox1
  437. //
  438. this.ultraGroupBox1.Controls.Add(this.ultraGroupBox2);
  439. this.ultraGroupBox1.Controls.Add(this.ultraGroupBox5);
  440. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  441. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  442. this.ultraGroupBox1.Name = "ultraGroupBox1";
  443. this.ultraGroupBox1.Size = new System.Drawing.Size(1021, 255);
  444. this.ultraGroupBox1.TabIndex = 331;
  445. //
  446. // ultraGroupBox2
  447. //
  448. this.ultraGroupBox2.Controls.Add(this.lblTundishName2);
  449. this.ultraGroupBox2.Controls.Add(this.txtTundishName);
  450. this.ultraGroupBox2.Controls.Add(this.btn_MinFire);
  451. this.ultraGroupBox2.Controls.Add(this.udteMinFireBeginTime);
  452. this.ultraGroupBox2.Controls.Add(this.btn_MiddleFire);
  453. this.ultraGroupBox2.Controls.Add(this.lblMinFireBeginTime);
  454. this.ultraGroupBox2.Controls.Add(this.udteMiddleFireBeginTime);
  455. this.ultraGroupBox2.Controls.Add(this.btnClrMid);
  456. this.ultraGroupBox2.Controls.Add(this.btnClrMax);
  457. this.ultraGroupBox2.Controls.Add(this.lblMiddleFireBeginTime);
  458. this.ultraGroupBox2.Controls.Add(this.lblMaxFireBeginTime);
  459. this.ultraGroupBox2.Controls.Add(this.btn_MaxFire);
  460. this.ultraGroupBox2.Controls.Add(this.btnClrMin);
  461. this.ultraGroupBox2.Controls.Add(this.udteMaxFireBeginTime);
  462. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  463. this.ultraGroupBox2.Location = new System.Drawing.Point(679, 0);
  464. this.ultraGroupBox2.Name = "ultraGroupBox2";
  465. this.ultraGroupBox2.Size = new System.Drawing.Size(339, 252);
  466. this.ultraGroupBox2.TabIndex = 3;
  467. this.ultraGroupBox2.Text = "烘烤记录";
  468. //
  469. // lblTundishName2
  470. //
  471. this.lblTundishName2.AutoSize = true;
  472. this.lblTundishName2.BackColor = System.Drawing.Color.Transparent;
  473. this.lblTundishName2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  474. this.lblTundishName2.Location = new System.Drawing.Point(22, 33);
  475. this.lblTundishName2.Name = "lblTundishName2";
  476. this.lblTundishName2.Size = new System.Drawing.Size(65, 12);
  477. this.lblTundishName2.TabIndex = 0;
  478. this.lblTundishName2.Text = "中间包编号";
  479. //
  480. // txtTundishName
  481. //
  482. this.txtTundishName.AcceptsReturn = true;
  483. this.txtTundishName.Enabled = false;
  484. this.txtTundishName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  485. this.txtTundishName.Location = new System.Drawing.Point(92, 27);
  486. this.txtTundishName.Name = "txtTundishName";
  487. this.txtTundishName.ReadOnly = true;
  488. this.txtTundishName.Size = new System.Drawing.Size(151, 21);
  489. this.txtTundishName.TabIndex = 1;
  490. this.txtTundishName.Text = " ";
  491. //
  492. // btn_MinFire
  493. //
  494. this.btn_MinFire.BackColorInternal = System.Drawing.Color.Transparent;
  495. this.btn_MinFire.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  496. this.btn_MinFire.Location = new System.Drawing.Point(245, 54);
  497. this.btn_MinFire.Name = "btn_MinFire";
  498. this.btn_MinFire.Size = new System.Drawing.Size(45, 22);
  499. this.btn_MinFire.TabIndex = 3;
  500. this.btn_MinFire.Text = "确定";
  501. this.btn_MinFire.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  502. this.btn_MinFire.Click += new System.EventHandler(this.btn_MinFire_Click);
  503. //
  504. // udteMinFireBeginTime
  505. //
  506. this.udteMinFireBeginTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
  507. this.udteMinFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  508. this.udteMinFireBeginTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
  509. this.udteMinFireBeginTime.FormatString = "yyyy-MM-dd HH:mm:ss";
  510. this.udteMinFireBeginTime.Location = new System.Drawing.Point(92, 55);
  511. this.udteMinFireBeginTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
  512. this.udteMinFireBeginTime.Name = "udteMinFireBeginTime";
  513. this.udteMinFireBeginTime.Size = new System.Drawing.Size(151, 21);
  514. this.udteMinFireBeginTime.TabIndex = 2;
  515. this.udteMinFireBeginTime.Value = null;
  516. //
  517. // btn_MiddleFire
  518. //
  519. this.btn_MiddleFire.BackColorInternal = System.Drawing.Color.Transparent;
  520. this.btn_MiddleFire.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  521. this.btn_MiddleFire.Location = new System.Drawing.Point(245, 82);
  522. this.btn_MiddleFire.Name = "btn_MiddleFire";
  523. this.btn_MiddleFire.Size = new System.Drawing.Size(45, 22);
  524. this.btn_MiddleFire.TabIndex = 6;
  525. this.btn_MiddleFire.Text = "确定";
  526. this.btn_MiddleFire.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  527. this.btn_MiddleFire.Click += new System.EventHandler(this.btn_MiddleFire_Click);
  528. //
  529. // lblMinFireBeginTime
  530. //
  531. this.lblMinFireBeginTime.AutoSize = true;
  532. this.lblMinFireBeginTime.BackColor = System.Drawing.Color.Transparent;
  533. this.lblMinFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  534. this.lblMinFireBeginTime.Location = new System.Drawing.Point(10, 61);
  535. this.lblMinFireBeginTime.Name = "lblMinFireBeginTime";
  536. this.lblMinFireBeginTime.Size = new System.Drawing.Size(77, 12);
  537. this.lblMinFireBeginTime.TabIndex = 0;
  538. this.lblMinFireBeginTime.Text = "小火开始时间";
  539. //
  540. // udteMiddleFireBeginTime
  541. //
  542. this.udteMiddleFireBeginTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
  543. this.udteMiddleFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  544. this.udteMiddleFireBeginTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
  545. this.udteMiddleFireBeginTime.FormatString = "yyyy-MM-dd HH:mm:ss";
  546. this.udteMiddleFireBeginTime.Location = new System.Drawing.Point(92, 83);
  547. this.udteMiddleFireBeginTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
  548. this.udteMiddleFireBeginTime.Name = "udteMiddleFireBeginTime";
  549. this.udteMiddleFireBeginTime.Size = new System.Drawing.Size(151, 21);
  550. this.udteMiddleFireBeginTime.TabIndex = 5;
  551. this.udteMiddleFireBeginTime.Value = null;
  552. //
  553. // btnClrMid
  554. //
  555. this.btnClrMid.BackColorInternal = System.Drawing.Color.Transparent;
  556. this.btnClrMid.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  557. this.btnClrMid.Location = new System.Drawing.Point(293, 82);
  558. this.btnClrMid.Name = "btnClrMid";
  559. this.btnClrMid.Size = new System.Drawing.Size(45, 22);
  560. this.btnClrMid.TabIndex = 7;
  561. this.btnClrMid.Text = "清除";
  562. this.btnClrMid.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  563. this.btnClrMid.Click += new System.EventHandler(this.btnClrMid_Click);
  564. //
  565. // btnClrMax
  566. //
  567. this.btnClrMax.BackColorInternal = System.Drawing.Color.Transparent;
  568. this.btnClrMax.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  569. this.btnClrMax.Location = new System.Drawing.Point(293, 110);
  570. this.btnClrMax.Name = "btnClrMax";
  571. this.btnClrMax.Size = new System.Drawing.Size(45, 22);
  572. this.btnClrMax.TabIndex = 10;
  573. this.btnClrMax.Text = "清除";
  574. this.btnClrMax.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  575. this.btnClrMax.Click += new System.EventHandler(this.btnClrMax_Click);
  576. //
  577. // lblMiddleFireBeginTime
  578. //
  579. this.lblMiddleFireBeginTime.AutoSize = true;
  580. this.lblMiddleFireBeginTime.BackColor = System.Drawing.Color.Transparent;
  581. this.lblMiddleFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  582. this.lblMiddleFireBeginTime.Location = new System.Drawing.Point(10, 89);
  583. this.lblMiddleFireBeginTime.Name = "lblMiddleFireBeginTime";
  584. this.lblMiddleFireBeginTime.Size = new System.Drawing.Size(77, 12);
  585. this.lblMiddleFireBeginTime.TabIndex = 0;
  586. this.lblMiddleFireBeginTime.Text = "中火开始时间";
  587. //
  588. // lblMaxFireBeginTime
  589. //
  590. this.lblMaxFireBeginTime.AutoSize = true;
  591. this.lblMaxFireBeginTime.BackColor = System.Drawing.Color.Transparent;
  592. this.lblMaxFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  593. this.lblMaxFireBeginTime.Location = new System.Drawing.Point(10, 117);
  594. this.lblMaxFireBeginTime.Name = "lblMaxFireBeginTime";
  595. this.lblMaxFireBeginTime.Size = new System.Drawing.Size(77, 12);
  596. this.lblMaxFireBeginTime.TabIndex = 0;
  597. this.lblMaxFireBeginTime.Text = "大火开始时间";
  598. //
  599. // btn_MaxFire
  600. //
  601. this.btn_MaxFire.BackColorInternal = System.Drawing.Color.Transparent;
  602. this.btn_MaxFire.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  603. this.btn_MaxFire.Location = new System.Drawing.Point(245, 110);
  604. this.btn_MaxFire.Name = "btn_MaxFire";
  605. this.btn_MaxFire.Size = new System.Drawing.Size(45, 22);
  606. this.btn_MaxFire.TabIndex = 9;
  607. this.btn_MaxFire.Text = "确定";
  608. this.btn_MaxFire.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  609. this.btn_MaxFire.Click += new System.EventHandler(this.btn_MaxFire_Click);
  610. //
  611. // btnClrMin
  612. //
  613. this.btnClrMin.BackColorInternal = System.Drawing.Color.Transparent;
  614. this.btnClrMin.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  615. this.btnClrMin.Location = new System.Drawing.Point(293, 54);
  616. this.btnClrMin.Name = "btnClrMin";
  617. this.btnClrMin.Size = new System.Drawing.Size(45, 22);
  618. this.btnClrMin.TabIndex = 4;
  619. this.btnClrMin.Text = "清除";
  620. this.btnClrMin.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  621. this.btnClrMin.Click += new System.EventHandler(this.btnClrMin_Click);
  622. //
  623. // udteMaxFireBeginTime
  624. //
  625. this.udteMaxFireBeginTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
  626. this.udteMaxFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  627. this.udteMaxFireBeginTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
  628. this.udteMaxFireBeginTime.FormatString = "yyyy-MM-dd HH:mm:ss";
  629. this.udteMaxFireBeginTime.Location = new System.Drawing.Point(92, 111);
  630. this.udteMaxFireBeginTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
  631. this.udteMaxFireBeginTime.Name = "udteMaxFireBeginTime";
  632. this.udteMaxFireBeginTime.Size = new System.Drawing.Size(151, 21);
  633. this.udteMaxFireBeginTime.TabIndex = 8;
  634. this.udteMaxFireBeginTime.Value = null;
  635. //
  636. // ultraGroupBox5
  637. //
  638. this.ultraGroupBox5.Controls.Add(this.ucmeGrude);
  639. this.ultraGroupBox5.Controls.Add(this.lblTundishName);
  640. this.ultraGroupBox5.Controls.Add(this.ucmeDownNozzleFactory);
  641. this.ultraGroupBox5.Controls.Add(this.txtAge);
  642. this.ultraGroupBox5.Controls.Add(this.ucmeUpNozzleFactory);
  643. this.ultraGroupBox5.Controls.Add(this.lblSlidegateNozzleFactory);
  644. this.ultraGroupBox5.Controls.Add(this.ucmeSlidegateNozzleFactory);
  645. this.ultraGroupBox5.Controls.Add(this.lblUpLableDate);
  646. this.ultraGroupBox5.Controls.Add(this.ucmeStickFactory);
  647. this.ultraGroupBox5.Controls.Add(this.lblReason);
  648. this.ultraGroupBox5.Controls.Add(this.ucmeDopeFactory);
  649. this.ultraGroupBox5.Controls.Add(this.lblBeginDate);
  650. this.ultraGroupBox5.Controls.Add(this.ucmeReason);
  651. this.ultraGroupBox5.Controls.Add(this.lblDownNozzleFactory);
  652. this.ultraGroupBox5.Controls.Add(this.ucmeClass);
  653. this.ultraGroupBox5.Controls.Add(this.lblStickFactory);
  654. this.ultraGroupBox5.Controls.Add(this.ucmeUpClass);
  655. this.ultraGroupBox5.Controls.Add(this.lblUpNozzleFactory);
  656. this.ultraGroupBox5.Controls.Add(this.txtTundishName1);
  657. this.ultraGroupBox5.Controls.Add(this.lblDopeFactory);
  658. this.ultraGroupBox5.Controls.Add(this.lblFactoryName);
  659. this.ultraGroupBox5.Controls.Add(this.lblAge);
  660. this.ultraGroupBox5.Controls.Add(this.txtFactoryName);
  661. this.ultraGroupBox5.Controls.Add(this.lblMouldID);
  662. this.ultraGroupBox5.Controls.Add(this.lblCheckName);
  663. this.ultraGroupBox5.Controls.Add(this.txtMouldID);
  664. this.ultraGroupBox5.Controls.Add(this.txtCheckName);
  665. this.ultraGroupBox5.Controls.Add(this.txtMemo);
  666. this.ultraGroupBox5.Controls.Add(this.lblClass);
  667. this.ultraGroupBox5.Controls.Add(this.lblMemo);
  668. this.ultraGroupBox5.Controls.Add(this.udtpEndTime);
  669. this.ultraGroupBox5.Controls.Add(this.lblGrude);
  670. this.ultraGroupBox5.Controls.Add(this.lblEndTime);
  671. this.ultraGroupBox5.Controls.Add(this.lblStatus);
  672. this.ultraGroupBox5.Controls.Add(this.lblUpClass);
  673. this.ultraGroupBox5.Controls.Add(this.cmbStatus);
  674. this.ultraGroupBox5.Controls.Add(this.cmbPositionId);
  675. this.ultraGroupBox5.Controls.Add(this.lblCcmPositionID);
  676. this.ultraGroupBox5.Controls.Add(this.lblPositionId);
  677. this.ultraGroupBox5.Controls.Add(this.label3);
  678. this.ultraGroupBox5.Controls.Add(this.uldtpUpLableDate);
  679. this.ultraGroupBox5.Controls.Add(this.uldtpBeginDate);
  680. this.ultraGroupBox5.Controls.Add(this.lblLadlelId);
  681. this.ultraGroupBox5.Controls.Add(this.cmbCcmPositionID);
  682. this.ultraGroupBox5.Controls.Add(this.txtLadlelId);
  683. this.ultraGroupBox5.Controls.Add(this.txtTundidhUse);
  684. this.ultraGroupBox5.Controls.Add(this.lblTundidhUse);
  685. this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
  686. this.ultraGroupBox5.Location = new System.Drawing.Point(3, 0);
  687. this.ultraGroupBox5.Name = "ultraGroupBox5";
  688. this.ultraGroupBox5.Size = new System.Drawing.Size(676, 252);
  689. this.ultraGroupBox5.TabIndex = 2;
  690. this.ultraGroupBox5.Text = "使用记录";
  691. //
  692. // ucmeGrude
  693. //
  694. appearance13.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  695. appearance13.BorderColor = System.Drawing.Color.Black;
  696. this.ucmeGrude.Appearance = appearance13;
  697. this.ucmeGrude.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  698. this.ucmeGrude.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  699. this.ucmeGrude.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  700. this.ucmeGrude.Location = new System.Drawing.Point(85, 77);
  701. this.ucmeGrude.Name = "ucmeGrude";
  702. this.ucmeGrude.Size = new System.Drawing.Size(75, 19);
  703. this.ucmeGrude.TabIndex = 336;
  704. this.ucmeGrude.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  705. //
  706. // lblTundishName
  707. //
  708. this.lblTundishName.AutoSize = true;
  709. this.lblTundishName.BackColor = System.Drawing.Color.Transparent;
  710. this.lblTundishName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  711. this.lblTundishName.Location = new System.Drawing.Point(15, 32);
  712. this.lblTundishName.Name = "lblTundishName";
  713. this.lblTundishName.Size = new System.Drawing.Size(65, 12);
  714. this.lblTundishName.TabIndex = 0;
  715. this.lblTundishName.Text = "中间包编号";
  716. //
  717. // ucmeDownNozzleFactory
  718. //
  719. appearance14.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  720. appearance14.BorderColor = System.Drawing.Color.Black;
  721. this.ucmeDownNozzleFactory.Appearance = appearance14;
  722. this.ucmeDownNozzleFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  723. this.ucmeDownNozzleFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  724. this.ucmeDownNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  725. this.ucmeDownNozzleFactory.Location = new System.Drawing.Point(390, 205);
  726. this.ucmeDownNozzleFactory.Name = "ucmeDownNozzleFactory";
  727. this.ucmeDownNozzleFactory.Size = new System.Drawing.Size(247, 19);
  728. this.ucmeDownNozzleFactory.TabIndex = 335;
  729. this.ucmeDownNozzleFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  730. //
  731. // txtAge
  732. //
  733. this.txtAge.AcceptsReturn = true;
  734. this.txtAge.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  735. this.txtAge.Location = new System.Drawing.Point(212, 26);
  736. this.txtAge.Name = "txtAge";
  737. this.txtAge.Size = new System.Drawing.Size(60, 21);
  738. this.txtAge.TabIndex = 2;
  739. //
  740. // ucmeUpNozzleFactory
  741. //
  742. appearance15.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  743. appearance15.BorderColor = System.Drawing.Color.Black;
  744. this.ucmeUpNozzleFactory.Appearance = appearance15;
  745. this.ucmeUpNozzleFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  746. this.ucmeUpNozzleFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  747. this.ucmeUpNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  748. this.ucmeUpNozzleFactory.Location = new System.Drawing.Point(390, 180);
  749. this.ucmeUpNozzleFactory.Name = "ucmeUpNozzleFactory";
  750. this.ucmeUpNozzleFactory.Size = new System.Drawing.Size(247, 19);
  751. this.ucmeUpNozzleFactory.TabIndex = 334;
  752. this.ucmeUpNozzleFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  753. //
  754. // lblSlidegateNozzleFactory
  755. //
  756. this.lblSlidegateNozzleFactory.AutoSize = true;
  757. this.lblSlidegateNozzleFactory.BackColor = System.Drawing.Color.Transparent;
  758. this.lblSlidegateNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  759. this.lblSlidegateNozzleFactory.Location = new System.Drawing.Point(308, 159);
  760. this.lblSlidegateNozzleFactory.Name = "lblSlidegateNozzleFactory";
  761. this.lblSlidegateNozzleFactory.Size = new System.Drawing.Size(77, 12);
  762. this.lblSlidegateNozzleFactory.TabIndex = 272;
  763. this.lblSlidegateNozzleFactory.Text = "滑动水口厂家";
  764. //
  765. // ucmeSlidegateNozzleFactory
  766. //
  767. appearance16.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  768. appearance16.BorderColor = System.Drawing.Color.Black;
  769. this.ucmeSlidegateNozzleFactory.Appearance = appearance16;
  770. this.ucmeSlidegateNozzleFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  771. this.ucmeSlidegateNozzleFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  772. this.ucmeSlidegateNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  773. this.ucmeSlidegateNozzleFactory.Location = new System.Drawing.Point(390, 154);
  774. this.ucmeSlidegateNozzleFactory.Name = "ucmeSlidegateNozzleFactory";
  775. this.ucmeSlidegateNozzleFactory.Size = new System.Drawing.Size(247, 19);
  776. this.ucmeSlidegateNozzleFactory.TabIndex = 333;
  777. this.ucmeSlidegateNozzleFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  778. //
  779. // lblUpLableDate
  780. //
  781. this.lblUpLableDate.AutoSize = true;
  782. this.lblUpLableDate.BackColor = System.Drawing.Color.Transparent;
  783. this.lblUpLableDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  784. this.lblUpLableDate.Location = new System.Drawing.Point(437, 57);
  785. this.lblUpLableDate.Name = "lblUpLableDate";
  786. this.lblUpLableDate.Size = new System.Drawing.Size(53, 12);
  787. this.lblUpLableDate.TabIndex = 272;
  788. this.lblUpLableDate.Text = "上包时间";
  789. //
  790. // ucmeStickFactory
  791. //
  792. appearance17.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  793. appearance17.BorderColor = System.Drawing.Color.Black;
  794. this.ucmeStickFactory.Appearance = appearance17;
  795. this.ucmeStickFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  796. this.ucmeStickFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  797. this.ucmeStickFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  798. this.ucmeStickFactory.Location = new System.Drawing.Point(86, 205);
  799. this.ucmeStickFactory.Name = "ucmeStickFactory";
  800. this.ucmeStickFactory.Size = new System.Drawing.Size(203, 19);
  801. this.ucmeStickFactory.TabIndex = 332;
  802. this.ucmeStickFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  803. //
  804. // lblReason
  805. //
  806. this.lblReason.AutoSize = true;
  807. this.lblReason.BackColor = System.Drawing.Color.Transparent;
  808. this.lblReason.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  809. this.lblReason.Location = new System.Drawing.Point(280, 107);
  810. this.lblReason.Name = "lblReason";
  811. this.lblReason.Size = new System.Drawing.Size(53, 12);
  812. this.lblReason.TabIndex = 272;
  813. this.lblReason.Text = "停浇原因";
  814. //
  815. // ucmeDopeFactory
  816. //
  817. appearance18.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  818. appearance18.BorderColor = System.Drawing.Color.Black;
  819. this.ucmeDopeFactory.Appearance = appearance18;
  820. this.ucmeDopeFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  821. this.ucmeDopeFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  822. this.ucmeDopeFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  823. this.ucmeDopeFactory.Location = new System.Drawing.Point(86, 180);
  824. this.ucmeDopeFactory.Name = "ucmeDopeFactory";
  825. this.ucmeDopeFactory.Size = new System.Drawing.Size(203, 19);
  826. this.ucmeDopeFactory.TabIndex = 331;
  827. this.ucmeDopeFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  828. //
  829. // lblBeginDate
  830. //
  831. this.lblBeginDate.AutoSize = true;
  832. this.lblBeginDate.BackColor = System.Drawing.Color.Transparent;
  833. this.lblBeginDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  834. this.lblBeginDate.Location = new System.Drawing.Point(437, 82);
  835. this.lblBeginDate.Name = "lblBeginDate";
  836. this.lblBeginDate.Size = new System.Drawing.Size(53, 12);
  837. this.lblBeginDate.TabIndex = 272;
  838. this.lblBeginDate.Text = "开浇时间";
  839. //
  840. // ucmeReason
  841. //
  842. appearance19.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  843. appearance19.BorderColor = System.Drawing.Color.Black;
  844. this.ucmeReason.Appearance = appearance19;
  845. this.ucmeReason.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  846. this.ucmeReason.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  847. valueListItem21.DataValue = "1";
  848. valueListItem21.DisplayText = "计划停浇";
  849. valueListItem22.DataValue = "2";
  850. valueListItem22.DisplayText = "非计划停浇";
  851. this.ucmeReason.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  852. valueListItem21,
  853. valueListItem22});
  854. this.ucmeReason.Location = new System.Drawing.Point(335, 102);
  855. this.ucmeReason.Name = "ucmeReason";
  856. this.ucmeReason.Size = new System.Drawing.Size(86, 19);
  857. this.ucmeReason.TabIndex = 330;
  858. this.ucmeReason.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  859. //
  860. // lblDownNozzleFactory
  861. //
  862. this.lblDownNozzleFactory.AutoSize = true;
  863. this.lblDownNozzleFactory.BackColor = System.Drawing.Color.Transparent;
  864. this.lblDownNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  865. this.lblDownNozzleFactory.Location = new System.Drawing.Point(320, 210);
  866. this.lblDownNozzleFactory.Name = "lblDownNozzleFactory";
  867. this.lblDownNozzleFactory.Size = new System.Drawing.Size(65, 12);
  868. this.lblDownNozzleFactory.TabIndex = 272;
  869. this.lblDownNozzleFactory.Text = "下水口厂家";
  870. //
  871. // ucmeClass
  872. //
  873. appearance20.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  874. appearance20.BorderColor = System.Drawing.Color.Black;
  875. this.ucmeClass.Appearance = appearance20;
  876. this.ucmeClass.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  877. this.ucmeClass.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  878. this.ucmeClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  879. valueListItem23.DataValue = "1";
  880. valueListItem23.DisplayText = "甲班";
  881. valueListItem24.DataValue = "2";
  882. valueListItem24.DisplayText = "乙班";
  883. valueListItem25.DataValue = "3";
  884. valueListItem25.DisplayText = "丙班";
  885. valueListItem26.DataValue = "4";
  886. valueListItem26.DisplayText = "丁班";
  887. this.ucmeClass.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  888. valueListItem23,
  889. valueListItem24,
  890. valueListItem25,
  891. valueListItem26});
  892. this.ucmeClass.Location = new System.Drawing.Point(335, 77);
  893. this.ucmeClass.Name = "ucmeClass";
  894. this.ucmeClass.Size = new System.Drawing.Size(86, 19);
  895. this.ucmeClass.TabIndex = 329;
  896. this.ucmeClass.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  897. //
  898. // lblStickFactory
  899. //
  900. this.lblStickFactory.AutoSize = true;
  901. this.lblStickFactory.BackColor = System.Drawing.Color.Transparent;
  902. this.lblStickFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  903. this.lblStickFactory.Location = new System.Drawing.Point(27, 210);
  904. this.lblStickFactory.Name = "lblStickFactory";
  905. this.lblStickFactory.Size = new System.Drawing.Size(53, 12);
  906. this.lblStickFactory.TabIndex = 272;
  907. this.lblStickFactory.Text = "塞棒厂家";
  908. //
  909. // ucmeUpClass
  910. //
  911. appearance21.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
  912. appearance21.BorderColor = System.Drawing.Color.Black;
  913. this.ucmeUpClass.Appearance = appearance21;
  914. this.ucmeUpClass.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  915. this.ucmeUpClass.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  916. this.ucmeUpClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  917. valueListItem27.DataValue = "1";
  918. valueListItem27.DisplayText = "甲班";
  919. valueListItem28.DataValue = "2";
  920. valueListItem28.DisplayText = "乙班";
  921. valueListItem29.DataValue = "3";
  922. valueListItem29.DisplayText = "丙班";
  923. valueListItem30.DataValue = "4";
  924. valueListItem30.DisplayText = "丁班";
  925. this.ucmeUpClass.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  926. valueListItem27,
  927. valueListItem28,
  928. valueListItem29,
  929. valueListItem30});
  930. this.ucmeUpClass.Location = new System.Drawing.Point(335, 52);
  931. this.ucmeUpClass.Name = "ucmeUpClass";
  932. this.ucmeUpClass.Size = new System.Drawing.Size(86, 19);
  933. this.ucmeUpClass.TabIndex = 328;
  934. this.ucmeUpClass.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
  935. //
  936. // lblUpNozzleFactory
  937. //
  938. this.lblUpNozzleFactory.AutoSize = true;
  939. this.lblUpNozzleFactory.BackColor = System.Drawing.Color.Transparent;
  940. this.lblUpNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  941. this.lblUpNozzleFactory.Location = new System.Drawing.Point(320, 185);
  942. this.lblUpNozzleFactory.Name = "lblUpNozzleFactory";
  943. this.lblUpNozzleFactory.Size = new System.Drawing.Size(65, 12);
  944. this.lblUpNozzleFactory.TabIndex = 272;
  945. this.lblUpNozzleFactory.Text = "上水口厂家";
  946. //
  947. // txtTundishName1
  948. //
  949. this.txtTundishName1.AcceptsReturn = true;
  950. this.txtTundishName1.Enabled = false;
  951. this.txtTundishName1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  952. this.txtTundishName1.Location = new System.Drawing.Point(85, 26);
  953. this.txtTundishName1.Name = "txtTundishName1";
  954. this.txtTundishName1.ReadOnly = true;
  955. this.txtTundishName1.Size = new System.Drawing.Size(75, 21);
  956. this.txtTundishName1.TabIndex = 1;
  957. //
  958. // lblDopeFactory
  959. //
  960. this.lblDopeFactory.AutoSize = true;
  961. this.lblDopeFactory.BackColor = System.Drawing.Color.Transparent;
  962. this.lblDopeFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  963. this.lblDopeFactory.Location = new System.Drawing.Point(27, 185);
  964. this.lblDopeFactory.Name = "lblDopeFactory";
  965. this.lblDopeFactory.Size = new System.Drawing.Size(53, 12);
  966. this.lblDopeFactory.TabIndex = 272;
  967. this.lblDopeFactory.Text = "涂料厂家";
  968. //
  969. // lblFactoryName
  970. //
  971. this.lblFactoryName.AutoSize = true;
  972. this.lblFactoryName.BackColor = System.Drawing.Color.Transparent;
  973. this.lblFactoryName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  974. this.lblFactoryName.Location = new System.Drawing.Point(27, 159);
  975. this.lblFactoryName.Name = "lblFactoryName";
  976. this.lblFactoryName.Size = new System.Drawing.Size(53, 12);
  977. this.lblFactoryName.TabIndex = 327;
  978. this.lblFactoryName.Text = "厂家签名";
  979. //
  980. // lblAge
  981. //
  982. this.lblAge.AutoSize = true;
  983. this.lblAge.BackColor = System.Drawing.Color.Transparent;
  984. this.lblAge.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  985. this.lblAge.Location = new System.Drawing.Point(178, 32);
  986. this.lblAge.Name = "lblAge";
  987. this.lblAge.Size = new System.Drawing.Size(29, 12);
  988. this.lblAge.TabIndex = 273;
  989. this.lblAge.Text = "包龄";
  990. //
  991. // txtFactoryName
  992. //
  993. this.txtFactoryName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  994. this.txtFactoryName.Location = new System.Drawing.Point(85, 153);
  995. this.txtFactoryName.MaxLength = 50;
  996. this.txtFactoryName.Name = "txtFactoryName";
  997. this.txtFactoryName.Size = new System.Drawing.Size(203, 21);
  998. this.txtFactoryName.TabIndex = 18;
  999. //
  1000. // lblMouldID
  1001. //
  1002. this.lblMouldID.AutoSize = true;
  1003. this.lblMouldID.BackColor = System.Drawing.Color.Transparent;
  1004. this.lblMouldID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1005. this.lblMouldID.Location = new System.Drawing.Point(166, 82);
  1006. this.lblMouldID.Name = "lblMouldID";
  1007. this.lblMouldID.Size = new System.Drawing.Size(41, 12);
  1008. this.lblMouldID.TabIndex = 279;
  1009. this.lblMouldID.Text = "浇次号";
  1010. //
  1011. // lblCheckName
  1012. //
  1013. this.lblCheckName.AutoSize = true;
  1014. this.lblCheckName.BackColor = System.Drawing.Color.Transparent;
  1015. this.lblCheckName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1016. this.lblCheckName.Location = new System.Drawing.Point(425, 107);
  1017. this.lblCheckName.Name = "lblCheckName";
  1018. this.lblCheckName.Size = new System.Drawing.Size(65, 12);
  1019. this.lblCheckName.TabIndex = 325;
  1020. this.lblCheckName.Text = "验包人签名";
  1021. //
  1022. // txtMouldID
  1023. //
  1024. this.txtMouldID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1025. this.txtMouldID.Location = new System.Drawing.Point(212, 76);
  1026. this.txtMouldID.Name = "txtMouldID";
  1027. this.txtMouldID.Size = new System.Drawing.Size(60, 21);
  1028. this.txtMouldID.TabIndex = 10;
  1029. this.txtMouldID.Text = " ";
  1030. //
  1031. // txtCheckName
  1032. //
  1033. this.txtCheckName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1034. this.txtCheckName.Location = new System.Drawing.Point(494, 101);
  1035. this.txtCheckName.MaxLength = 15;
  1036. this.txtCheckName.Name = "txtCheckName";
  1037. this.txtCheckName.Size = new System.Drawing.Size(143, 21);
  1038. this.txtCheckName.TabIndex = 15;
  1039. //
  1040. // txtMemo
  1041. //
  1042. this.txtMemo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1043. this.txtMemo.Location = new System.Drawing.Point(85, 229);
  1044. this.txtMemo.MaxLength = 300;
  1045. this.txtMemo.Name = "txtMemo";
  1046. this.txtMemo.Size = new System.Drawing.Size(552, 21);
  1047. this.txtMemo.TabIndex = 24;
  1048. //
  1049. // lblClass
  1050. //
  1051. this.lblClass.AutoSize = true;
  1052. this.lblClass.BackColor = System.Drawing.Color.Transparent;
  1053. this.lblClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1054. this.lblClass.Location = new System.Drawing.Point(280, 82);
  1055. this.lblClass.Name = "lblClass";
  1056. this.lblClass.Size = new System.Drawing.Size(53, 12);
  1057. this.lblClass.TabIndex = 323;
  1058. this.lblClass.Text = "开浇班别";
  1059. //
  1060. // lblMemo
  1061. //
  1062. this.lblMemo.AutoSize = true;
  1063. this.lblMemo.BackColor = System.Drawing.Color.Transparent;
  1064. this.lblMemo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1065. this.lblMemo.Location = new System.Drawing.Point(51, 235);
  1066. this.lblMemo.Name = "lblMemo";
  1067. this.lblMemo.Size = new System.Drawing.Size(29, 12);
  1068. this.lblMemo.TabIndex = 288;
  1069. this.lblMemo.Text = "备注";
  1070. //
  1071. // udtpEndTime
  1072. //
  1073. appearance22.BackColor = System.Drawing.Color.White;
  1074. this.udtpEndTime.Appearance = appearance22;
  1075. this.udtpEndTime.BackColor = System.Drawing.Color.White;
  1076. this.udtpEndTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
  1077. this.udtpEndTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1078. this.udtpEndTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
  1079. this.udtpEndTime.FormatString = "yyyy-MM-dd HH:mm:ss";
  1080. this.udtpEndTime.Location = new System.Drawing.Point(85, 101);
  1081. this.udtpEndTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
  1082. this.udtpEndTime.Name = "udtpEndTime";
  1083. this.udtpEndTime.Size = new System.Drawing.Size(187, 21);
  1084. this.udtpEndTime.TabIndex = 13;
  1085. this.udtpEndTime.Value = null;
  1086. //
  1087. // lblGrude
  1088. //
  1089. this.lblGrude.AutoSize = true;
  1090. this.lblGrude.BackColor = System.Drawing.Color.Transparent;
  1091. this.lblGrude.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1092. this.lblGrude.Location = new System.Drawing.Point(51, 82);
  1093. this.lblGrude.Name = "lblGrude";
  1094. this.lblGrude.Size = new System.Drawing.Size(29, 12);
  1095. this.lblGrude.TabIndex = 290;
  1096. this.lblGrude.Text = "钢种";
  1097. //
  1098. // lblEndTime
  1099. //
  1100. this.lblEndTime.AutoSize = true;
  1101. this.lblEndTime.BackColor = System.Drawing.Color.Transparent;
  1102. this.lblEndTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1103. this.lblEndTime.Location = new System.Drawing.Point(27, 107);
  1104. this.lblEndTime.Name = "lblEndTime";
  1105. this.lblEndTime.Size = new System.Drawing.Size(53, 12);
  1106. this.lblEndTime.TabIndex = 321;
  1107. this.lblEndTime.Text = "停浇时间";
  1108. //
  1109. // lblStatus
  1110. //
  1111. this.lblStatus.AutoSize = true;
  1112. this.lblStatus.BackColor = System.Drawing.Color.Transparent;
  1113. this.lblStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1114. this.lblStatus.Location = new System.Drawing.Point(461, 32);
  1115. this.lblStatus.Name = "lblStatus";
  1116. this.lblStatus.Size = new System.Drawing.Size(29, 12);
  1117. this.lblStatus.TabIndex = 294;
  1118. this.lblStatus.Text = "状态";
  1119. //
  1120. // lblUpClass
  1121. //
  1122. this.lblUpClass.AutoSize = true;
  1123. this.lblUpClass.BackColor = System.Drawing.Color.Transparent;
  1124. this.lblUpClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1125. this.lblUpClass.Location = new System.Drawing.Point(280, 57);
  1126. this.lblUpClass.Name = "lblUpClass";
  1127. this.lblUpClass.Size = new System.Drawing.Size(53, 12);
  1128. this.lblUpClass.TabIndex = 319;
  1129. this.lblUpClass.Text = "上包班别";
  1130. //
  1131. // cmbStatus
  1132. //
  1133. this.cmbStatus.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(244)))), ((int)(((byte)(252)))));
  1134. this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1135. this.cmbStatus.Enabled = false;
  1136. this.cmbStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1137. this.cmbStatus.Items.AddRange(new object[] {
  1138. "备用",
  1139. "等待位",
  1140. "浇铸位",
  1141. "下线"});
  1142. this.cmbStatus.Location = new System.Drawing.Point(494, 26);
  1143. this.cmbStatus.Name = "cmbStatus";
  1144. this.cmbStatus.Size = new System.Drawing.Size(143, 20);
  1145. this.cmbStatus.TabIndex = 4;
  1146. //
  1147. // cmbPositionId
  1148. //
  1149. this.cmbPositionId.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(244)))), ((int)(((byte)(252)))));
  1150. this.cmbPositionId.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1151. this.cmbPositionId.Enabled = false;
  1152. this.cmbPositionId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1153. this.cmbPositionId.Items.AddRange(new object[] {
  1154. "南",
  1155. "北"});
  1156. this.cmbPositionId.Location = new System.Drawing.Point(212, 51);
  1157. this.cmbPositionId.Name = "cmbPositionId";
  1158. this.cmbPositionId.Size = new System.Drawing.Size(60, 20);
  1159. this.cmbPositionId.TabIndex = 6;
  1160. //
  1161. // lblCcmPositionID
  1162. //
  1163. this.lblCcmPositionID.AutoSize = true;
  1164. this.lblCcmPositionID.BackColor = System.Drawing.Color.Transparent;
  1165. this.lblCcmPositionID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1166. this.lblCcmPositionID.Location = new System.Drawing.Point(39, 57);
  1167. this.lblCcmPositionID.Name = "lblCcmPositionID";
  1168. this.lblCcmPositionID.Size = new System.Drawing.Size(41, 12);
  1169. this.lblCcmPositionID.TabIndex = 0;
  1170. this.lblCcmPositionID.Text = "铸机号";
  1171. //
  1172. // lblPositionId
  1173. //
  1174. this.lblPositionId.AutoSize = true;
  1175. this.lblPositionId.BackColor = System.Drawing.Color.Transparent;
  1176. this.lblPositionId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1177. this.lblPositionId.Location = new System.Drawing.Point(178, 57);
  1178. this.lblPositionId.Name = "lblPositionId";
  1179. this.lblPositionId.Size = new System.Drawing.Size(29, 12);
  1180. this.lblPositionId.TabIndex = 317;
  1181. this.lblPositionId.Text = "工位";
  1182. //
  1183. // label3
  1184. //
  1185. this.label3.AutoSize = true;
  1186. this.label3.BackColor = System.Drawing.Color.Transparent;
  1187. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1188. this.label3.Location = new System.Drawing.Point(259, 63);
  1189. this.label3.Name = "label3";
  1190. this.label3.Size = new System.Drawing.Size(0, 12);
  1191. this.label3.TabIndex = 301;
  1192. this.label3.Visible = false;
  1193. //
  1194. // uldtpUpLableDate
  1195. //
  1196. appearance23.BackColor = System.Drawing.Color.White;
  1197. this.uldtpUpLableDate.Appearance = appearance23;
  1198. this.uldtpUpLableDate.BackColor = System.Drawing.Color.White;
  1199. this.uldtpUpLableDate.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
  1200. this.uldtpUpLableDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1201. this.uldtpUpLableDate.FormatProvider = new System.Globalization.CultureInfo("en-US");
  1202. this.uldtpUpLableDate.FormatString = "yyyy-MM-dd HH:mm:ss";
  1203. this.uldtpUpLableDate.Location = new System.Drawing.Point(494, 51);
  1204. this.uldtpUpLableDate.MaskInput = "yyyy-mm-dd hh:mm:ss";
  1205. this.uldtpUpLableDate.Name = "uldtpUpLableDate";
  1206. this.uldtpUpLableDate.Size = new System.Drawing.Size(143, 21);
  1207. this.uldtpUpLableDate.TabIndex = 8;
  1208. this.uldtpUpLableDate.Value = null;
  1209. //
  1210. // uldtpBeginDate
  1211. //
  1212. appearance24.BackColor = System.Drawing.Color.White;
  1213. this.uldtpBeginDate.Appearance = appearance24;
  1214. this.uldtpBeginDate.BackColor = System.Drawing.Color.White;
  1215. this.uldtpBeginDate.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
  1216. this.uldtpBeginDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1217. this.uldtpBeginDate.FormatProvider = new System.Globalization.CultureInfo("en-US");
  1218. this.uldtpBeginDate.FormatString = "yyyy-MM-dd HH:mm:ss";
  1219. this.uldtpBeginDate.Location = new System.Drawing.Point(494, 76);
  1220. this.uldtpBeginDate.MaskInput = "yyyy-mm-dd hh:mm:ss";
  1221. this.uldtpBeginDate.Name = "uldtpBeginDate";
  1222. this.uldtpBeginDate.Size = new System.Drawing.Size(143, 21);
  1223. this.uldtpBeginDate.TabIndex = 12;
  1224. this.uldtpBeginDate.Value = null;
  1225. //
  1226. // lblLadlelId
  1227. //
  1228. this.lblLadlelId.AutoSize = true;
  1229. this.lblLadlelId.BackColor = System.Drawing.Color.Transparent;
  1230. this.lblLadlelId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1231. this.lblLadlelId.Location = new System.Drawing.Point(292, 32);
  1232. this.lblLadlelId.Name = "lblLadlelId";
  1233. this.lblLadlelId.Size = new System.Drawing.Size(41, 12);
  1234. this.lblLadlelId.TabIndex = 313;
  1235. this.lblLadlelId.Text = "包盖号";
  1236. //
  1237. // cmbCcmPositionID
  1238. //
  1239. this.cmbCcmPositionID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(244)))), ((int)(((byte)(252)))));
  1240. this.cmbCcmPositionID.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1241. this.cmbCcmPositionID.Enabled = false;
  1242. this.cmbCcmPositionID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1243. this.cmbCcmPositionID.Items.AddRange(new object[] {
  1244. "1#连铸机",
  1245. "2#连铸机",
  1246. "3#连铸机"});
  1247. this.cmbCcmPositionID.Location = new System.Drawing.Point(85, 51);
  1248. this.cmbCcmPositionID.Name = "cmbCcmPositionID";
  1249. this.cmbCcmPositionID.Size = new System.Drawing.Size(75, 20);
  1250. this.cmbCcmPositionID.TabIndex = 5;
  1251. //
  1252. // txtLadlelId
  1253. //
  1254. this.txtLadlelId.AcceptsReturn = true;
  1255. this.txtLadlelId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1256. this.txtLadlelId.Location = new System.Drawing.Point(335, 26);
  1257. this.txtLadlelId.MaxLength = 10;
  1258. this.txtLadlelId.Name = "txtLadlelId";
  1259. this.txtLadlelId.Size = new System.Drawing.Size(86, 21);
  1260. this.txtLadlelId.TabIndex = 3;
  1261. //
  1262. // txtTundidhUse
  1263. //
  1264. this.txtTundidhUse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1265. this.txtTundidhUse.Location = new System.Drawing.Point(85, 127);
  1266. this.txtTundidhUse.MaxLength = 50;
  1267. this.txtTundidhUse.Name = "txtTundidhUse";
  1268. this.txtTundidhUse.Size = new System.Drawing.Size(552, 21);
  1269. this.txtTundidhUse.TabIndex = 16;
  1270. //
  1271. // lblTundidhUse
  1272. //
  1273. this.lblTundidhUse.AutoSize = true;
  1274. this.lblTundidhUse.BackColor = System.Drawing.Color.Transparent;
  1275. this.lblTundidhUse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1276. this.lblTundidhUse.Location = new System.Drawing.Point(3, 133);
  1277. this.lblTundidhUse.Name = "lblTundidhUse";
  1278. this.lblTundidhUse.Size = new System.Drawing.Size(77, 12);
  1279. this.lblTundidhUse.TabIndex = 311;
  1280. this.lblTundidhUse.Text = "中包使用情况";
  1281. //
  1282. // ultraExpandableGroupBox1
  1283. //
  1284. appearance10.BackColor = System.Drawing.Color.Gainsboro;
  1285. this.ultraExpandableGroupBox1.Appearance = appearance10;
  1286. this.ultraExpandableGroupBox1.Controls.Add(this.ulexpgrpModel);
  1287. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  1288. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1025, 277);
  1289. this.ultraExpandableGroupBox1.Font = new System.Drawing.Font("宋体", 9F);
  1290. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 210);
  1291. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1292. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1025, 277);
  1293. this.ultraExpandableGroupBox1.TabIndex = 1;
  1294. this.ultraExpandableGroupBox1.Text = "编辑区";
  1295. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  1296. //
  1297. // ugrdUseInfo
  1298. //
  1299. this.ugrdUseInfo.DataSource = this.udsrUseInfo;
  1300. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1301. ultraGridColumn1.Header.Caption = "中间包编号";
  1302. ultraGridColumn1.Header.VisiblePosition = 0;
  1303. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  1304. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  1305. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
  1306. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  1307. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  1308. ultraGridColumn1.Width = 39;
  1309. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1310. ultraGridColumn2.Header.Caption = "包龄";
  1311. ultraGridColumn2.Header.VisiblePosition = 1;
  1312. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  1313. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  1314. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
  1315. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  1316. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  1317. ultraGridColumn2.Width = 40;
  1318. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1319. ultraGridColumn3.Header.Caption = "状态";
  1320. ultraGridColumn3.Header.VisiblePosition = 9;
  1321. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
  1322. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  1323. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  1324. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  1325. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  1326. ultraGridColumn3.Width = 52;
  1327. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1328. ultraGridColumn4.Header.Caption = "铸机号";
  1329. ultraGridColumn4.Header.VisiblePosition = 7;
  1330. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
  1331. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  1332. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  1333. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  1334. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  1335. ultraGridColumn4.Width = 65;
  1336. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1337. ultraGridColumn5.Header.Caption = "包盖号";
  1338. ultraGridColumn5.Header.VisiblePosition = 2;
  1339. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 14;
  1340. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  1341. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
  1342. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  1343. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  1344. ultraGridColumn5.Width = 50;
  1345. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1346. ultraGridColumn6.Header.Caption = "上包班别";
  1347. ultraGridColumn6.Header.VisiblePosition = 3;
  1348. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 16;
  1349. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  1350. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  1351. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  1352. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  1353. ultraGridColumn6.Width = 58;
  1354. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1355. ultraGridColumn7.Header.Caption = "工位";
  1356. ultraGridColumn7.Header.VisiblePosition = 4;
  1357. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 8;
  1358. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  1359. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
  1360. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  1361. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  1362. ultraGridColumn7.Width = 39;
  1363. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1364. ultraGridColumn8.Header.Caption = "上包时间";
  1365. ultraGridColumn8.Header.VisiblePosition = 5;
  1366. ultraGridColumn8.MaskInput = "";
  1367. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 18;
  1368. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  1369. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
  1370. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  1371. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  1372. ultraGridColumn8.Width = 139;
  1373. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1374. ultraGridColumn9.Header.Caption = "钢种";
  1375. ultraGridColumn9.Header.VisiblePosition = 6;
  1376. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 12;
  1377. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1378. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
  1379. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  1380. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  1381. ultraGridColumn9.Width = 79;
  1382. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1383. ultraGridColumn10.Header.Caption = "浇次号";
  1384. ultraGridColumn10.Header.VisiblePosition = 8;
  1385. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 10;
  1386. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1387. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
  1388. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  1389. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  1390. ultraGridColumn10.Width = 66;
  1391. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1392. ultraGridColumn11.Header.Caption = "小火开始时间";
  1393. ultraGridColumn11.Header.VisiblePosition = 10;
  1394. ultraGridColumn11.MaskInput = "";
  1395. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 20;
  1396. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1397. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
  1398. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  1399. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  1400. ultraGridColumn11.Width = 143;
  1401. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1402. ultraGridColumn12.Header.Caption = "中火开始时间";
  1403. ultraGridColumn12.Header.VisiblePosition = 11;
  1404. ultraGridColumn12.MaskInput = "";
  1405. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 22;
  1406. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1407. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
  1408. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  1409. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  1410. ultraGridColumn12.Width = 148;
  1411. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1412. ultraGridColumn13.Header.Caption = "大火开始时间";
  1413. ultraGridColumn13.Header.VisiblePosition = 12;
  1414. ultraGridColumn13.MaskInput = "";
  1415. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 24;
  1416. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1417. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
  1418. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  1419. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
  1420. ultraGridColumn13.Width = 142;
  1421. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1422. ultraGridColumn14.Header.Caption = "周期编号";
  1423. ultraGridColumn14.Header.VisiblePosition = 13;
  1424. ultraGridColumn14.Hidden = true;
  1425. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 26;
  1426. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1427. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  1428. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  1429. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1430. ultraGridColumn15.Header.Caption = "开浇班别";
  1431. ultraGridColumn15.Header.VisiblePosition = 14;
  1432. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 28;
  1433. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1434. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
  1435. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  1436. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  1437. ultraGridColumn15.Width = 58;
  1438. ultraGridColumn16.Header.Caption = "开浇时间";
  1439. ultraGridColumn16.Header.VisiblePosition = 15;
  1440. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 30;
  1441. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1442. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
  1443. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  1444. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  1445. ultraGridColumn16.Width = 144;
  1446. ultraGridColumn17.Header.Caption = "停浇时间";
  1447. ultraGridColumn17.Header.VisiblePosition = 16;
  1448. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 32;
  1449. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1450. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
  1451. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  1452. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  1453. ultraGridColumn17.Width = 142;
  1454. ultraGridColumn18.Header.Caption = "停浇原因";
  1455. ultraGridColumn18.Header.VisiblePosition = 17;
  1456. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 34;
  1457. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1458. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  1459. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
  1460. ultraGridColumn18.Width = 84;
  1461. ultraGridColumn19.Header.Caption = "中包使用情况";
  1462. ultraGridColumn19.Header.VisiblePosition = 18;
  1463. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 36;
  1464. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1465. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(115, 0);
  1466. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  1467. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  1468. ultraGridColumn20.Header.Caption = "验包人签名";
  1469. ultraGridColumn20.Header.VisiblePosition = 19;
  1470. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 38;
  1471. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1472. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  1473. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  1474. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
  1475. ultraGridColumn20.Width = 85;
  1476. ultraGridColumn21.Header.Caption = "厂家签名";
  1477. ultraGridColumn21.Header.VisiblePosition = 20;
  1478. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 40;
  1479. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1480. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  1481. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  1482. ultraGridColumn22.Header.Caption = "滑动水口厂家";
  1483. ultraGridColumn22.Header.VisiblePosition = 21;
  1484. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 42;
  1485. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1486. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  1487. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
  1488. ultraGridColumn23.Header.Caption = "涂料厂家";
  1489. ultraGridColumn23.Header.VisiblePosition = 22;
  1490. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 44;
  1491. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1492. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  1493. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  1494. ultraGridColumn24.Header.Caption = "上水口厂家";
  1495. ultraGridColumn24.Header.VisiblePosition = 23;
  1496. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 46;
  1497. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1498. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  1499. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  1500. ultraGridColumn25.Header.Caption = "塞棒厂家";
  1501. ultraGridColumn25.Header.VisiblePosition = 24;
  1502. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 48;
  1503. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1504. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  1505. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  1506. ultraGridColumn26.Header.Caption = "下水口厂家";
  1507. ultraGridColumn26.Header.VisiblePosition = 25;
  1508. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 50;
  1509. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1510. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  1511. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  1512. ultraGridColumn27.Header.Caption = "备注";
  1513. ultraGridColumn27.Header.VisiblePosition = 26;
  1514. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 52;
  1515. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1516. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
  1517. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  1518. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  1519. ultraGridColumn28.Header.VisiblePosition = 27;
  1520. ultraGridColumn28.Hidden = true;
  1521. ultraGridBand1.Columns.AddRange(new object[] {
  1522. ultraGridColumn1,
  1523. ultraGridColumn2,
  1524. ultraGridColumn3,
  1525. ultraGridColumn4,
  1526. ultraGridColumn5,
  1527. ultraGridColumn6,
  1528. ultraGridColumn7,
  1529. ultraGridColumn8,
  1530. ultraGridColumn9,
  1531. ultraGridColumn10,
  1532. ultraGridColumn11,
  1533. ultraGridColumn12,
  1534. ultraGridColumn13,
  1535. ultraGridColumn14,
  1536. ultraGridColumn15,
  1537. ultraGridColumn16,
  1538. ultraGridColumn17,
  1539. ultraGridColumn18,
  1540. ultraGridColumn19,
  1541. ultraGridColumn20,
  1542. ultraGridColumn21,
  1543. ultraGridColumn22,
  1544. ultraGridColumn23,
  1545. ultraGridColumn24,
  1546. ultraGridColumn25,
  1547. ultraGridColumn26,
  1548. ultraGridColumn27,
  1549. ultraGridColumn28});
  1550. ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
  1551. ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
  1552. ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
  1553. ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
  1554. ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
  1555. ultraGridBand1.Override.CellMultiLine = Infragistics.Win.DefaultableBoolean.True;
  1556. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1557. this.ugrdUseInfo.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  1558. appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  1559. appearance5.FontData.SizeInPoints = 9F;
  1560. appearance5.TextHAlignAsString = "Left";
  1561. this.ugrdUseInfo.DisplayLayout.CaptionAppearance = appearance5;
  1562. this.ugrdUseInfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  1563. appearance6.BackColor = System.Drawing.Color.LightSteelBlue;
  1564. this.ugrdUseInfo.DisplayLayout.Override.HeaderAppearance = appearance6;
  1565. this.ugrdUseInfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1566. this.ugrdUseInfo.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1567. this.ugrdUseInfo.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  1568. this.ugrdUseInfo.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1569. valueList1.Key = "positionid";
  1570. valueListItem5.DataValue = "1";
  1571. valueListItem5.DisplayText = "东";
  1572. valueListItem6.DataValue = "2";
  1573. valueListItem6.DisplayText = "西";
  1574. valueList1.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
  1575. valueListItem5,
  1576. valueListItem6});
  1577. valueList2.Key = "UpClassDuty";
  1578. valueListItem7.DataValue = "1";
  1579. valueListItem7.DisplayText = "甲班";
  1580. valueListItem8.DataValue = "2";
  1581. valueListItem8.DisplayText = "乙班";
  1582. valueListItem9.DataValue = "3";
  1583. valueListItem9.DisplayText = "丙班";
  1584. valueListItem10.DataValue = "4";
  1585. valueListItem10.DisplayText = "丁班";
  1586. valueList2.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
  1587. valueListItem7,
  1588. valueListItem8,
  1589. valueListItem9,
  1590. valueListItem10});
  1591. valueList3.Key = "LadleStatus";
  1592. valueListItem11.DataValue = "0";
  1593. valueListItem11.DisplayText = "下线";
  1594. valueListItem12.DataValue = "1";
  1595. valueListItem12.DisplayText = "等待位";
  1596. valueListItem13.DataValue = "2";
  1597. valueListItem13.DisplayText = "浇铸位";
  1598. valueList3.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
  1599. valueListItem11,
  1600. valueListItem12,
  1601. valueListItem13});
  1602. valueList4.Key = "KaiJiaoDuty";
  1603. valueListItem14.DataValue = "1";
  1604. valueListItem14.DisplayText = "甲班";
  1605. valueListItem15.DataValue = "2";
  1606. valueListItem15.DisplayText = "乙班";
  1607. valueListItem16.DataValue = "3";
  1608. valueListItem16.DisplayText = "丙班";
  1609. valueListItem17.DataValue = "4";
  1610. valueListItem17.DisplayText = "丁班";
  1611. valueList4.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
  1612. valueListItem14,
  1613. valueListItem15,
  1614. valueListItem16,
  1615. valueListItem17});
  1616. this.ugrdUseInfo.DisplayLayout.ValueLists.AddRange(new Infragistics.Win.ValueList[] {
  1617. valueList1,
  1618. valueList2,
  1619. valueList3,
  1620. valueList4});
  1621. this.ugrdUseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  1622. this.ugrdUseInfo.Font = new System.Drawing.Font("宋体", 9F);
  1623. this.ugrdUseInfo.Location = new System.Drawing.Point(0, 0);
  1624. this.ugrdUseInfo.Name = "ugrdUseInfo";
  1625. this.ugrdUseInfo.Size = new System.Drawing.Size(626, 168);
  1626. this.ugrdUseInfo.TabIndex = 1;
  1627. this.ugrdUseInfo.AfterRowActivate += new System.EventHandler(this.ulgridUseInfo_AfterRowActivate);
  1628. //
  1629. // ultraExpandableGroupBox2
  1630. //
  1631. appearance7.BackColor = System.Drawing.Color.Gainsboro;
  1632. this.ultraExpandableGroupBox2.Appearance = appearance7;
  1633. this.ultraExpandableGroupBox2.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  1634. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1635. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
  1636. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(390, 168);
  1637. this.ultraExpandableGroupBox2.Font = new System.Drawing.Font("宋体", 9F);
  1638. this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  1639. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(3, 0);
  1640. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  1641. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(390, 168);
  1642. this.ultraExpandableGroupBox2.TabIndex = 0;
  1643. this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  1644. //
  1645. // ultraExpandableGroupBoxPanel1
  1646. //
  1647. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ugrdBaseInfo);
  1648. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1649. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(13, 2);
  1650. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1651. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(375, 164);
  1652. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1653. //
  1654. // ugrdBaseInfo
  1655. //
  1656. this.ugrdBaseInfo.DataSource = this.udsrBaseInfo;
  1657. ultraGridColumn29.Header.Caption = "中间包编号";
  1658. ultraGridColumn29.Header.VisiblePosition = 0;
  1659. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 0;
  1660. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1661. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  1662. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  1663. ultraGridColumn29.Width = 39;
  1664. ultraGridColumn30.Header.Caption = "包龄";
  1665. ultraGridColumn30.Header.VisiblePosition = 1;
  1666. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 2;
  1667. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1668. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  1669. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  1670. ultraGridColumn30.Width = 42;
  1671. ultraGridColumn31.Header.Caption = "状态";
  1672. ultraGridColumn31.Header.VisiblePosition = 2;
  1673. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 4;
  1674. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1675. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  1676. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  1677. ultraGridColumn31.Width = 60;
  1678. ultraGridColumn32.Header.Caption = "铸机号";
  1679. ultraGridColumn32.Header.VisiblePosition = 3;
  1680. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 6;
  1681. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  1682. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
  1683. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
  1684. ultraGridColumn32.Width = 63;
  1685. ultraGridColumn33.Header.Caption = "工位";
  1686. ultraGridColumn33.Header.VisiblePosition = 4;
  1687. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 8;
  1688. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1689. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  1690. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  1691. ultraGridColumn33.Width = 45;
  1692. ultraGridColumn34.Header.Caption = "生产日期";
  1693. ultraGridColumn34.Header.VisiblePosition = 5;
  1694. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 10;
  1695. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1696. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  1697. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1698. ultraGridColumn34.Width = 93;
  1699. ultraGridColumn35.Header.Caption = "购买日期";
  1700. ultraGridColumn35.Header.VisiblePosition = 6;
  1701. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
  1702. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1703. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  1704. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  1705. ultraGridColumn35.Width = 95;
  1706. ultraGridColumn36.Header.Caption = "备注";
  1707. ultraGridColumn36.Header.VisiblePosition = 7;
  1708. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 14;
  1709. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  1710. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
  1711. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
  1712. ultraGridColumn36.Width = 137;
  1713. ultraGridColumn37.Header.Caption = "包级";
  1714. ultraGridColumn37.Header.VisiblePosition = 8;
  1715. ultraGridColumn37.Hidden = true;
  1716. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 16;
  1717. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  1718. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
  1719. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
  1720. ultraGridColumn38.Header.Caption = "使用炉数";
  1721. ultraGridColumn38.Header.VisiblePosition = 9;
  1722. ultraGridColumn38.Hidden = true;
  1723. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 16;
  1724. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  1725. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
  1726. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
  1727. ultraGridColumn39.Header.Caption = "参数类型编号";
  1728. ultraGridColumn39.Header.VisiblePosition = 10;
  1729. ultraGridColumn39.Hidden = true;
  1730. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 16;
  1731. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  1732. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
  1733. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
  1734. ultraGridColumn40.Header.VisiblePosition = 11;
  1735. ultraGridColumn40.Hidden = true;
  1736. ultraGridBand2.Columns.AddRange(new object[] {
  1737. ultraGridColumn29,
  1738. ultraGridColumn30,
  1739. ultraGridColumn31,
  1740. ultraGridColumn32,
  1741. ultraGridColumn33,
  1742. ultraGridColumn34,
  1743. ultraGridColumn35,
  1744. ultraGridColumn36,
  1745. ultraGridColumn37,
  1746. ultraGridColumn38,
  1747. ultraGridColumn39,
  1748. ultraGridColumn40});
  1749. ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
  1750. ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
  1751. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  1752. this.ugrdBaseInfo.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1753. appearance8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  1754. appearance8.FontData.SizeInPoints = 9F;
  1755. appearance8.TextHAlignAsString = "Left";
  1756. this.ugrdBaseInfo.DisplayLayout.CaptionAppearance = appearance8;
  1757. this.ugrdBaseInfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  1758. appearance9.BackColor = System.Drawing.Color.LightSteelBlue;
  1759. this.ugrdBaseInfo.DisplayLayout.Override.HeaderAppearance = appearance9;
  1760. this.ugrdBaseInfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1761. this.ugrdBaseInfo.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1762. this.ugrdBaseInfo.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  1763. this.ugrdBaseInfo.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1764. valueList5.Key = "ladlestatus";
  1765. valueListItem18.DataValue = "0";
  1766. valueListItem18.DisplayText = "下线";
  1767. valueListItem19.DataValue = "1";
  1768. valueListItem19.DisplayText = "等待位";
  1769. valueListItem20.DataValue = "2";
  1770. valueListItem20.DisplayText = "浇铸位";
  1771. valueList5.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
  1772. valueListItem18,
  1773. valueListItem19,
  1774. valueListItem20});
  1775. this.ugrdBaseInfo.DisplayLayout.ValueLists.AddRange(new Infragistics.Win.ValueList[] {
  1776. valueList5});
  1777. this.ugrdBaseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  1778. this.ugrdBaseInfo.Font = new System.Drawing.Font("宋体", 9F);
  1779. this.ugrdBaseInfo.Location = new System.Drawing.Point(0, 0);
  1780. this.ugrdBaseInfo.Name = "ugrdBaseInfo";
  1781. this.ugrdBaseInfo.Size = new System.Drawing.Size(375, 164);
  1782. this.ugrdBaseInfo.TabIndex = 0;
  1783. this.ugrdBaseInfo.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ulgridBaseInfo_DoubleClickRow);
  1784. this.ugrdBaseInfo.AfterRowActivate += new System.EventHandler(this.ulgridBaseInfo_AfterRowActivate);
  1785. //
  1786. // udsrBaseInfo
  1787. //
  1788. this.udsrBaseInfo.Band.Columns.AddRange(new object[] {
  1789. ultraDataColumn29,
  1790. ultraDataColumn30,
  1791. ultraDataColumn31,
  1792. ultraDataColumn32,
  1793. ultraDataColumn33,
  1794. ultraDataColumn34,
  1795. ultraDataColumn35,
  1796. ultraDataColumn36,
  1797. ultraDataColumn37,
  1798. ultraDataColumn38,
  1799. ultraDataColumn39,
  1800. ultraDataColumn40});
  1801. //
  1802. // ultraGroupBox3
  1803. //
  1804. this.ultraGroupBox3.Controls.Add(this.ucmeID);
  1805. this.ultraGroupBox3.Controls.Add(this.udteEnd);
  1806. this.ultraGroupBox3.Controls.Add(this.ucmeZJH);
  1807. this.ultraGroupBox3.Controls.Add(this.chkZJH);
  1808. this.ultraGroupBox3.Controls.Add(this.chkDate);
  1809. this.ultraGroupBox3.Controls.Add(this.udteStart);
  1810. this.ultraGroupBox3.Controls.Add(this.label1);
  1811. this.ultraGroupBox3.Controls.Add(this.chkID);
  1812. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  1813. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
  1814. this.ultraGroupBox3.Name = "ultraGroupBox3";
  1815. this.ultraGroupBox3.Size = new System.Drawing.Size(1025, 39);
  1816. this.ultraGroupBox3.TabIndex = 257;
  1817. //
  1818. // ultraGroupBox4
  1819. //
  1820. this.ultraGroupBox4.Controls.Add(this.ultraPanel1);
  1821. this.ultraGroupBox4.Controls.Add(this.splitter2);
  1822. this.ultraGroupBox4.Controls.Add(this.ultraExpandableGroupBox2);
  1823. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  1824. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 39);
  1825. this.ultraGroupBox4.Name = "ultraGroupBox4";
  1826. this.ultraGroupBox4.Size = new System.Drawing.Size(1025, 171);
  1827. this.ultraGroupBox4.TabIndex = 258;
  1828. //
  1829. // ultraPanel1
  1830. //
  1831. //
  1832. // ultraPanel1.ClientArea
  1833. //
  1834. this.ultraPanel1.ClientArea.Controls.Add(this.ugrdUseInfo);
  1835. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1836. this.ultraPanel1.Location = new System.Drawing.Point(396, 0);
  1837. this.ultraPanel1.Name = "ultraPanel1";
  1838. this.ultraPanel1.Size = new System.Drawing.Size(626, 168);
  1839. this.ultraPanel1.TabIndex = 4;
  1840. //
  1841. // splitter2
  1842. //
  1843. this.splitter2.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
  1844. this.splitter2.Location = new System.Drawing.Point(393, 0);
  1845. this.splitter2.Name = "splitter2";
  1846. this.splitter2.Size = new System.Drawing.Size(3, 168);
  1847. this.splitter2.TabIndex = 3;
  1848. this.splitter2.TabStop = false;
  1849. //
  1850. // FrmTundishManage
  1851. //
  1852. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  1853. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1854. this.ClientSize = new System.Drawing.Size(1025, 487);
  1855. this.Controls.Add(this.ultraGroupBox4);
  1856. this.Controls.Add(this.ultraGroupBox3);
  1857. this.Controls.Add(this.ultraExpandableGroupBox1);
  1858. this.Font = new System.Drawing.Font("宋体", 10.5F);
  1859. this.Name = "FrmTundishManage";
  1860. this.Text = "中间包信息管理";
  1861. this.Load += new System.EventHandler(this.FrmTundishManage_Load);
  1862. ((System.ComponentModel.ISupportInitialize)(this.udsrUseInfo)).EndInit();
  1863. ((System.ComponentModel.ISupportInitialize)(this.ucmeID)).EndInit();
  1864. ((System.ComponentModel.ISupportInitialize)(this.ucmeZJH)).EndInit();
  1865. ((System.ComponentModel.ISupportInitialize)(this.udteEnd)).EndInit();
  1866. ((System.ComponentModel.ISupportInitialize)(this.udteStart)).EndInit();
  1867. this.ulexpgrpModel.ResumeLayout(false);
  1868. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1869. this.ultraGroupBox1.ResumeLayout(false);
  1870. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  1871. this.ultraGroupBox2.ResumeLayout(false);
  1872. this.ultraGroupBox2.PerformLayout();
  1873. ((System.ComponentModel.ISupportInitialize)(this.udteMinFireBeginTime)).EndInit();
  1874. ((System.ComponentModel.ISupportInitialize)(this.udteMiddleFireBeginTime)).EndInit();
  1875. ((System.ComponentModel.ISupportInitialize)(this.udteMaxFireBeginTime)).EndInit();
  1876. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
  1877. this.ultraGroupBox5.ResumeLayout(false);
  1878. this.ultraGroupBox5.PerformLayout();
  1879. ((System.ComponentModel.ISupportInitialize)(this.ucmeGrude)).EndInit();
  1880. ((System.ComponentModel.ISupportInitialize)(this.ucmeDownNozzleFactory)).EndInit();
  1881. ((System.ComponentModel.ISupportInitialize)(this.ucmeUpNozzleFactory)).EndInit();
  1882. ((System.ComponentModel.ISupportInitialize)(this.ucmeSlidegateNozzleFactory)).EndInit();
  1883. ((System.ComponentModel.ISupportInitialize)(this.ucmeStickFactory)).EndInit();
  1884. ((System.ComponentModel.ISupportInitialize)(this.ucmeDopeFactory)).EndInit();
  1885. ((System.ComponentModel.ISupportInitialize)(this.ucmeReason)).EndInit();
  1886. ((System.ComponentModel.ISupportInitialize)(this.ucmeClass)).EndInit();
  1887. ((System.ComponentModel.ISupportInitialize)(this.ucmeUpClass)).EndInit();
  1888. ((System.ComponentModel.ISupportInitialize)(this.udtpEndTime)).EndInit();
  1889. ((System.ComponentModel.ISupportInitialize)(this.uldtpUpLableDate)).EndInit();
  1890. ((System.ComponentModel.ISupportInitialize)(this.uldtpBeginDate)).EndInit();
  1891. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1892. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1893. ((System.ComponentModel.ISupportInitialize)(this.ugrdUseInfo)).EndInit();
  1894. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  1895. this.ultraExpandableGroupBox2.ResumeLayout(false);
  1896. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1897. ((System.ComponentModel.ISupportInitialize)(this.ugrdBaseInfo)).EndInit();
  1898. ((System.ComponentModel.ISupportInitialize)(this.udsrBaseInfo)).EndInit();
  1899. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  1900. this.ultraGroupBox3.ResumeLayout(false);
  1901. this.ultraGroupBox3.PerformLayout();
  1902. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  1903. this.ultraGroupBox4.ResumeLayout(false);
  1904. this.ultraPanel1.ClientArea.ResumeLayout(false);
  1905. this.ultraPanel1.ResumeLayout(false);
  1906. this.ResumeLayout(false);
  1907. }
  1908. #endregion
  1909. private System.Windows.Forms.CheckBox chkID;
  1910. public Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  1911. public Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ulexpgrpModel;
  1912. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1913. private System.Windows.Forms.ComboBox cmbCcmPositionID;
  1914. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor uldtpBeginDate;
  1915. private System.Windows.Forms.Label label3;
  1916. private System.Windows.Forms.Label lblCcmPositionID;
  1917. private System.Windows.Forms.ComboBox cmbStatus;
  1918. private System.Windows.Forms.Label lblStatus;
  1919. private System.Windows.Forms.Label lblTundishName;
  1920. private System.Windows.Forms.Label lblGrude;
  1921. private System.Windows.Forms.Label lblMemo;
  1922. private System.Windows.Forms.TextBox txtMemo;
  1923. private System.Windows.Forms.TextBox txtMouldID;
  1924. private System.Windows.Forms.Label lblMouldID;
  1925. private System.Windows.Forms.Label lblAge;
  1926. private System.Windows.Forms.Label lblDopeFactory;
  1927. private System.Windows.Forms.Label lblUpNozzleFactory;
  1928. private System.Windows.Forms.Label lblStickFactory;
  1929. private System.Windows.Forms.Label lblDownNozzleFactory;
  1930. private System.Windows.Forms.Label lblBeginDate;
  1931. private System.Windows.Forms.Label lblReason;
  1932. private System.Windows.Forms.Label lblUpLableDate;
  1933. private System.Windows.Forms.Label lblSlidegateNozzleFactory;
  1934. private System.Windows.Forms.TextBox txtAge;
  1935. private System.Windows.Forms.Label lblTundidhUse;
  1936. private System.Windows.Forms.TextBox txtTundidhUse;
  1937. private Infragistics.Win.Misc.UltraButton btn_MaxFire;
  1938. private Infragistics.Win.Misc.UltraButton btn_MiddleFire;
  1939. private Infragistics.Win.Misc.UltraButton btn_MinFire;
  1940. private System.Windows.Forms.Label lblMaxFireBeginTime;
  1941. private System.Windows.Forms.Label lblMiddleFireBeginTime;
  1942. private System.Windows.Forms.Label lblMinFireBeginTime;
  1943. private System.Windows.Forms.Label lblLadlelId;
  1944. private System.Windows.Forms.TextBox txtLadlelId;
  1945. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteMaxFireBeginTime;
  1946. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteMiddleFireBeginTime;
  1947. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteMinFireBeginTime;
  1948. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor uldtpUpLableDate;
  1949. private System.Windows.Forms.TextBox txtTundishName;
  1950. private System.Windows.Forms.Label lblTundishName2;
  1951. public Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  1952. public Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  1953. public Infragistics.Win.UltraWinGrid.UltraGrid ugrdBaseInfo;
  1954. private Infragistics.Win.UltraWinDataSource.UltraDataSource udsrUseInfo;
  1955. private System.Windows.Forms.ComboBox cmbPositionId;
  1956. private System.Windows.Forms.Label lblPositionId;
  1957. private System.Windows.Forms.Label lblClass;
  1958. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udtpEndTime;
  1959. private System.Windows.Forms.Label lblEndTime;
  1960. private System.Windows.Forms.Label lblUpClass;
  1961. private System.Windows.Forms.Label lblFactoryName;
  1962. private System.Windows.Forms.TextBox txtFactoryName;
  1963. private System.Windows.Forms.Label lblCheckName;
  1964. private System.Windows.Forms.TextBox txtCheckName;
  1965. private System.Windows.Forms.CheckBox chkZJH;
  1966. private Infragistics.Win.UltraWinDataSource.UltraDataSource udsrBaseInfo;
  1967. private System.Windows.Forms.TextBox txtTundishName1;
  1968. public Infragistics.Win.UltraWinGrid.UltraGrid ugrdUseInfo;
  1969. private System.Windows.Forms.CheckBox chkDate;
  1970. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteStart;
  1971. private System.Windows.Forms.Label label1;
  1972. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteEnd;
  1973. private Infragistics.Win.Misc.UltraButton btnClrMax;
  1974. private Infragistics.Win.Misc.UltraButton btnClrMid;
  1975. private Infragistics.Win.Misc.UltraButton btnClrMin;
  1976. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeID;
  1977. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeZJH;
  1978. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeReason;
  1979. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeClass;
  1980. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeUpClass;
  1981. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeDownNozzleFactory;
  1982. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeUpNozzleFactory;
  1983. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeSlidegateNozzleFactory;
  1984. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeStickFactory;
  1985. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeDopeFactory;
  1986. private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeGrude;
  1987. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  1988. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  1989. private System.Windows.Forms.Splitter splitter2;
  1990. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
  1991. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  1992. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  1993. }
  1994. }