FrmZEROManage.Designer.cs 123 KB

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