UIK050010.Designer.cs 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. namespace Core.LZMes.Client.UIK
  2. {
  3. partial class UIK050010
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  29. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  31. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  32. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  33. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  34. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  35. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  36. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  37. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  38. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  39. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_NO");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEG_FLAG");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STAND_ID");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_TYPE");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ID_UP");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_DIAMETER_UP");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_CROWN_UP");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ROUGHNESS_UP");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_SHAPE_UP");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_PROPERTY_CLASS");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OP_CHOCK_NO_UP");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DR_CHOCK_NO_UP");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA1");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA2");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA3");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA4");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA5");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA6");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA7");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REG_DTIME");
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SELECT_ITEM", 0, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
  62. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  67. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  73. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_NO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REG_ID");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REG_DTIME");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STAND_ID");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_TYPE");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ID_LO");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_DIAMETER_LO");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_CROWN_LO");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ROUGHNESS_LO");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_SHAPE_LO");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_PROPERTY_CLASS_LO");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OP_CHOCK_NO_LO");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DR_CHOCK_NO_LO");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA1");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA2");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA3");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA4");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA5");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA6");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA7");
  97. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  110. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  111. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  113. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  114. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  121. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  122. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  130. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  131. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  132. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  133. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  134. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  136. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  137. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  138. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  151. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  152. this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  153. this.zgArea = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  154. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  155. this.zgNumber = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  156. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  157. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  158. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  159. this.dataSet1 = new System.Data.DataSet();
  160. this.dataTable1 = new System.Data.DataTable();
  161. this.dataColumn1 = new System.Data.DataColumn();
  162. this.dataColumn2 = new System.Data.DataColumn();
  163. this.dataColumn3 = new System.Data.DataColumn();
  164. this.dataColumn4 = new System.Data.DataColumn();
  165. this.dataColumn5 = new System.Data.DataColumn();
  166. this.dataColumn6 = new System.Data.DataColumn();
  167. this.dataColumn7 = new System.Data.DataColumn();
  168. this.dataColumn8 = new System.Data.DataColumn();
  169. this.dataColumn9 = new System.Data.DataColumn();
  170. this.dataColumn10 = new System.Data.DataColumn();
  171. this.dataColumn11 = new System.Data.DataColumn();
  172. this.dataColumn12 = new System.Data.DataColumn();
  173. this.dataColumn13 = new System.Data.DataColumn();
  174. this.dataColumn14 = new System.Data.DataColumn();
  175. this.dataColumn15 = new System.Data.DataColumn();
  176. this.dataColumn16 = new System.Data.DataColumn();
  177. this.dataColumn17 = new System.Data.DataColumn();
  178. this.dataColumn18 = new System.Data.DataColumn();
  179. this.dataColumn19 = new System.Data.DataColumn();
  180. this.dataColumn40 = new System.Data.DataColumn();
  181. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  182. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  183. this.dataSet2 = new System.Data.DataSet();
  184. this.dataTable2 = new System.Data.DataTable();
  185. this.dataColumn20 = new System.Data.DataColumn();
  186. this.dataColumn21 = new System.Data.DataColumn();
  187. this.dataColumn22 = new System.Data.DataColumn();
  188. this.dataColumn23 = new System.Data.DataColumn();
  189. this.dataColumn24 = new System.Data.DataColumn();
  190. this.dataColumn25 = new System.Data.DataColumn();
  191. this.dataColumn26 = new System.Data.DataColumn();
  192. this.dataColumn27 = new System.Data.DataColumn();
  193. this.dataColumn28 = new System.Data.DataColumn();
  194. this.dataColumn29 = new System.Data.DataColumn();
  195. this.dataColumn30 = new System.Data.DataColumn();
  196. this.dataColumn31 = new System.Data.DataColumn();
  197. this.dataColumn32 = new System.Data.DataColumn();
  198. this.dataColumn33 = new System.Data.DataColumn();
  199. this.dataColumn34 = new System.Data.DataColumn();
  200. this.dataColumn35 = new System.Data.DataColumn();
  201. this.dataColumn36 = new System.Data.DataColumn();
  202. this.dataColumn37 = new System.Data.DataColumn();
  203. this.dataColumn38 = new System.Data.DataColumn();
  204. this.dataColumn39 = new System.Data.DataColumn();
  205. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  206. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  207. this.ultraComboXcai = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  208. this.ultraComboScai = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  209. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  210. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  211. this.ultraTextXshap = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  212. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  213. this.ultraTextSshap = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  214. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  215. this.ultraTextXiaTu = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  216. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  217. this.ultraTextShangTu = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  218. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  219. this.ultraTextLodia = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  220. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  221. this.ultraTextUpdia = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  222. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  223. this.ultraComboArea = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  224. this.ultraComboRollType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  225. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  226. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  227. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  228. this.ultraTextReg_id = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  229. this.ultraTextRoll_id_lo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  230. this.ultraTextRoll_id_up = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  231. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  232. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  233. this.ultraTextSand_id = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  234. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  235. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  236. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  237. this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  238. this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  239. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  240. this.ultraGroupBox1.SuspendLayout();
  241. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
  242. ((System.ComponentModel.ISupportInitialize)(this.zgArea)).BeginInit();
  243. ((System.ComponentModel.ISupportInitialize)(this.zgNumber)).BeginInit();
  244. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  245. this.ultraGroupBox2.SuspendLayout();
  246. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  247. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  248. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  250. this.ultraGroupBox3.SuspendLayout();
  251. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  253. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  254. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  255. this.ultraExpandableGroupBox1.SuspendLayout();
  256. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  257. ((System.ComponentModel.ISupportInitialize)(this.ultraComboXcai)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.ultraComboScai)).BeginInit();
  259. ((System.ComponentModel.ISupportInitialize)(this.ultraTextXshap)).BeginInit();
  260. ((System.ComponentModel.ISupportInitialize)(this.ultraTextSshap)).BeginInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.ultraTextXiaTu)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.ultraTextShangTu)).BeginInit();
  263. ((System.ComponentModel.ISupportInitialize)(this.ultraTextLodia)).BeginInit();
  264. ((System.ComponentModel.ISupportInitialize)(this.ultraTextUpdia)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.ultraComboArea)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.ultraComboRollType)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.ultraTextReg_id)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_lo)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_up)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.ultraTextSand_id)).BeginInit();
  271. this.ultraPanel1.ClientArea.SuspendLayout();
  272. this.ultraPanel1.SuspendLayout();
  273. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
  274. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
  275. this.SuspendLayout();
  276. //
  277. // ultraGroupBox1
  278. //
  279. appearance3.BackColor = System.Drawing.Color.Gainsboro;
  280. this.ultraGroupBox1.Appearance = appearance3;
  281. this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor2);
  282. this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor1);
  283. this.ultraGroupBox1.Controls.Add(this.ultraLabel11);
  284. this.ultraGroupBox1.Controls.Add(this.ultraCheckEditor1);
  285. this.ultraGroupBox1.Controls.Add(this.zgArea);
  286. this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
  287. this.ultraGroupBox1.Controls.Add(this.zgNumber);
  288. this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
  289. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  290. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  291. this.ultraGroupBox1.Name = "ultraGroupBox1";
  292. this.ultraGroupBox1.Size = new System.Drawing.Size(804, 57);
  293. this.ultraGroupBox1.TabIndex = 0;
  294. this.ultraGroupBox1.Text = "查询条件";
  295. //
  296. // ultraCheckEditor1
  297. //
  298. appearance5.BackColor = System.Drawing.Color.LightBlue;
  299. this.ultraCheckEditor1.Appearance = appearance5;
  300. this.ultraCheckEditor1.BackColor = System.Drawing.Color.LightBlue;
  301. this.ultraCheckEditor1.BackColorInternal = System.Drawing.Color.LightBlue;
  302. this.ultraCheckEditor1.Location = new System.Drawing.Point(683, 22);
  303. this.ultraCheckEditor1.Name = "ultraCheckEditor1";
  304. this.ultraCheckEditor1.Size = new System.Drawing.Size(120, 20);
  305. this.ultraCheckEditor1.TabIndex = 12;
  306. this.ultraCheckEditor1.Text = "查询全部记录";
  307. this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
  308. //
  309. // zgArea
  310. //
  311. appearance4.BackColor = System.Drawing.SystemColors.Window;
  312. appearance4.BorderColor = System.Drawing.Color.Black;
  313. appearance4.TextHAlignAsString = "Center";
  314. appearance4.TextVAlignAsString = "Middle";
  315. this.zgArea.Appearance = appearance4;
  316. this.zgArea.BackColor = System.Drawing.SystemColors.Window;
  317. this.zgArea.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  318. this.zgArea.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  319. valueListItem1.DataValue = "ValueListItem0";
  320. valueListItem1.DisplayText = "1";
  321. valueListItem2.DataValue = "ValueListItem1";
  322. valueListItem2.DisplayText = "2";
  323. valueListItem3.DataValue = "ValueListItem2";
  324. valueListItem3.DisplayText = "3";
  325. valueListItem4.DataValue = "ValueListItem3";
  326. valueListItem4.DisplayText = "4";
  327. valueListItem5.DataValue = "ValueListItem4";
  328. valueListItem5.DisplayText = "5";
  329. this.zgArea.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  330. valueListItem1,
  331. valueListItem2,
  332. valueListItem3,
  333. valueListItem4,
  334. valueListItem5});
  335. this.zgArea.Location = new System.Drawing.Point(266, 21);
  336. this.zgArea.Name = "zgArea";
  337. this.zgArea.Size = new System.Drawing.Size(99, 21);
  338. this.zgArea.TabIndex = 7;
  339. //
  340. // ultraLabel4
  341. //
  342. appearance81.BackColor = System.Drawing.Color.LightBlue;
  343. appearance81.TextHAlignAsString = "Center";
  344. appearance81.TextVAlignAsString = "Middle";
  345. this.ultraLabel4.Appearance = appearance81;
  346. this.ultraLabel4.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  347. this.ultraLabel4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  348. this.ultraLabel4.Location = new System.Drawing.Point(194, 21);
  349. this.ultraLabel4.Name = "ultraLabel4";
  350. this.ultraLabel4.Size = new System.Drawing.Size(70, 21);
  351. this.ultraLabel4.TabIndex = 6;
  352. this.ultraLabel4.Text = "轧辊区域";
  353. //
  354. // zgNumber
  355. //
  356. appearance33.BorderColor = System.Drawing.Color.Black;
  357. this.zgNumber.Appearance = appearance33;
  358. this.zgNumber.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.WindowsVista;
  359. this.zgNumber.Location = new System.Drawing.Point(78, 21);
  360. this.zgNumber.Name = "zgNumber";
  361. this.zgNumber.Size = new System.Drawing.Size(110, 21);
  362. this.zgNumber.TabIndex = 1;
  363. //
  364. // ultraLabel1
  365. //
  366. appearance1.BackColor = System.Drawing.Color.LightBlue;
  367. appearance1.TextHAlignAsString = "Center";
  368. appearance1.TextVAlignAsString = "Middle";
  369. this.ultraLabel1.Appearance = appearance1;
  370. this.ultraLabel1.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  371. this.ultraLabel1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  372. this.ultraLabel1.Location = new System.Drawing.Point(6, 21);
  373. this.ultraLabel1.Name = "ultraLabel1";
  374. this.ultraLabel1.Size = new System.Drawing.Size(70, 21);
  375. this.ultraLabel1.TabIndex = 0;
  376. this.ultraLabel1.Text = "机架号";
  377. //
  378. // ultraGroupBox2
  379. //
  380. this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
  381. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  382. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  383. this.ultraGroupBox2.Name = "ultraGroupBox2";
  384. this.ultraGroupBox2.Size = new System.Drawing.Size(804, 206);
  385. this.ultraGroupBox2.TabIndex = 0;
  386. this.ultraGroupBox2.Text = "上辊属性";
  387. //
  388. // ultraGrid1
  389. //
  390. this.ultraGrid1.DataSource = this.dataSet1;
  391. appearance6.BackColor = System.Drawing.SystemColors.Window;
  392. appearance6.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  393. this.ultraGrid1.DisplayLayout.Appearance = appearance6;
  394. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  395. ultraGridColumn1.Header.Caption = "换辊计划号";
  396. ultraGridColumn1.Header.VisiblePosition = 0;
  397. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 21;
  398. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  399. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  400. ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  401. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  402. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  403. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  404. ultraGridColumn2.Header.Caption = "记录是否已下发";
  405. ultraGridColumn2.Header.VisiblePosition = 1;
  406. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  407. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  408. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  409. ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  410. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  411. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  412. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  413. ultraGridColumn3.Header.Caption = "机架号";
  414. ultraGridColumn3.Header.VisiblePosition = 2;
  415. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 1;
  416. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  417. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  418. ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  419. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  420. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  421. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  422. ultraGridColumn4.Header.Caption = "轧辊类型";
  423. ultraGridColumn4.Header.VisiblePosition = 3;
  424. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
  425. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  426. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  427. ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  428. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  429. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  430. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  431. ultraGridColumn5.Header.Caption = "上辊编号";
  432. ultraGridColumn5.Header.VisiblePosition = 4;
  433. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
  434. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  435. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  436. ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  437. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  438. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  439. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  440. ultraGridColumn6.Header.Caption = "上辊直径";
  441. ultraGridColumn6.Header.VisiblePosition = 5;
  442. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 7;
  443. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  444. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  445. ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  446. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  447. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  448. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  449. ultraGridColumn7.Header.Caption = "上辊凸度";
  450. ultraGridColumn7.Header.VisiblePosition = 6;
  451. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 8;
  452. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  453. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  454. ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  455. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  456. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  457. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  458. ultraGridColumn8.Header.Caption = "上辊粗糙度";
  459. ultraGridColumn8.Header.VisiblePosition = 7;
  460. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 9;
  461. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  462. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  463. ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  464. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  465. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  466. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  467. ultraGridColumn9.Header.Caption = "上辊外形代码";
  468. ultraGridColumn9.Header.VisiblePosition = 8;
  469. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 10;
  470. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  471. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  472. ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  473. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  474. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  475. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  476. ultraGridColumn10.Header.Caption = "上辊材质代码";
  477. ultraGridColumn10.Header.VisiblePosition = 9;
  478. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 11;
  479. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  480. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  481. ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  482. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  483. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  484. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  485. ultraGridColumn11.Header.Caption = "上辊操作侧轴承座号";
  486. ultraGridColumn11.Header.VisiblePosition = 10;
  487. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 12;
  488. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  489. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(158, 17);
  490. ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  491. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  492. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  493. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  494. ultraGridColumn12.Header.Caption = "上辊传动侧轴承座号";
  495. ultraGridColumn12.Header.VisiblePosition = 11;
  496. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 13;
  497. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  498. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(156, 17);
  499. ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  500. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  501. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  502. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  503. ultraGridColumn13.Header.Caption = "上辊系数1";
  504. ultraGridColumn13.Header.VisiblePosition = 12;
  505. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 14;
  506. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  507. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  508. ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  509. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  510. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  511. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  512. ultraGridColumn14.Header.Caption = "上辊系数2";
  513. ultraGridColumn14.Header.VisiblePosition = 13;
  514. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 15;
  515. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  516. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  517. ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  518. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  519. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  520. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  521. ultraGridColumn15.Header.Caption = "上辊系数3";
  522. ultraGridColumn15.Header.VisiblePosition = 14;
  523. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 16;
  524. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  525. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  526. ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  527. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  528. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  529. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  530. ultraGridColumn16.Header.Caption = "上辊系数4";
  531. ultraGridColumn16.Header.VisiblePosition = 15;
  532. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 17;
  533. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  534. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  535. ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  536. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  537. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  538. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  539. ultraGridColumn17.Header.Caption = "上辊系数5";
  540. ultraGridColumn17.Header.VisiblePosition = 16;
  541. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 18;
  542. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  543. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  544. ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  545. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  546. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  547. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  548. ultraGridColumn18.Header.Caption = "上辊系数6";
  549. ultraGridColumn18.Header.VisiblePosition = 17;
  550. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 19;
  551. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  552. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  553. ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  554. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  555. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  556. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  557. ultraGridColumn19.Header.Caption = "上辊系数7";
  558. ultraGridColumn19.Header.VisiblePosition = 18;
  559. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 20;
  560. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  561. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
  562. ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  563. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  564. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  565. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  566. ultraGridColumn20.Header.Caption = "操作时间";
  567. ultraGridColumn20.Header.VisiblePosition = 19;
  568. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 3;
  569. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  570. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  571. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
  572. ultraGridColumn21.DataType = typeof(bool);
  573. ultraGridColumn21.Header.Caption = "选择下发计划";
  574. ultraGridColumn21.Header.VisiblePosition = 20;
  575. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
  576. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  577. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 17);
  578. ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
  579. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  580. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  581. ultraGridColumn21.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  582. ultraGridBand1.Columns.AddRange(new object[] {
  583. ultraGridColumn1,
  584. ultraGridColumn2,
  585. ultraGridColumn3,
  586. ultraGridColumn4,
  587. ultraGridColumn5,
  588. ultraGridColumn6,
  589. ultraGridColumn7,
  590. ultraGridColumn8,
  591. ultraGridColumn9,
  592. ultraGridColumn10,
  593. ultraGridColumn11,
  594. ultraGridColumn12,
  595. ultraGridColumn13,
  596. ultraGridColumn14,
  597. ultraGridColumn15,
  598. ultraGridColumn16,
  599. ultraGridColumn17,
  600. ultraGridColumn18,
  601. ultraGridColumn19,
  602. ultraGridColumn20,
  603. ultraGridColumn21});
  604. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  605. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  606. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  607. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  608. appearance7.BackColor = System.Drawing.SystemColors.ActiveBorder;
  609. appearance7.BackColor2 = System.Drawing.SystemColors.ControlDark;
  610. appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  611. appearance7.BorderColor = System.Drawing.SystemColors.Window;
  612. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance7;
  613. appearance8.ForeColor = System.Drawing.SystemColors.GrayText;
  614. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance8;
  615. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  616. this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = " ";
  617. appearance9.BackColor = System.Drawing.SystemColors.ControlLightLight;
  618. appearance9.BackColor2 = System.Drawing.SystemColors.Control;
  619. appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  620. appearance9.ForeColor = System.Drawing.SystemColors.GrayText;
  621. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance9;
  622. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  623. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  624. appearance10.BackColor = System.Drawing.SystemColors.Window;
  625. appearance10.ForeColor = System.Drawing.SystemColors.ControlText;
  626. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance10;
  627. appearance11.BackColor = System.Drawing.SystemColors.Highlight;
  628. appearance11.ForeColor = System.Drawing.SystemColors.HighlightText;
  629. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance11;
  630. this.ultraGrid1.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  631. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  632. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  633. appearance12.BackColor = System.Drawing.SystemColors.Window;
  634. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance12;
  635. appearance13.BorderColor = System.Drawing.Color.Silver;
  636. appearance13.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  637. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance13;
  638. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  639. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  640. appearance14.BackColor = System.Drawing.SystemColors.Control;
  641. appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
  642. appearance14.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  643. appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  644. appearance14.BorderColor = System.Drawing.SystemColors.Window;
  645. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance14;
  646. appearance15.BackColor = System.Drawing.Color.LightSteelBlue;
  647. appearance15.TextHAlignAsString = "Center";
  648. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance15;
  649. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  650. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  651. appearance16.BackColor = System.Drawing.SystemColors.Window;
  652. appearance16.BorderColor = System.Drawing.Color.Silver;
  653. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance16;
  654. appearance17.BackColor = System.Drawing.Color.LightSteelBlue;
  655. this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance17;
  656. appearance44.BackColor = System.Drawing.Color.LightSteelBlue;
  657. this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderAppearance = appearance44;
  658. this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  659. this.ultraGrid1.DisplayLayout.Override.RowSelectorStyle = Infragistics.Win.HeaderStyle.Standard;
  660. this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  661. appearance45.BackColor = System.Drawing.SystemColors.ControlLight;
  662. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance45;
  663. this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  664. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  665. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  666. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  667. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  668. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  669. this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
  670. this.ultraGrid1.Name = "ultraGrid1";
  671. this.ultraGrid1.Size = new System.Drawing.Size(798, 185);
  672. this.ultraGrid1.TabIndex = 0;
  673. this.ultraGrid1.Text = "ultraGrid1";
  674. //
  675. // dataSet1
  676. //
  677. this.dataSet1.DataSetName = "NewDataSet";
  678. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  679. this.dataTable1});
  680. //
  681. // dataTable1
  682. //
  683. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  684. this.dataColumn1,
  685. this.dataColumn2,
  686. this.dataColumn3,
  687. this.dataColumn4,
  688. this.dataColumn5,
  689. this.dataColumn6,
  690. this.dataColumn7,
  691. this.dataColumn8,
  692. this.dataColumn9,
  693. this.dataColumn10,
  694. this.dataColumn11,
  695. this.dataColumn12,
  696. this.dataColumn13,
  697. this.dataColumn14,
  698. this.dataColumn15,
  699. this.dataColumn16,
  700. this.dataColumn17,
  701. this.dataColumn18,
  702. this.dataColumn19,
  703. this.dataColumn40});
  704. this.dataTable1.TableName = "Table1";
  705. //
  706. // dataColumn1
  707. //
  708. this.dataColumn1.ColumnName = "SPEC_NO";
  709. //
  710. // dataColumn2
  711. //
  712. this.dataColumn2.ColumnName = "MEG_FLAG";
  713. //
  714. // dataColumn3
  715. //
  716. this.dataColumn3.ColumnName = "STAND_ID";
  717. //
  718. // dataColumn4
  719. //
  720. this.dataColumn4.ColumnName = "ROLL_TYPE";
  721. //
  722. // dataColumn5
  723. //
  724. this.dataColumn5.ColumnName = "ROLL_ID_UP";
  725. //
  726. // dataColumn6
  727. //
  728. this.dataColumn6.ColumnName = "ROLL_DIAMETER_UP";
  729. //
  730. // dataColumn7
  731. //
  732. this.dataColumn7.ColumnName = "ROLL_CROWN_UP";
  733. //
  734. // dataColumn8
  735. //
  736. this.dataColumn8.ColumnName = "ROLL_ROUGHNESS_UP";
  737. //
  738. // dataColumn9
  739. //
  740. this.dataColumn9.ColumnName = "ROLL_SHAPE_UP";
  741. //
  742. // dataColumn10
  743. //
  744. this.dataColumn10.ColumnName = "ROLL_PROPERTY_CLASS";
  745. //
  746. // dataColumn11
  747. //
  748. this.dataColumn11.ColumnName = "OP_CHOCK_NO_UP";
  749. //
  750. // dataColumn12
  751. //
  752. this.dataColumn12.ColumnName = "DR_CHOCK_NO_UP";
  753. //
  754. // dataColumn13
  755. //
  756. this.dataColumn13.ColumnName = "SA1";
  757. //
  758. // dataColumn14
  759. //
  760. this.dataColumn14.ColumnName = "SA2";
  761. //
  762. // dataColumn15
  763. //
  764. this.dataColumn15.ColumnName = "SA3";
  765. //
  766. // dataColumn16
  767. //
  768. this.dataColumn16.ColumnName = "SA4";
  769. //
  770. // dataColumn17
  771. //
  772. this.dataColumn17.ColumnName = "SA5";
  773. //
  774. // dataColumn18
  775. //
  776. this.dataColumn18.ColumnName = "SA6";
  777. //
  778. // dataColumn19
  779. //
  780. this.dataColumn19.ColumnName = "SA7";
  781. //
  782. // dataColumn40
  783. //
  784. this.dataColumn40.ColumnName = "REG_DTIME";
  785. //
  786. // ultraGroupBox3
  787. //
  788. this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
  789. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  790. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 206);
  791. this.ultraGroupBox3.Name = "ultraGroupBox3";
  792. this.ultraGroupBox3.Size = new System.Drawing.Size(804, 196);
  793. this.ultraGroupBox3.TabIndex = 1;
  794. this.ultraGroupBox3.Text = "下辊属性";
  795. //
  796. // ultraGrid2
  797. //
  798. this.ultraGrid2.DataSource = this.dataSet2;
  799. appearance49.BackColor = System.Drawing.SystemColors.Window;
  800. appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  801. this.ultraGrid2.DisplayLayout.Appearance = appearance49;
  802. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  803. ultraGridColumn22.Header.Caption = "换辊计划号";
  804. ultraGridColumn22.Header.VisiblePosition = 0;
  805. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 19;
  806. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  807. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  808. ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  809. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  810. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  811. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  812. ultraGridColumn23.Header.Caption = "操作人";
  813. ultraGridColumn23.Header.VisiblePosition = 1;
  814. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 1;
  815. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  816. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  817. ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  818. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  819. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  820. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  821. ultraGridColumn24.Header.Caption = "操作时间";
  822. ultraGridColumn24.Header.VisiblePosition = 2;
  823. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
  824. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  825. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  826. ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  827. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
  828. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
  829. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  830. ultraGridColumn25.Header.Caption = "机架号";
  831. ultraGridColumn25.Header.VisiblePosition = 3;
  832. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 0;
  833. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  834. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  835. ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  836. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  837. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  838. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  839. ultraGridColumn26.Header.Caption = "轧辊类型";
  840. ultraGridColumn26.Header.VisiblePosition = 4;
  841. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 3;
  842. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  843. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  844. ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  845. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  846. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  847. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  848. ultraGridColumn27.Header.Caption = "下辊编号";
  849. ultraGridColumn27.Header.VisiblePosition = 5;
  850. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 4;
  851. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  852. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  853. ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  854. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
  855. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
  856. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  857. ultraGridColumn28.Header.Caption = "下辊直径";
  858. ultraGridColumn28.Header.VisiblePosition = 6;
  859. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 5;
  860. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  861. ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  862. ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  863. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
  864. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  865. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  866. ultraGridColumn29.Header.Caption = "下辊凸度";
  867. ultraGridColumn29.Header.VisiblePosition = 7;
  868. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
  869. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  870. ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  871. ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  872. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
  873. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
  874. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  875. ultraGridColumn30.Header.Caption = "下辊辊粗糙度";
  876. ultraGridColumn30.Header.VisiblePosition = 8;
  877. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 7;
  878. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  879. ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  880. ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  881. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
  882. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
  883. ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  884. ultraGridColumn31.Header.Caption = "下辊外形代码";
  885. ultraGridColumn31.Header.VisiblePosition = 9;
  886. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 8;
  887. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  888. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  889. ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  890. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  891. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  892. ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  893. ultraGridColumn32.Header.Caption = "下辊材质代码";
  894. ultraGridColumn32.Header.VisiblePosition = 10;
  895. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 9;
  896. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  897. ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  898. ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  899. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
  900. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  901. ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  902. ultraGridColumn33.Header.Caption = "下辊操作侧轴承座号";
  903. ultraGridColumn33.Header.VisiblePosition = 11;
  904. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 10;
  905. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  906. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(146, 24);
  907. ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  908. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
  909. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
  910. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  911. ultraGridColumn34.Header.Caption = "下辊传动侧轴承座号";
  912. ultraGridColumn34.Header.VisiblePosition = 12;
  913. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 11;
  914. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  915. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(157, 24);
  916. ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  917. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
  918. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
  919. ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  920. ultraGridColumn35.Header.Caption = "下辊系数1";
  921. ultraGridColumn35.Header.VisiblePosition = 13;
  922. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
  923. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  924. ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  925. ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  926. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
  927. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
  928. ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  929. ultraGridColumn36.Header.Caption = "下辊系数2";
  930. ultraGridColumn36.Header.VisiblePosition = 14;
  931. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 13;
  932. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  933. ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  934. ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  935. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
  936. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
  937. ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  938. ultraGridColumn37.Header.Caption = "下辊系数3";
  939. ultraGridColumn37.Header.VisiblePosition = 15;
  940. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 14;
  941. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  942. ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  943. ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  944. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
  945. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
  946. ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  947. ultraGridColumn38.Header.Caption = "下辊系数4";
  948. ultraGridColumn38.Header.VisiblePosition = 16;
  949. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 15;
  950. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  951. ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  952. ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  953. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
  954. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
  955. ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  956. ultraGridColumn39.Header.Caption = "下辊系数5";
  957. ultraGridColumn39.Header.VisiblePosition = 17;
  958. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 16;
  959. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  960. ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  961. ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  962. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
  963. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
  964. ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  965. ultraGridColumn40.Header.Caption = "下辊系数6";
  966. ultraGridColumn40.Header.VisiblePosition = 18;
  967. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 17;
  968. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  969. ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  970. ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  971. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
  972. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
  973. ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  974. ultraGridColumn41.Header.Caption = "下辊系数7";
  975. ultraGridColumn41.Header.VisiblePosition = 19;
  976. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 18;
  977. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  978. ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
  979. ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
  980. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
  981. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
  982. ultraGridBand2.Columns.AddRange(new object[] {
  983. ultraGridColumn22,
  984. ultraGridColumn23,
  985. ultraGridColumn24,
  986. ultraGridColumn25,
  987. ultraGridColumn26,
  988. ultraGridColumn27,
  989. ultraGridColumn28,
  990. ultraGridColumn29,
  991. ultraGridColumn30,
  992. ultraGridColumn31,
  993. ultraGridColumn32,
  994. ultraGridColumn33,
  995. ultraGridColumn34,
  996. ultraGridColumn35,
  997. ultraGridColumn36,
  998. ultraGridColumn37,
  999. ultraGridColumn38,
  1000. ultraGridColumn39,
  1001. ultraGridColumn40,
  1002. ultraGridColumn41});
  1003. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1004. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1005. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1006. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1007. appearance50.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1008. appearance50.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1009. appearance50.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1010. appearance50.BorderColor = System.Drawing.SystemColors.Window;
  1011. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance50;
  1012. appearance51.ForeColor = System.Drawing.SystemColors.GrayText;
  1013. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance51;
  1014. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1015. this.ultraGrid2.DisplayLayout.GroupByBox.Prompt = " ";
  1016. appearance61.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1017. appearance61.BackColor2 = System.Drawing.SystemColors.Control;
  1018. appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1019. appearance61.ForeColor = System.Drawing.SystemColors.GrayText;
  1020. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance61;
  1021. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  1022. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  1023. appearance62.BackColor = System.Drawing.SystemColors.Window;
  1024. appearance62.ForeColor = System.Drawing.SystemColors.ControlText;
  1025. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance62;
  1026. appearance63.BackColor = System.Drawing.SystemColors.Highlight;
  1027. appearance63.ForeColor = System.Drawing.SystemColors.HighlightText;
  1028. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance63;
  1029. this.ultraGrid2.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1030. this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1031. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1032. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1033. appearance64.BackColor = System.Drawing.SystemColors.Window;
  1034. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance64;
  1035. appearance65.BorderColor = System.Drawing.Color.Silver;
  1036. appearance65.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1037. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance65;
  1038. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1039. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  1040. appearance85.BackColor = System.Drawing.SystemColors.Control;
  1041. appearance85.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1042. appearance85.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1043. appearance85.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1044. appearance85.BorderColor = System.Drawing.SystemColors.Window;
  1045. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance85;
  1046. appearance86.BackColor = System.Drawing.Color.LightSteelBlue;
  1047. appearance86.TextHAlignAsString = "Center";
  1048. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance86;
  1049. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1050. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1051. appearance87.BackColor = System.Drawing.SystemColors.Window;
  1052. appearance87.BorderColor = System.Drawing.Color.Silver;
  1053. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance87;
  1054. this.ultraGrid2.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  1055. this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1056. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1057. appearance88.BackColor = System.Drawing.SystemColors.ControlLight;
  1058. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance88;
  1059. this.ultraGrid2.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  1060. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1061. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1062. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1063. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  1064. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1065. this.ultraGrid2.Location = new System.Drawing.Point(3, 18);
  1066. this.ultraGrid2.Name = "ultraGrid2";
  1067. this.ultraGrid2.Size = new System.Drawing.Size(798, 175);
  1068. this.ultraGrid2.TabIndex = 0;
  1069. this.ultraGrid2.Text = "ultraGrid2";
  1070. //
  1071. // dataSet2
  1072. //
  1073. this.dataSet2.DataSetName = "NewDataSet";
  1074. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  1075. this.dataTable2});
  1076. //
  1077. // dataTable2
  1078. //
  1079. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  1080. this.dataColumn20,
  1081. this.dataColumn21,
  1082. this.dataColumn22,
  1083. this.dataColumn23,
  1084. this.dataColumn24,
  1085. this.dataColumn25,
  1086. this.dataColumn26,
  1087. this.dataColumn27,
  1088. this.dataColumn28,
  1089. this.dataColumn29,
  1090. this.dataColumn30,
  1091. this.dataColumn31,
  1092. this.dataColumn32,
  1093. this.dataColumn33,
  1094. this.dataColumn34,
  1095. this.dataColumn35,
  1096. this.dataColumn36,
  1097. this.dataColumn37,
  1098. this.dataColumn38,
  1099. this.dataColumn39});
  1100. this.dataTable2.TableName = "Table1";
  1101. //
  1102. // dataColumn20
  1103. //
  1104. this.dataColumn20.ColumnName = "SPEC_NO";
  1105. //
  1106. // dataColumn21
  1107. //
  1108. this.dataColumn21.ColumnName = "REG_ID";
  1109. //
  1110. // dataColumn22
  1111. //
  1112. this.dataColumn22.ColumnName = "REG_DTIME";
  1113. //
  1114. // dataColumn23
  1115. //
  1116. this.dataColumn23.ColumnName = "STAND_ID";
  1117. //
  1118. // dataColumn24
  1119. //
  1120. this.dataColumn24.ColumnName = "ROLL_TYPE";
  1121. //
  1122. // dataColumn25
  1123. //
  1124. this.dataColumn25.ColumnName = "ROLL_ID_LO";
  1125. //
  1126. // dataColumn26
  1127. //
  1128. this.dataColumn26.ColumnName = "ROLL_DIAMETER_LO";
  1129. //
  1130. // dataColumn27
  1131. //
  1132. this.dataColumn27.ColumnName = "ROLL_CROWN_LO";
  1133. //
  1134. // dataColumn28
  1135. //
  1136. this.dataColumn28.ColumnName = "ROLL_ROUGHNESS_LO";
  1137. //
  1138. // dataColumn29
  1139. //
  1140. this.dataColumn29.ColumnName = "ROLL_SHAPE_LO";
  1141. //
  1142. // dataColumn30
  1143. //
  1144. this.dataColumn30.ColumnName = "ROLL_PROPERTY_CLASS_LO";
  1145. //
  1146. // dataColumn31
  1147. //
  1148. this.dataColumn31.ColumnName = "OP_CHOCK_NO_LO";
  1149. //
  1150. // dataColumn32
  1151. //
  1152. this.dataColumn32.ColumnName = "DR_CHOCK_NO_LO";
  1153. //
  1154. // dataColumn33
  1155. //
  1156. this.dataColumn33.ColumnName = "XA1";
  1157. //
  1158. // dataColumn34
  1159. //
  1160. this.dataColumn34.ColumnName = "XA2";
  1161. //
  1162. // dataColumn35
  1163. //
  1164. this.dataColumn35.ColumnName = "XA3";
  1165. //
  1166. // dataColumn36
  1167. //
  1168. this.dataColumn36.ColumnName = "XA4";
  1169. //
  1170. // dataColumn37
  1171. //
  1172. this.dataColumn37.ColumnName = "XA5";
  1173. //
  1174. // dataColumn38
  1175. //
  1176. this.dataColumn38.ColumnName = "XA6";
  1177. //
  1178. // dataColumn39
  1179. //
  1180. this.dataColumn39.ColumnName = "XA7";
  1181. //
  1182. // ultraExpandableGroupBox1
  1183. //
  1184. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1185. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1186. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(804, 119);
  1187. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 402);
  1188. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1189. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(804, 119);
  1190. this.ultraExpandableGroupBox1.TabIndex = 4;
  1191. this.ultraExpandableGroupBox1.Text = "编辑区域";
  1192. //
  1193. // ultraExpandableGroupBoxPanel1
  1194. //
  1195. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboXcai);
  1196. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboScai);
  1197. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel17);
  1198. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel16);
  1199. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextXshap);
  1200. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel15);
  1201. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextSshap);
  1202. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel14);
  1203. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextXiaTu);
  1204. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel13);
  1205. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextShangTu);
  1206. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel12);
  1207. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextLodia);
  1208. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
  1209. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextUpdia);
  1210. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
  1211. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboArea);
  1212. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboRollType);
  1213. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel10);
  1214. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
  1215. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
  1216. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextReg_id);
  1217. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextRoll_id_lo);
  1218. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextRoll_id_up);
  1219. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
  1220. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel6);
  1221. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextSand_id);
  1222. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel5);
  1223. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1224. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
  1225. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1226. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(798, 97);
  1227. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1228. //
  1229. // ultraComboXcai
  1230. //
  1231. appearance31.BorderColor = System.Drawing.Color.Black;
  1232. appearance31.TextHAlignAsString = "Center";
  1233. appearance31.TextVAlignAsString = "Middle";
  1234. this.ultraComboXcai.Appearance = appearance31;
  1235. this.ultraComboXcai.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1236. this.ultraComboXcai.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1237. valueListItem16.DataValue = "ValueListItem0";
  1238. valueListItem16.DisplayText = "光辊";
  1239. valueListItem17.DataValue = "ValueListItem1";
  1240. valueListItem17.DisplayText = "毛辊";
  1241. this.ultraComboXcai.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1242. valueListItem16,
  1243. valueListItem17});
  1244. this.ultraComboXcai.Location = new System.Drawing.Point(471, 86);
  1245. this.ultraComboXcai.Name = "ultraComboXcai";
  1246. this.ultraComboXcai.Size = new System.Drawing.Size(100, 21);
  1247. this.ultraComboXcai.TabIndex = 33;
  1248. //
  1249. // ultraComboScai
  1250. //
  1251. appearance30.BorderColor = System.Drawing.Color.Black;
  1252. appearance30.TextHAlignAsString = "Center";
  1253. appearance30.TextVAlignAsString = "Middle";
  1254. this.ultraComboScai.Appearance = appearance30;
  1255. this.ultraComboScai.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1256. this.ultraComboScai.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1257. valueListItem14.DataValue = "ValueListItem0";
  1258. valueListItem14.DisplayText = "光辊";
  1259. valueListItem15.DataValue = "ValueListItem1";
  1260. valueListItem15.DisplayText = "毛辊";
  1261. this.ultraComboScai.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1262. valueListItem14,
  1263. valueListItem15});
  1264. this.ultraComboScai.Location = new System.Drawing.Point(277, 86);
  1265. this.ultraComboScai.Name = "ultraComboScai";
  1266. this.ultraComboScai.Size = new System.Drawing.Size(100, 21);
  1267. this.ultraComboScai.TabIndex = 31;
  1268. //
  1269. // ultraLabel17
  1270. //
  1271. appearance74.BackColor = System.Drawing.Color.LightBlue;
  1272. appearance74.BorderColor = System.Drawing.Color.Black;
  1273. appearance74.TextHAlignAsString = "Center";
  1274. appearance74.TextVAlignAsString = "Middle";
  1275. this.ultraLabel17.Appearance = appearance74;
  1276. this.ultraLabel17.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1277. this.ultraLabel17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1278. this.ultraLabel17.Location = new System.Drawing.Point(383, 86);
  1279. this.ultraLabel17.Name = "ultraLabel17";
  1280. this.ultraLabel17.Size = new System.Drawing.Size(86, 21);
  1281. this.ultraLabel17.TabIndex = 30;
  1282. this.ultraLabel17.Text = "下辊材质代码";
  1283. //
  1284. // ultraLabel16
  1285. //
  1286. appearance73.BackColor = System.Drawing.Color.LightBlue;
  1287. appearance73.BorderColor = System.Drawing.Color.Black;
  1288. appearance73.TextHAlignAsString = "Center";
  1289. appearance73.TextVAlignAsString = "Middle";
  1290. this.ultraLabel16.Appearance = appearance73;
  1291. this.ultraLabel16.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1292. this.ultraLabel16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1293. this.ultraLabel16.Location = new System.Drawing.Point(189, 86);
  1294. this.ultraLabel16.Name = "ultraLabel16";
  1295. this.ultraLabel16.Size = new System.Drawing.Size(86, 21);
  1296. this.ultraLabel16.TabIndex = 28;
  1297. this.ultraLabel16.Text = "上辊材质代码";
  1298. //
  1299. // ultraTextXshap
  1300. //
  1301. appearance21.BackColor = System.Drawing.SystemColors.Window;
  1302. appearance21.BorderColor = System.Drawing.Color.Black;
  1303. this.ultraTextXshap.Appearance = appearance21;
  1304. this.ultraTextXshap.BackColor = System.Drawing.SystemColors.Window;
  1305. this.ultraTextXshap.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1306. this.ultraTextXshap.Location = new System.Drawing.Point(97, 86);
  1307. this.ultraTextXshap.Name = "ultraTextXshap";
  1308. this.ultraTextXshap.Size = new System.Drawing.Size(86, 21);
  1309. this.ultraTextXshap.TabIndex = 27;
  1310. //
  1311. // ultraLabel15
  1312. //
  1313. appearance69.BackColor = System.Drawing.Color.LightBlue;
  1314. appearance69.BorderColor = System.Drawing.Color.Black;
  1315. appearance69.TextHAlignAsString = "Center";
  1316. appearance69.TextVAlignAsString = "Middle";
  1317. this.ultraLabel15.Appearance = appearance69;
  1318. this.ultraLabel15.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1319. this.ultraLabel15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1320. this.ultraLabel15.Location = new System.Drawing.Point(9, 87);
  1321. this.ultraLabel15.Name = "ultraLabel15";
  1322. this.ultraLabel15.Size = new System.Drawing.Size(86, 21);
  1323. this.ultraLabel15.TabIndex = 26;
  1324. this.ultraLabel15.Text = "下辊外形代码";
  1325. //
  1326. // ultraTextSshap
  1327. //
  1328. appearance28.BackColor = System.Drawing.SystemColors.Window;
  1329. appearance28.BorderColor = System.Drawing.Color.Black;
  1330. this.ultraTextSshap.Appearance = appearance28;
  1331. this.ultraTextSshap.BackColor = System.Drawing.SystemColors.Window;
  1332. this.ultraTextSshap.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1333. this.ultraTextSshap.Location = new System.Drawing.Point(667, 34);
  1334. this.ultraTextSshap.Name = "ultraTextSshap";
  1335. this.ultraTextSshap.Size = new System.Drawing.Size(100, 21);
  1336. this.ultraTextSshap.TabIndex = 25;
  1337. //
  1338. // ultraLabel14
  1339. //
  1340. appearance80.BackColor = System.Drawing.Color.LightBlue;
  1341. appearance80.BorderColor = System.Drawing.Color.Black;
  1342. appearance80.TextHAlignAsString = "Center";
  1343. appearance80.TextVAlignAsString = "Middle";
  1344. this.ultraLabel14.Appearance = appearance80;
  1345. this.ultraLabel14.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1346. this.ultraLabel14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1347. this.ultraLabel14.Location = new System.Drawing.Point(577, 34);
  1348. this.ultraLabel14.Name = "ultraLabel14";
  1349. this.ultraLabel14.Size = new System.Drawing.Size(88, 21);
  1350. this.ultraLabel14.TabIndex = 24;
  1351. this.ultraLabel14.Text = "上辊外形代码";
  1352. //
  1353. // ultraTextXiaTu
  1354. //
  1355. appearance25.BackColor = System.Drawing.SystemColors.Window;
  1356. appearance25.BorderColor = System.Drawing.Color.Black;
  1357. this.ultraTextXiaTu.Appearance = appearance25;
  1358. this.ultraTextXiaTu.BackColor = System.Drawing.SystemColors.Window;
  1359. this.ultraTextXiaTu.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1360. this.ultraTextXiaTu.Location = new System.Drawing.Point(471, 60);
  1361. this.ultraTextXiaTu.Name = "ultraTextXiaTu";
  1362. this.ultraTextXiaTu.Size = new System.Drawing.Size(100, 21);
  1363. this.ultraTextXiaTu.TabIndex = 23;
  1364. //
  1365. // ultraLabel13
  1366. //
  1367. appearance75.BackColor = System.Drawing.Color.LightBlue;
  1368. appearance75.BorderColor = System.Drawing.Color.Black;
  1369. appearance75.TextHAlignAsString = "Center";
  1370. appearance75.TextVAlignAsString = "Middle";
  1371. this.ultraLabel13.Appearance = appearance75;
  1372. this.ultraLabel13.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1373. this.ultraLabel13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1374. this.ultraLabel13.Location = new System.Drawing.Point(383, 60);
  1375. this.ultraLabel13.Name = "ultraLabel13";
  1376. this.ultraLabel13.Size = new System.Drawing.Size(86, 21);
  1377. this.ultraLabel13.TabIndex = 22;
  1378. this.ultraLabel13.Text = "下辊凸度";
  1379. //
  1380. // ultraTextShangTu
  1381. //
  1382. appearance22.BackColor = System.Drawing.SystemColors.Window;
  1383. appearance22.BorderColor = System.Drawing.Color.Black;
  1384. this.ultraTextShangTu.Appearance = appearance22;
  1385. this.ultraTextShangTu.BackColor = System.Drawing.SystemColors.Window;
  1386. this.ultraTextShangTu.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1387. this.ultraTextShangTu.Location = new System.Drawing.Point(277, 60);
  1388. this.ultraTextShangTu.Name = "ultraTextShangTu";
  1389. this.ultraTextShangTu.Size = new System.Drawing.Size(100, 21);
  1390. this.ultraTextShangTu.TabIndex = 21;
  1391. //
  1392. // ultraLabel12
  1393. //
  1394. appearance72.BackColor = System.Drawing.Color.LightBlue;
  1395. appearance72.BorderColor = System.Drawing.Color.Black;
  1396. appearance72.TextHAlignAsString = "Center";
  1397. appearance72.TextVAlignAsString = "Middle";
  1398. this.ultraLabel12.Appearance = appearance72;
  1399. this.ultraLabel12.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1400. this.ultraLabel12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1401. this.ultraLabel12.Location = new System.Drawing.Point(189, 60);
  1402. this.ultraLabel12.Name = "ultraLabel12";
  1403. this.ultraLabel12.Size = new System.Drawing.Size(86, 21);
  1404. this.ultraLabel12.TabIndex = 20;
  1405. this.ultraLabel12.Text = "上辊凸度";
  1406. //
  1407. // ultraTextLodia
  1408. //
  1409. appearance20.BackColor = System.Drawing.SystemColors.Window;
  1410. appearance20.BorderColor = System.Drawing.Color.Black;
  1411. this.ultraTextLodia.Appearance = appearance20;
  1412. this.ultraTextLodia.BackColor = System.Drawing.SystemColors.Window;
  1413. this.ultraTextLodia.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1414. this.ultraTextLodia.Location = new System.Drawing.Point(97, 60);
  1415. this.ultraTextLodia.Name = "ultraTextLodia";
  1416. this.ultraTextLodia.Size = new System.Drawing.Size(86, 21);
  1417. this.ultraTextLodia.TabIndex = 19;
  1418. //
  1419. // ultraLabel3
  1420. //
  1421. appearance68.BackColor = System.Drawing.Color.LightBlue;
  1422. appearance68.BorderColor = System.Drawing.Color.Black;
  1423. appearance68.TextHAlignAsString = "Center";
  1424. appearance68.TextVAlignAsString = "Middle";
  1425. this.ultraLabel3.Appearance = appearance68;
  1426. this.ultraLabel3.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1427. this.ultraLabel3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1428. this.ultraLabel3.Location = new System.Drawing.Point(9, 60);
  1429. this.ultraLabel3.Name = "ultraLabel3";
  1430. this.ultraLabel3.Size = new System.Drawing.Size(86, 21);
  1431. this.ultraLabel3.TabIndex = 18;
  1432. this.ultraLabel3.Text = "下辊直径";
  1433. //
  1434. // ultraTextUpdia
  1435. //
  1436. appearance27.BackColor = System.Drawing.SystemColors.Window;
  1437. appearance27.BorderColor = System.Drawing.Color.Black;
  1438. this.ultraTextUpdia.Appearance = appearance27;
  1439. this.ultraTextUpdia.BackColor = System.Drawing.SystemColors.Window;
  1440. this.ultraTextUpdia.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1441. this.ultraTextUpdia.Location = new System.Drawing.Point(667, 7);
  1442. this.ultraTextUpdia.Name = "ultraTextUpdia";
  1443. this.ultraTextUpdia.Size = new System.Drawing.Size(100, 21);
  1444. this.ultraTextUpdia.TabIndex = 17;
  1445. //
  1446. // ultraLabel2
  1447. //
  1448. appearance79.BackColor = System.Drawing.Color.LightBlue;
  1449. appearance79.BorderColor = System.Drawing.Color.Black;
  1450. appearance79.TextHAlignAsString = "Center";
  1451. appearance79.TextVAlignAsString = "Middle";
  1452. this.ultraLabel2.Appearance = appearance79;
  1453. this.ultraLabel2.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1454. this.ultraLabel2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1455. this.ultraLabel2.Location = new System.Drawing.Point(577, 7);
  1456. this.ultraLabel2.Name = "ultraLabel2";
  1457. this.ultraLabel2.Size = new System.Drawing.Size(88, 21);
  1458. this.ultraLabel2.TabIndex = 16;
  1459. this.ultraLabel2.Text = "上辊直径";
  1460. //
  1461. // ultraComboArea
  1462. //
  1463. appearance32.BorderColor = System.Drawing.Color.Black;
  1464. appearance32.TextHAlignAsString = "Center";
  1465. appearance32.TextVAlignAsString = "Middle";
  1466. this.ultraComboArea.Appearance = appearance32;
  1467. this.ultraComboArea.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1468. this.ultraComboArea.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1469. valueListItem9.DataValue = "ValueListItem0";
  1470. valueListItem9.DisplayText = "1";
  1471. valueListItem10.DataValue = "ValueListItem1";
  1472. valueListItem10.DisplayText = "2";
  1473. valueListItem11.DataValue = "ValueListItem2";
  1474. valueListItem11.DisplayText = "3";
  1475. valueListItem12.DataValue = "ValueListItem3";
  1476. valueListItem12.DisplayText = "4";
  1477. valueListItem13.DataValue = "ValueListItem4";
  1478. valueListItem13.DisplayText = "5";
  1479. this.ultraComboArea.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1480. valueListItem9,
  1481. valueListItem10,
  1482. valueListItem11,
  1483. valueListItem12,
  1484. valueListItem13});
  1485. this.ultraComboArea.Location = new System.Drawing.Point(471, 7);
  1486. this.ultraComboArea.Name = "ultraComboArea";
  1487. this.ultraComboArea.Size = new System.Drawing.Size(100, 21);
  1488. this.ultraComboArea.TabIndex = 15;
  1489. //
  1490. // ultraComboRollType
  1491. //
  1492. appearance29.BorderColor = System.Drawing.Color.Black;
  1493. appearance29.TextHAlignAsString = "Center";
  1494. appearance29.TextVAlignAsString = "Middle";
  1495. this.ultraComboRollType.Appearance = appearance29;
  1496. this.ultraComboRollType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1497. this.ultraComboRollType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1498. valueListItem6.DataValue = "ValueListItem0";
  1499. valueListItem6.DisplayText = "WKR";
  1500. valueListItem7.DataValue = "ValueListItem1";
  1501. valueListItem7.DisplayText = "IMR";
  1502. valueListItem8.DataValue = "ValueListItem2";
  1503. valueListItem8.DisplayText = "BUR";
  1504. this.ultraComboRollType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1505. valueListItem6,
  1506. valueListItem7,
  1507. valueListItem8});
  1508. this.ultraComboRollType.Location = new System.Drawing.Point(277, 7);
  1509. this.ultraComboRollType.Name = "ultraComboRollType";
  1510. this.ultraComboRollType.Size = new System.Drawing.Size(100, 21);
  1511. this.ultraComboRollType.TabIndex = 14;
  1512. //
  1513. // ultraLabel10
  1514. //
  1515. appearance76.BackColor = System.Drawing.Color.LightBlue;
  1516. appearance76.BorderColor = System.Drawing.Color.Black;
  1517. appearance76.TextHAlignAsString = "Center";
  1518. appearance76.TextVAlignAsString = "Middle";
  1519. this.ultraLabel10.Appearance = appearance76;
  1520. this.ultraLabel10.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1521. this.ultraLabel10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1522. this.ultraLabel10.Location = new System.Drawing.Point(383, 34);
  1523. this.ultraLabel10.Name = "ultraLabel10";
  1524. this.ultraLabel10.Size = new System.Drawing.Size(86, 21);
  1525. this.ultraLabel10.TabIndex = 11;
  1526. this.ultraLabel10.Text = "操作人";
  1527. //
  1528. // ultraLabel9
  1529. //
  1530. appearance71.BackColor = System.Drawing.Color.LightBlue;
  1531. appearance71.BorderColor = System.Drawing.Color.Black;
  1532. appearance71.TextHAlignAsString = "Center";
  1533. appearance71.TextVAlignAsString = "Middle";
  1534. this.ultraLabel9.Appearance = appearance71;
  1535. this.ultraLabel9.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1536. this.ultraLabel9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1537. this.ultraLabel9.Location = new System.Drawing.Point(189, 34);
  1538. this.ultraLabel9.Name = "ultraLabel9";
  1539. this.ultraLabel9.Size = new System.Drawing.Size(86, 21);
  1540. this.ultraLabel9.TabIndex = 10;
  1541. this.ultraLabel9.Text = "下辊编号";
  1542. //
  1543. // ultraLabel8
  1544. //
  1545. appearance67.BackColor = System.Drawing.Color.LightBlue;
  1546. appearance67.BorderColor = System.Drawing.Color.Black;
  1547. appearance67.TextHAlignAsString = "Center";
  1548. appearance67.TextVAlignAsString = "Middle";
  1549. this.ultraLabel8.Appearance = appearance67;
  1550. this.ultraLabel8.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1551. this.ultraLabel8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1552. this.ultraLabel8.Location = new System.Drawing.Point(9, 34);
  1553. this.ultraLabel8.Name = "ultraLabel8";
  1554. this.ultraLabel8.Size = new System.Drawing.Size(86, 21);
  1555. this.ultraLabel8.TabIndex = 9;
  1556. this.ultraLabel8.Text = "上辊编号";
  1557. //
  1558. // ultraTextReg_id
  1559. //
  1560. appearance24.BackColor = System.Drawing.SystemColors.Window;
  1561. appearance24.BorderColor = System.Drawing.Color.Black;
  1562. this.ultraTextReg_id.Appearance = appearance24;
  1563. this.ultraTextReg_id.BackColor = System.Drawing.SystemColors.Window;
  1564. this.ultraTextReg_id.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1565. this.ultraTextReg_id.Location = new System.Drawing.Point(471, 34);
  1566. this.ultraTextReg_id.Name = "ultraTextReg_id";
  1567. this.ultraTextReg_id.Size = new System.Drawing.Size(100, 21);
  1568. this.ultraTextReg_id.TabIndex = 8;
  1569. //
  1570. // ultraTextRoll_id_lo
  1571. //
  1572. appearance23.BackColor = System.Drawing.SystemColors.Window;
  1573. appearance23.BorderColor = System.Drawing.Color.Black;
  1574. this.ultraTextRoll_id_lo.Appearance = appearance23;
  1575. this.ultraTextRoll_id_lo.BackColor = System.Drawing.SystemColors.Window;
  1576. this.ultraTextRoll_id_lo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1577. this.ultraTextRoll_id_lo.Location = new System.Drawing.Point(277, 34);
  1578. this.ultraTextRoll_id_lo.Name = "ultraTextRoll_id_lo";
  1579. this.ultraTextRoll_id_lo.Size = new System.Drawing.Size(100, 21);
  1580. this.ultraTextRoll_id_lo.TabIndex = 7;
  1581. //
  1582. // ultraTextRoll_id_up
  1583. //
  1584. appearance19.BackColor = System.Drawing.SystemColors.Window;
  1585. appearance19.BorderColor = System.Drawing.Color.Black;
  1586. this.ultraTextRoll_id_up.Appearance = appearance19;
  1587. this.ultraTextRoll_id_up.BackColor = System.Drawing.SystemColors.Window;
  1588. this.ultraTextRoll_id_up.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1589. this.ultraTextRoll_id_up.Location = new System.Drawing.Point(97, 34);
  1590. this.ultraTextRoll_id_up.Name = "ultraTextRoll_id_up";
  1591. this.ultraTextRoll_id_up.Size = new System.Drawing.Size(86, 21);
  1592. this.ultraTextRoll_id_up.TabIndex = 6;
  1593. //
  1594. // ultraLabel7
  1595. //
  1596. appearance77.BackColor = System.Drawing.Color.LightBlue;
  1597. appearance77.BorderColor = System.Drawing.Color.Black;
  1598. appearance77.TextHAlignAsString = "Center";
  1599. appearance77.TextVAlignAsString = "Middle";
  1600. this.ultraLabel7.Appearance = appearance77;
  1601. this.ultraLabel7.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1602. this.ultraLabel7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1603. this.ultraLabel7.Location = new System.Drawing.Point(383, 7);
  1604. this.ultraLabel7.Name = "ultraLabel7";
  1605. this.ultraLabel7.Size = new System.Drawing.Size(86, 22);
  1606. this.ultraLabel7.TabIndex = 4;
  1607. this.ultraLabel7.Text = "换辊区域";
  1608. //
  1609. // ultraLabel6
  1610. //
  1611. appearance70.BackColor = System.Drawing.Color.LightBlue;
  1612. appearance70.BorderColor = System.Drawing.Color.Black;
  1613. appearance70.TextHAlignAsString = "Center";
  1614. appearance70.TextVAlignAsString = "Middle";
  1615. this.ultraLabel6.Appearance = appearance70;
  1616. this.ultraLabel6.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1617. this.ultraLabel6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1618. this.ultraLabel6.Location = new System.Drawing.Point(189, 7);
  1619. this.ultraLabel6.Name = "ultraLabel6";
  1620. this.ultraLabel6.Size = new System.Drawing.Size(86, 21);
  1621. this.ultraLabel6.TabIndex = 2;
  1622. this.ultraLabel6.Text = "轧辊类型";
  1623. //
  1624. // ultraTextSand_id
  1625. //
  1626. appearance18.BorderColor = System.Drawing.Color.Black;
  1627. this.ultraTextSand_id.Appearance = appearance18;
  1628. this.ultraTextSand_id.BorderStyle = Infragistics.Win.UIElementBorderStyle.Inset;
  1629. this.ultraTextSand_id.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1630. this.ultraTextSand_id.Location = new System.Drawing.Point(97, 7);
  1631. this.ultraTextSand_id.Name = "ultraTextSand_id";
  1632. this.ultraTextSand_id.Size = new System.Drawing.Size(86, 21);
  1633. this.ultraTextSand_id.TabIndex = 1;
  1634. //
  1635. // ultraLabel5
  1636. //
  1637. appearance66.BackColor = System.Drawing.Color.LightBlue;
  1638. appearance66.BorderColor = System.Drawing.Color.Black;
  1639. appearance66.TextHAlignAsString = "Center";
  1640. appearance66.TextVAlignAsString = "Middle";
  1641. this.ultraLabel5.Appearance = appearance66;
  1642. this.ultraLabel5.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1643. this.ultraLabel5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1644. this.ultraLabel5.Location = new System.Drawing.Point(9, 7);
  1645. this.ultraLabel5.Name = "ultraLabel5";
  1646. this.ultraLabel5.Size = new System.Drawing.Size(86, 21);
  1647. this.ultraLabel5.TabIndex = 0;
  1648. this.ultraLabel5.Text = "机架号";
  1649. //
  1650. // ultraPanel1
  1651. //
  1652. //
  1653. // ultraPanel1.ClientArea
  1654. //
  1655. this.ultraPanel1.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
  1656. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox3);
  1657. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
  1658. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1659. this.ultraPanel1.Location = new System.Drawing.Point(0, 57);
  1660. this.ultraPanel1.Name = "ultraPanel1";
  1661. this.ultraPanel1.Size = new System.Drawing.Size(804, 521);
  1662. this.ultraPanel1.TabIndex = 1;
  1663. //
  1664. // ultraLabel11
  1665. //
  1666. appearance35.BackColor = System.Drawing.Color.LightBlue;
  1667. appearance35.BorderColor = System.Drawing.Color.Black;
  1668. appearance35.TextHAlignAsString = "Center";
  1669. appearance35.TextVAlignAsString = "Middle";
  1670. this.ultraLabel11.Appearance = appearance35;
  1671. this.ultraLabel11.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1672. this.ultraLabel11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1673. this.ultraLabel11.Location = new System.Drawing.Point(371, 21);
  1674. this.ultraLabel11.Name = "ultraLabel11";
  1675. this.ultraLabel11.Size = new System.Drawing.Size(70, 21);
  1676. this.ultraLabel11.TabIndex = 36;
  1677. this.ultraLabel11.Text = "操作时间";
  1678. //
  1679. // ultraDateTimeEditor1
  1680. //
  1681. appearance26.BorderColor = System.Drawing.Color.Black;
  1682. this.ultraDateTimeEditor1.Appearance = appearance26;
  1683. this.ultraDateTimeEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1684. this.ultraDateTimeEditor1.Location = new System.Drawing.Point(444, 21);
  1685. this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
  1686. this.ultraDateTimeEditor1.Size = new System.Drawing.Size(116, 21);
  1687. this.ultraDateTimeEditor1.TabIndex = 37;
  1688. //
  1689. // ultraDateTimeEditor2
  1690. //
  1691. appearance2.BorderColor = System.Drawing.Color.Black;
  1692. this.ultraDateTimeEditor2.Appearance = appearance2;
  1693. this.ultraDateTimeEditor2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1694. this.ultraDateTimeEditor2.Location = new System.Drawing.Point(563, 21);
  1695. this.ultraDateTimeEditor2.Name = "ultraDateTimeEditor2";
  1696. this.ultraDateTimeEditor2.Size = new System.Drawing.Size(116, 21);
  1697. this.ultraDateTimeEditor2.TabIndex = 38;
  1698. //
  1699. // UIK050010
  1700. //
  1701. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1702. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1703. this.ClientSize = new System.Drawing.Size(804, 578);
  1704. this.Controls.Add(this.ultraPanel1);
  1705. this.Controls.Add(this.ultraGroupBox1);
  1706. this.Name = "UIK050010";
  1707. this.Text = "UIK050010";
  1708. this.Load += new System.EventHandler(this.UIK050010_Load);
  1709. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1710. this.ultraGroupBox1.ResumeLayout(false);
  1711. this.ultraGroupBox1.PerformLayout();
  1712. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
  1713. ((System.ComponentModel.ISupportInitialize)(this.zgArea)).EndInit();
  1714. ((System.ComponentModel.ISupportInitialize)(this.zgNumber)).EndInit();
  1715. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  1716. this.ultraGroupBox2.ResumeLayout(false);
  1717. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1718. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1719. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1720. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  1721. this.ultraGroupBox3.ResumeLayout(false);
  1722. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  1723. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  1724. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  1725. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1726. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1727. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1728. this.ultraExpandableGroupBoxPanel1.PerformLayout();
  1729. ((System.ComponentModel.ISupportInitialize)(this.ultraComboXcai)).EndInit();
  1730. ((System.ComponentModel.ISupportInitialize)(this.ultraComboScai)).EndInit();
  1731. ((System.ComponentModel.ISupportInitialize)(this.ultraTextXshap)).EndInit();
  1732. ((System.ComponentModel.ISupportInitialize)(this.ultraTextSshap)).EndInit();
  1733. ((System.ComponentModel.ISupportInitialize)(this.ultraTextXiaTu)).EndInit();
  1734. ((System.ComponentModel.ISupportInitialize)(this.ultraTextShangTu)).EndInit();
  1735. ((System.ComponentModel.ISupportInitialize)(this.ultraTextLodia)).EndInit();
  1736. ((System.ComponentModel.ISupportInitialize)(this.ultraTextUpdia)).EndInit();
  1737. ((System.ComponentModel.ISupportInitialize)(this.ultraComboArea)).EndInit();
  1738. ((System.ComponentModel.ISupportInitialize)(this.ultraComboRollType)).EndInit();
  1739. ((System.ComponentModel.ISupportInitialize)(this.ultraTextReg_id)).EndInit();
  1740. ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_lo)).EndInit();
  1741. ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_up)).EndInit();
  1742. ((System.ComponentModel.ISupportInitialize)(this.ultraTextSand_id)).EndInit();
  1743. this.ultraPanel1.ClientArea.ResumeLayout(false);
  1744. this.ultraPanel1.ResumeLayout(false);
  1745. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
  1746. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
  1747. this.ResumeLayout(false);
  1748. }
  1749. #endregion
  1750. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1751. private Infragistics.Win.UltraWinEditors.UltraTextEditor zgNumber;
  1752. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  1753. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  1754. private Infragistics.Win.UltraWinEditors.UltraComboEditor zgArea;
  1755. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  1756. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  1757. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  1758. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  1759. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  1760. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  1761. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  1762. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextReg_id;
  1763. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextRoll_id_lo;
  1764. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextRoll_id_up;
  1765. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  1766. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  1767. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextSand_id;
  1768. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  1769. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  1770. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
  1771. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  1772. private System.Data.DataSet dataSet1;
  1773. private System.Data.DataTable dataTable1;
  1774. private System.Data.DataColumn dataColumn1;
  1775. private System.Data.DataColumn dataColumn2;
  1776. private System.Data.DataColumn dataColumn3;
  1777. private System.Data.DataColumn dataColumn4;
  1778. private System.Data.DataColumn dataColumn5;
  1779. private System.Data.DataColumn dataColumn6;
  1780. private System.Data.DataColumn dataColumn7;
  1781. private System.Data.DataColumn dataColumn8;
  1782. private System.Data.DataColumn dataColumn9;
  1783. private System.Data.DataColumn dataColumn10;
  1784. private System.Data.DataColumn dataColumn11;
  1785. private System.Data.DataColumn dataColumn12;
  1786. private System.Data.DataColumn dataColumn13;
  1787. private System.Data.DataColumn dataColumn14;
  1788. private System.Data.DataColumn dataColumn15;
  1789. private System.Data.DataColumn dataColumn16;
  1790. private System.Data.DataColumn dataColumn17;
  1791. private System.Data.DataColumn dataColumn18;
  1792. private System.Data.DataColumn dataColumn19;
  1793. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  1794. private System.Data.DataSet dataSet2;
  1795. private System.Data.DataTable dataTable2;
  1796. private System.Data.DataColumn dataColumn20;
  1797. private System.Data.DataColumn dataColumn21;
  1798. private System.Data.DataColumn dataColumn22;
  1799. private System.Data.DataColumn dataColumn23;
  1800. private System.Data.DataColumn dataColumn24;
  1801. private System.Data.DataColumn dataColumn25;
  1802. private System.Data.DataColumn dataColumn26;
  1803. private System.Data.DataColumn dataColumn27;
  1804. private System.Data.DataColumn dataColumn28;
  1805. private System.Data.DataColumn dataColumn29;
  1806. private System.Data.DataColumn dataColumn30;
  1807. private System.Data.DataColumn dataColumn31;
  1808. private System.Data.DataColumn dataColumn32;
  1809. private System.Data.DataColumn dataColumn33;
  1810. private System.Data.DataColumn dataColumn34;
  1811. private System.Data.DataColumn dataColumn35;
  1812. private System.Data.DataColumn dataColumn36;
  1813. private System.Data.DataColumn dataColumn37;
  1814. private System.Data.DataColumn dataColumn38;
  1815. private System.Data.DataColumn dataColumn39;
  1816. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboRollType;
  1817. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboArea;
  1818. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  1819. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextLodia;
  1820. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  1821. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextUpdia;
  1822. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  1823. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  1824. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextXiaTu;
  1825. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  1826. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextShangTu;
  1827. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextXshap;
  1828. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  1829. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextSshap;
  1830. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboXcai;
  1831. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboScai;
  1832. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  1833. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  1834. private System.Data.DataColumn dataColumn40;
  1835. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  1836. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor2;
  1837. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
  1838. }
  1839. }