FrmOutdecLabEngDataParm.Designer.cs 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  1. namespace Core.StlMes.Client.Lims.Data.PipeAndOutdec.数据管理.外委实验管理
  2. {
  3. partial class FrmOutdecLabEngDataParm
  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.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  29. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  30. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  31. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEP");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOAD");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRESSURE_MEDIUM");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INTERNAL_PRESSURE");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DOGLEG_DEGREE");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HOLD_TIME");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TEST_RESULT");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN_DELETE");
  40. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  41. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  53. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  54. Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  55. Infragistics.Win.UltraWinEditors.EditorButton editorButton6 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  56. Infragistics.Win.UltraWinEditors.EditorButton editorButton7 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  57. Infragistics.Win.UltraWinEditors.EditorButton editorButton8 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  58. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.UltraWinEditors.EditorButton editorButton9 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  63. Infragistics.Win.UltraWinEditors.EditorButton editorButton10 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  64. Infragistics.Win.UltraWinEditors.EditorButton editorButton11 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  65. Infragistics.Win.UltraWinEditors.EditorButton editorButton12 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  66. Infragistics.Win.UltraWinEditors.EditorButton editorButton13 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  67. Infragistics.Win.UltraWinEditors.EditorButton editorButton14 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  68. Infragistics.Win.UltraWinEditors.EditorButton editorButton15 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  69. Infragistics.Win.UltraWinEditors.EditorButton editorButton16 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  70. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  73. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.UltraWinEditors.EditorButton editorButton17 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  83. Infragistics.Win.UltraWinEditors.EditorButton editorButton18 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  84. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.UltraWinEditors.EditorButton editorButton19 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  86. Infragistics.Win.UltraWinEditors.EditorButton editorButton20 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  87. Infragistics.Win.UltraWinEditors.EditorButton editorButton21 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  88. Infragistics.Win.UltraWinEditors.EditorButton editorButton22 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  89. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEP");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIN");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BOX");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COMPOUND_TYPE");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COMPOUND_WEIGHT");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAKEUP_TORQUE");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOTAL_TORQUE");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BREAKOUT_TORQUE");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OBSERVED_THREAD_RESULT");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TEST_CURVE1");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TEST_CURVE2");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHOTO1");
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHOTO2");
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BTN_DELETE");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHOULDER_TORQUE");
  124. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  132. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.UltraWinEditors.EditorButton editorButton23 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  136. Infragistics.Win.UltraWinEditors.EditorButton editorButton24 = new Infragistics.Win.UltraWinEditors.EditorButton("update");
  137. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  138. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  147. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  148. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  149. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  150. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  151. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  152. this.panel1 = new System.Windows.Forms.Panel();
  153. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  154. this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
  155. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  156. this.dataSet1 = new System.Data.DataSet();
  157. this.dataTable1 = new System.Data.DataTable();
  158. this.dataColumn1 = new System.Data.DataColumn();
  159. this.dataColumn2 = new System.Data.DataColumn();
  160. this.dataColumn3 = new System.Data.DataColumn();
  161. this.dataColumn4 = new System.Data.DataColumn();
  162. this.dataColumn5 = new System.Data.DataColumn();
  163. this.dataColumn6 = new System.Data.DataColumn();
  164. this.dataColumn7 = new System.Data.DataColumn();
  165. this.dataColumn21 = new System.Data.DataColumn();
  166. this.dataTable2 = new System.Data.DataTable();
  167. this.dataColumn8 = new System.Data.DataColumn();
  168. this.dataColumn9 = new System.Data.DataColumn();
  169. this.dataColumn10 = new System.Data.DataColumn();
  170. this.dataColumn11 = new System.Data.DataColumn();
  171. this.dataColumn12 = new System.Data.DataColumn();
  172. this.dataColumn13 = new System.Data.DataColumn();
  173. this.dataColumn14 = new System.Data.DataColumn();
  174. this.dataColumn15 = new System.Data.DataColumn();
  175. this.dataColumn16 = new System.Data.DataColumn();
  176. this.dataColumn17 = new System.Data.DataColumn();
  177. this.dataColumn18 = new System.Data.DataColumn();
  178. this.dataColumn19 = new System.Data.DataColumn();
  179. this.dataColumn20 = new System.Data.DataColumn();
  180. this.dataColumn22 = new System.Data.DataColumn();
  181. this.dataColumn23 = new System.Data.DataColumn();
  182. this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
  183. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  184. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  185. this.ultraTEST_RESULTS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  186. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  187. this.ultraTEST_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  188. this.ultraFILE_PATH7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  189. this.ultraFILE_PATH6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  190. this.ultraFILE_PATH5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  191. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  192. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  193. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  194. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  195. this.ultraFILE_PATH4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  196. this.ultraFILE_PATH3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  197. this.ultraFILE_PATH2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  198. this.ultraFILE_PATH1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  199. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  200. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  201. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  202. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  203. this.ultraSTEEL_GRADE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  204. this.ultraSAMPLE_SIZE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  205. this.ultraTECHNICAL_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  206. this.ultraSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  207. this.ultraSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  208. this.ultraCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  209. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  210. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  211. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  212. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  213. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  214. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  215. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  216. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  217. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  218. this.lsTEST_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  219. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  220. this.lsFILE_PATH3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  221. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  222. this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
  223. this.lsFILE_PATH2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  224. this.lsFILE_PATH1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  225. this.lsTEST_RESULTS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  226. this.lsNOTE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  227. this.lsSTEEL_GRADE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  228. this.lsSAMPLE_SIZE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  229. this.lsTECHNICAL_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  230. this.lsSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  231. this.lsSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  232. this.lsCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  233. this.ultraLabel78 = new Infragistics.Win.Misc.UltraLabel();
  234. this.ultraLabel86 = new Infragistics.Win.Misc.UltraLabel();
  235. this.ultraLabel87 = new Infragistics.Win.Misc.UltraLabel();
  236. this.ultraLabel88 = new Infragistics.Win.Misc.UltraLabel();
  237. this.ultraLabel90 = new Infragistics.Win.Misc.UltraLabel();
  238. this.ultraLabel91 = new Infragistics.Win.Misc.UltraLabel();
  239. this.ultraLabel92 = new Infragistics.Win.Misc.UltraLabel();
  240. this.ultraLabel93 = new Infragistics.Win.Misc.UltraLabel();
  241. this.ultraLabel94 = new Infragistics.Win.Misc.UltraLabel();
  242. this.ultraLabel95 = new Infragistics.Win.Misc.UltraLabel();
  243. this.ultraLabel96 = new Infragistics.Win.Misc.UltraLabel();
  244. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  245. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  246. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  247. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  248. this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
  249. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  250. this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
  251. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  252. this.panel2 = new System.Windows.Forms.Panel();
  253. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  254. this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
  255. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  256. this.ultraPanel7 = new Infragistics.Win.Misc.UltraPanel();
  257. this.ultraButton3 = new Infragistics.Win.Misc.UltraButton();
  258. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  259. this.kkFILE_PATH1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  260. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  261. this.kkCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  262. this.kkCONNECTION = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  263. this.kkSTEEL_GRADE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  264. this.kkSAMPLE_SIZE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  265. this.kkTECHNICAL_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  266. this.kkSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  267. this.kkSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  268. this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
  269. this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
  270. this.ultraLabel83 = new Infragistics.Win.Misc.UltraLabel();
  271. this.ultraLabel97 = new Infragistics.Win.Misc.UltraLabel();
  272. this.ultraLabel98 = new Infragistics.Win.Misc.UltraLabel();
  273. this.ultraLabel99 = new Infragistics.Win.Misc.UltraLabel();
  274. this.ultraLabel100 = new Infragistics.Win.Misc.UltraLabel();
  275. this.ultraLabel101 = new Infragistics.Win.Misc.UltraLabel();
  276. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  277. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  278. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  279. this.kkTEST_RESULTS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  280. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  281. this.ultraTabPageControl1.SuspendLayout();
  282. this.panel1.SuspendLayout();
  283. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  284. this.splitContainer1.Panel1.SuspendLayout();
  285. this.splitContainer1.Panel2.SuspendLayout();
  286. this.splitContainer1.SuspendLayout();
  287. this.ultraPanel5.ClientArea.SuspendLayout();
  288. this.ultraPanel5.SuspendLayout();
  289. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  290. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  291. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  292. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  293. this.ultraPanel4.ClientArea.SuspendLayout();
  294. this.ultraPanel4.SuspendLayout();
  295. this.ultraPanel1.ClientArea.SuspendLayout();
  296. this.ultraPanel1.SuspendLayout();
  297. ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_RESULTS)).BeginInit();
  298. ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_ITEM)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH7)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH6)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH5)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH4)).BeginInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH3)).BeginInit();
  304. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH2)).BeginInit();
  305. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH1)).BeginInit();
  306. ((System.ComponentModel.ISupportInitialize)(this.ultraSTEEL_GRADE_NO)).BeginInit();
  307. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_SIZE)).BeginInit();
  308. ((System.ComponentModel.ISupportInitialize)(this.ultraTECHNICAL_STANDARD)).BeginInit();
  309. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NAME)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).BeginInit();
  311. ((System.ComponentModel.ISupportInitialize)(this.ultraCHECK_NO)).BeginInit();
  312. this.ultraTabPageControl2.SuspendLayout();
  313. this.ultraPanel2.ClientArea.SuspendLayout();
  314. this.ultraPanel2.SuspendLayout();
  315. ((System.ComponentModel.ISupportInitialize)(this.lsTEST_ITEM)).BeginInit();
  316. ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH3)).BeginInit();
  317. ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH2)).BeginInit();
  318. ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH1)).BeginInit();
  319. ((System.ComponentModel.ISupportInitialize)(this.lsTEST_RESULTS)).BeginInit();
  320. ((System.ComponentModel.ISupportInitialize)(this.lsNOTE)).BeginInit();
  321. ((System.ComponentModel.ISupportInitialize)(this.lsSTEEL_GRADE_NO)).BeginInit();
  322. ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_SIZE)).BeginInit();
  323. ((System.ComponentModel.ISupportInitialize)(this.lsTECHNICAL_STANDARD)).BeginInit();
  324. ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NAME)).BeginInit();
  325. ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NO)).BeginInit();
  326. ((System.ComponentModel.ISupportInitialize)(this.lsCHECK_NO)).BeginInit();
  327. this.ultraTabPageControl3.SuspendLayout();
  328. this.panel2.SuspendLayout();
  329. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  330. this.splitContainer2.Panel1.SuspendLayout();
  331. this.splitContainer2.Panel2.SuspendLayout();
  332. this.splitContainer2.SuspendLayout();
  333. this.ultraPanel6.ClientArea.SuspendLayout();
  334. this.ultraPanel6.SuspendLayout();
  335. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  336. this.ultraPanel7.ClientArea.SuspendLayout();
  337. this.ultraPanel7.SuspendLayout();
  338. this.ultraPanel3.ClientArea.SuspendLayout();
  339. this.ultraPanel3.SuspendLayout();
  340. ((System.ComponentModel.ISupportInitialize)(this.kkFILE_PATH1)).BeginInit();
  341. ((System.ComponentModel.ISupportInitialize)(this.kkCHECK_NO)).BeginInit();
  342. ((System.ComponentModel.ISupportInitialize)(this.kkCONNECTION)).BeginInit();
  343. ((System.ComponentModel.ISupportInitialize)(this.kkSTEEL_GRADE_NO)).BeginInit();
  344. ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_SIZE)).BeginInit();
  345. ((System.ComponentModel.ISupportInitialize)(this.kkTECHNICAL_STANDARD)).BeginInit();
  346. ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NAME)).BeginInit();
  347. ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NO)).BeginInit();
  348. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  349. this.ultraTabControl1.SuspendLayout();
  350. ((System.ComponentModel.ISupportInitialize)(this.kkTEST_RESULTS)).BeginInit();
  351. this.SuspendLayout();
  352. //
  353. // ultraTextEditor1
  354. //
  355. editorButton1.Key = "select";
  356. editorButton1.Text = "查询";
  357. this.ultraTextEditor1.ButtonsLeft.Add(editorButton1);
  358. editorButton2.Key = "update";
  359. editorButton2.Text = "上传";
  360. this.ultraTextEditor1.ButtonsRight.Add(editorButton2);
  361. this.ultraTextEditor1.Location = new System.Drawing.Point(512, 20);
  362. this.ultraTextEditor1.Name = "ultraTextEditor1";
  363. this.ultraTextEditor1.Size = new System.Drawing.Size(100, 21);
  364. this.ultraTextEditor1.TabIndex = 87;
  365. this.ultraTextEditor1.Visible = false;
  366. this.ultraTextEditor1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick);
  367. //
  368. // ultraTabPageControl1
  369. //
  370. this.ultraTabPageControl1.Controls.Add(this.panel1);
  371. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  372. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  373. this.ultraTabPageControl1.Size = new System.Drawing.Size(780, 724);
  374. //
  375. // panel1
  376. //
  377. this.panel1.Controls.Add(this.splitContainer1);
  378. this.panel1.Controls.Add(this.ultraPanel1);
  379. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  380. this.panel1.Location = new System.Drawing.Point(0, 0);
  381. this.panel1.Name = "panel1";
  382. this.panel1.Size = new System.Drawing.Size(780, 724);
  383. this.panel1.TabIndex = 2;
  384. //
  385. // splitContainer1
  386. //
  387. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  388. this.splitContainer1.Location = new System.Drawing.Point(0, 412);
  389. this.splitContainer1.Name = "splitContainer1";
  390. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  391. //
  392. // splitContainer1.Panel1
  393. //
  394. this.splitContainer1.Panel1.Controls.Add(this.ultraPanel5);
  395. //
  396. // splitContainer1.Panel2
  397. //
  398. this.splitContainer1.Panel2.Controls.Add(this.ultraPanel4);
  399. this.splitContainer1.Size = new System.Drawing.Size(780, 312);
  400. this.splitContainer1.SplitterDistance = 136;
  401. this.splitContainer1.TabIndex = 4;
  402. //
  403. // ultraPanel5
  404. //
  405. //
  406. // ultraPanel5.ClientArea
  407. //
  408. this.ultraPanel5.ClientArea.Controls.Add(this.ultraGrid1);
  409. this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
  410. this.ultraPanel5.Location = new System.Drawing.Point(0, 0);
  411. this.ultraPanel5.Name = "ultraPanel5";
  412. this.ultraPanel5.Size = new System.Drawing.Size(780, 136);
  413. this.ultraPanel5.TabIndex = 3;
  414. //
  415. // ultraGrid1
  416. //
  417. this.ultraGrid1.DataMember = "Table1";
  418. this.ultraGrid1.DataSource = this.dataSet1;
  419. appearance1.BackColor = System.Drawing.SystemColors.Window;
  420. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  421. this.ultraGrid1.DisplayLayout.Appearance = appearance1;
  422. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  423. ultraGridColumn1.Header.VisiblePosition = 0;
  424. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
  425. ultraGridColumn2.Header.VisiblePosition = 1;
  426. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
  427. ultraGridColumn3.Header.VisiblePosition = 2;
  428. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  429. ultraGridColumn4.Header.VisiblePosition = 3;
  430. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
  431. ultraGridColumn5.Header.VisiblePosition = 4;
  432. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
  433. ultraGridColumn6.Header.VisiblePosition = 5;
  434. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  435. ultraGridColumn7.Header.VisiblePosition = 6;
  436. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(130, 0);
  437. ultraGridColumn8.Header.VisiblePosition = 7;
  438. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  439. ultraGridColumn8.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  440. ultraGridBand1.Columns.AddRange(new object[] {
  441. ultraGridColumn1,
  442. ultraGridColumn2,
  443. ultraGridColumn3,
  444. ultraGridColumn4,
  445. ultraGridColumn5,
  446. ultraGridColumn6,
  447. ultraGridColumn7,
  448. ultraGridColumn8});
  449. ultraGridBand1.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
  450. ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
  451. ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
  452. ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
  453. ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
  454. ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
  455. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  456. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  457. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  458. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  459. appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
  460. appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
  461. appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  462. appearance2.BorderColor = System.Drawing.SystemColors.Window;
  463. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance2;
  464. appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
  465. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance4;
  466. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  467. appearance3.BackColor = System.Drawing.SystemColors.ControlLightLight;
  468. appearance3.BackColor2 = System.Drawing.SystemColors.Control;
  469. appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  470. appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
  471. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance3;
  472. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  473. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  474. appearance7.BackColor = System.Drawing.SystemColors.Window;
  475. appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
  476. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance7;
  477. appearance10.BackColor = System.Drawing.SystemColors.Highlight;
  478. appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
  479. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance10;
  480. this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
  481. this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  482. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  483. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  484. appearance12.BackColor = System.Drawing.SystemColors.Window;
  485. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance12;
  486. appearance8.BorderColor = System.Drawing.Color.Silver;
  487. appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  488. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance8;
  489. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  490. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  491. this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
  492. appearance6.BackColor = System.Drawing.SystemColors.Control;
  493. appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
  494. appearance6.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  495. appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  496. appearance6.BorderColor = System.Drawing.SystemColors.Window;
  497. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance6;
  498. appearance5.TextHAlignAsString = "Left";
  499. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance5;
  500. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  501. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  502. appearance11.BackColor = System.Drawing.SystemColors.Window;
  503. appearance11.BorderColor = System.Drawing.Color.Silver;
  504. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance11;
  505. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  506. appearance9.BackColor = System.Drawing.SystemColors.ControlLight;
  507. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance9;
  508. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  509. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  510. this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
  511. this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
  512. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  513. this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
  514. this.ultraGrid1.Name = "ultraGrid1";
  515. this.ultraGrid1.Size = new System.Drawing.Size(780, 136);
  516. this.ultraGrid1.TabIndex = 8;
  517. this.ultraGrid1.Text = "ultraGrid1";
  518. this.ultraGrid1.AfterRowInsert += new Infragistics.Win.UltraWinGrid.RowEventHandler(this.ultraGrid1_AfterRowInsert);
  519. this.ultraGrid1.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_ClickCellButton);
  520. //
  521. // dataSet1
  522. //
  523. this.dataSet1.DataSetName = "NewDataSet";
  524. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  525. this.dataTable1,
  526. this.dataTable2});
  527. //
  528. // dataTable1
  529. //
  530. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  531. this.dataColumn1,
  532. this.dataColumn2,
  533. this.dataColumn3,
  534. this.dataColumn4,
  535. this.dataColumn5,
  536. this.dataColumn6,
  537. this.dataColumn7,
  538. this.dataColumn21});
  539. this.dataTable1.TableName = "Table1";
  540. //
  541. // dataColumn1
  542. //
  543. this.dataColumn1.Caption = "步骤";
  544. this.dataColumn1.ColumnName = "STEP";
  545. //
  546. // dataColumn2
  547. //
  548. this.dataColumn2.Caption = "载荷";
  549. this.dataColumn2.ColumnName = "LOAD";
  550. //
  551. // dataColumn3
  552. //
  553. this.dataColumn3.Caption = "压力介质";
  554. this.dataColumn3.ColumnName = "PRESSURE_MEDIUM";
  555. //
  556. // dataColumn4
  557. //
  558. this.dataColumn4.Caption = "内压力";
  559. this.dataColumn4.ColumnName = "INTERNAL_PRESSURE";
  560. //
  561. // dataColumn5
  562. //
  563. this.dataColumn5.Caption = "狗腿度";
  564. this.dataColumn5.ColumnName = "DOGLEG_DEGREE";
  565. //
  566. // dataColumn6
  567. //
  568. this.dataColumn6.Caption = "保持时间";
  569. this.dataColumn6.ColumnName = "HOLD_TIME";
  570. //
  571. // dataColumn7
  572. //
  573. this.dataColumn7.Caption = "结果评定";
  574. this.dataColumn7.ColumnName = "TEST_RESULT";
  575. //
  576. // dataColumn21
  577. //
  578. this.dataColumn21.Caption = "删除";
  579. this.dataColumn21.ColumnName = "BTN_DELETE";
  580. //
  581. // dataTable2
  582. //
  583. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  584. this.dataColumn8,
  585. this.dataColumn9,
  586. this.dataColumn10,
  587. this.dataColumn11,
  588. this.dataColumn12,
  589. this.dataColumn13,
  590. this.dataColumn14,
  591. this.dataColumn15,
  592. this.dataColumn16,
  593. this.dataColumn17,
  594. this.dataColumn18,
  595. this.dataColumn19,
  596. this.dataColumn20,
  597. this.dataColumn22,
  598. this.dataColumn23});
  599. this.dataTable2.TableName = "Table2";
  600. //
  601. // dataColumn8
  602. //
  603. this.dataColumn8.Caption = "序号";
  604. this.dataColumn8.ColumnName = "STEP";
  605. //
  606. // dataColumn9
  607. //
  608. this.dataColumn9.Caption = "外螺纹端";
  609. this.dataColumn9.ColumnName = "PIN";
  610. //
  611. // dataColumn10
  612. //
  613. this.dataColumn10.Caption = "内螺纹端";
  614. this.dataColumn10.ColumnName = "BOX";
  615. //
  616. // dataColumn11
  617. //
  618. this.dataColumn11.Caption = "螺纹脂类型";
  619. this.dataColumn11.ColumnName = "COMPOUND_TYPE";
  620. //
  621. // dataColumn12
  622. //
  623. this.dataColumn12.Caption = "螺纹脂用量";
  624. this.dataColumn12.ColumnName = "COMPOUND_WEIGHT";
  625. //
  626. // dataColumn13
  627. //
  628. this.dataColumn13.Caption = "上扣要求";
  629. this.dataColumn13.ColumnName = "MAKEUP_TORQUE";
  630. //
  631. // dataColumn14
  632. //
  633. this.dataColumn14.Caption = "上扣扭矩";
  634. this.dataColumn14.ColumnName = "TOTAL_TORQUE";
  635. //
  636. // dataColumn15
  637. //
  638. this.dataColumn15.Caption = "卸扣扭矩";
  639. this.dataColumn15.ColumnName = "BREAKOUT_TORQUE";
  640. //
  641. // dataColumn16
  642. //
  643. this.dataColumn16.Caption = "螺纹检查";
  644. this.dataColumn16.ColumnName = "OBSERVED_THREAD_RESULT";
  645. //
  646. // dataColumn17
  647. //
  648. this.dataColumn17.Caption = "试验曲线1";
  649. this.dataColumn17.ColumnName = "TEST_CURVE1";
  650. //
  651. // dataColumn18
  652. //
  653. this.dataColumn18.Caption = "试验曲线2";
  654. this.dataColumn18.ColumnName = "TEST_CURVE2";
  655. //
  656. // dataColumn19
  657. //
  658. this.dataColumn19.Caption = "照片1";
  659. this.dataColumn19.ColumnName = "PHOTO1";
  660. //
  661. // dataColumn20
  662. //
  663. this.dataColumn20.Caption = "照片2";
  664. this.dataColumn20.ColumnName = "PHOTO2";
  665. //
  666. // dataColumn22
  667. //
  668. this.dataColumn22.Caption = "删除";
  669. this.dataColumn22.ColumnName = "BTN_DELETE";
  670. //
  671. // dataColumn23
  672. //
  673. this.dataColumn23.Caption = "台肩扭矩";
  674. this.dataColumn23.ColumnName = "SHOULDER_TORQUE";
  675. //
  676. // ultraPanel4
  677. //
  678. //
  679. // ultraPanel4.ClientArea
  680. //
  681. this.ultraPanel4.ClientArea.Controls.Add(this.ultraButton1);
  682. this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  683. this.ultraPanel4.Location = new System.Drawing.Point(0, 0);
  684. this.ultraPanel4.Name = "ultraPanel4";
  685. this.ultraPanel4.Size = new System.Drawing.Size(780, 172);
  686. this.ultraPanel4.TabIndex = 2;
  687. //
  688. // ultraButton1
  689. //
  690. this.ultraButton1.Location = new System.Drawing.Point(260, 6);
  691. this.ultraButton1.Name = "ultraButton1";
  692. this.ultraButton1.Size = new System.Drawing.Size(96, 28);
  693. this.ultraButton1.TabIndex = 86;
  694. this.ultraButton1.Text = "保 存";
  695. this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
  696. //
  697. // ultraPanel1
  698. //
  699. this.ultraPanel1.AutoScroll = true;
  700. //
  701. // ultraPanel1.ClientArea
  702. //
  703. this.ultraPanel1.ClientArea.Controls.Add(this.ultraTEST_RESULTS);
  704. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel19);
  705. this.ultraPanel1.ClientArea.Controls.Add(this.ultraTEST_ITEM);
  706. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH7);
  707. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH6);
  708. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH5);
  709. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel15);
  710. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel14);
  711. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel13);
  712. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel12);
  713. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH4);
  714. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH3);
  715. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH2);
  716. this.ultraPanel1.ClientArea.Controls.Add(this.ultraFILE_PATH1);
  717. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel11);
  718. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel10);
  719. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel9);
  720. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel8);
  721. this.ultraPanel1.ClientArea.Controls.Add(this.ultraSTEEL_GRADE_NO);
  722. this.ultraPanel1.ClientArea.Controls.Add(this.ultraSAMPLE_SIZE);
  723. this.ultraPanel1.ClientArea.Controls.Add(this.ultraTECHNICAL_STANDARD);
  724. this.ultraPanel1.ClientArea.Controls.Add(this.ultraSAMPLE_NAME);
  725. this.ultraPanel1.ClientArea.Controls.Add(this.ultraSAMPLE_NO);
  726. this.ultraPanel1.ClientArea.Controls.Add(this.ultraCHECK_NO);
  727. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel7);
  728. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel6);
  729. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel5);
  730. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel4);
  731. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel3);
  732. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel2);
  733. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
  734. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
  735. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  736. this.ultraPanel1.Name = "ultraPanel1";
  737. this.ultraPanel1.Size = new System.Drawing.Size(780, 412);
  738. this.ultraPanel1.TabIndex = 1;
  739. //
  740. // ultraTEST_RESULTS
  741. //
  742. this.ultraTEST_RESULTS.AutoSize = false;
  743. this.ultraTEST_RESULTS.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  744. this.ultraTEST_RESULTS.Location = new System.Drawing.Point(356, 378);
  745. this.ultraTEST_RESULTS.Name = "ultraTEST_RESULTS";
  746. this.ultraTEST_RESULTS.Size = new System.Drawing.Size(333, 28);
  747. this.ultraTEST_RESULTS.TabIndex = 47;
  748. //
  749. // ultraLabel19
  750. //
  751. appearance60.TextHAlignAsString = "Center";
  752. appearance60.TextVAlignAsString = "Middle";
  753. this.ultraLabel19.Appearance = appearance60;
  754. this.ultraLabel19.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  755. this.ultraLabel19.Location = new System.Drawing.Point(23, 378);
  756. this.ultraLabel19.Name = "ultraLabel19";
  757. this.ultraLabel19.Size = new System.Drawing.Size(333, 28);
  758. this.ultraLabel19.TabIndex = 46;
  759. this.ultraLabel19.Text = "结果评定";
  760. //
  761. // ultraTEST_ITEM
  762. //
  763. this.ultraTEST_ITEM.AutoSize = false;
  764. this.ultraTEST_ITEM.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  765. this.ultraTEST_ITEM.Location = new System.Drawing.Point(356, 351);
  766. this.ultraTEST_ITEM.Name = "ultraTEST_ITEM";
  767. this.ultraTEST_ITEM.Size = new System.Drawing.Size(333, 28);
  768. this.ultraTEST_ITEM.TabIndex = 45;
  769. //
  770. // ultraFILE_PATH7
  771. //
  772. this.ultraFILE_PATH7.AutoSize = false;
  773. this.ultraFILE_PATH7.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  774. editorButton3.Key = "select";
  775. editorButton3.Text = "查询";
  776. this.ultraFILE_PATH7.ButtonsLeft.Add(editorButton3);
  777. editorButton4.Key = "update";
  778. editorButton4.Text = "上传";
  779. this.ultraFILE_PATH7.ButtonsRight.Add(editorButton4);
  780. this.ultraFILE_PATH7.Location = new System.Drawing.Point(356, 322);
  781. this.ultraFILE_PATH7.Name = "ultraFILE_PATH7";
  782. this.ultraFILE_PATH7.Size = new System.Drawing.Size(333, 28);
  783. this.ultraFILE_PATH7.TabIndex = 44;
  784. this.ultraFILE_PATH7.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  785. //
  786. // ultraFILE_PATH6
  787. //
  788. this.ultraFILE_PATH6.AutoSize = false;
  789. this.ultraFILE_PATH6.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  790. editorButton5.Key = "select";
  791. editorButton5.Text = "查询";
  792. this.ultraFILE_PATH6.ButtonsLeft.Add(editorButton5);
  793. editorButton6.Key = "update";
  794. editorButton6.Text = "上传";
  795. this.ultraFILE_PATH6.ButtonsRight.Add(editorButton6);
  796. this.ultraFILE_PATH6.Location = new System.Drawing.Point(356, 294);
  797. this.ultraFILE_PATH6.Name = "ultraFILE_PATH6";
  798. this.ultraFILE_PATH6.Size = new System.Drawing.Size(333, 28);
  799. this.ultraFILE_PATH6.TabIndex = 43;
  800. this.ultraFILE_PATH6.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  801. //
  802. // ultraFILE_PATH5
  803. //
  804. this.ultraFILE_PATH5.AutoSize = false;
  805. this.ultraFILE_PATH5.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  806. editorButton7.Key = "select";
  807. editorButton7.Text = "查询";
  808. this.ultraFILE_PATH5.ButtonsLeft.Add(editorButton7);
  809. editorButton8.Key = "update";
  810. editorButton8.Text = "上传";
  811. this.ultraFILE_PATH5.ButtonsRight.Add(editorButton8);
  812. this.ultraFILE_PATH5.Location = new System.Drawing.Point(356, 267);
  813. this.ultraFILE_PATH5.Name = "ultraFILE_PATH5";
  814. this.ultraFILE_PATH5.Size = new System.Drawing.Size(333, 28);
  815. this.ultraFILE_PATH5.TabIndex = 42;
  816. this.ultraFILE_PATH5.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  817. //
  818. // ultraLabel15
  819. //
  820. appearance26.TextHAlignAsString = "Center";
  821. appearance26.TextVAlignAsString = "Middle";
  822. this.ultraLabel15.Appearance = appearance26;
  823. this.ultraLabel15.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  824. this.ultraLabel15.Location = new System.Drawing.Point(23, 351);
  825. this.ultraLabel15.Name = "ultraLabel15";
  826. this.ultraLabel15.Size = new System.Drawing.Size(333, 28);
  827. this.ultraLabel15.TabIndex = 41;
  828. this.ultraLabel15.Text = "试验项目";
  829. //
  830. // ultraLabel14
  831. //
  832. appearance17.TextHAlignAsString = "Center";
  833. appearance17.TextVAlignAsString = "Middle";
  834. this.ultraLabel14.Appearance = appearance17;
  835. this.ultraLabel14.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  836. this.ultraLabel14.Location = new System.Drawing.Point(23, 323);
  837. this.ultraLabel14.Name = "ultraLabel14";
  838. this.ultraLabel14.Size = new System.Drawing.Size(333, 28);
  839. this.ultraLabel14.TabIndex = 40;
  840. this.ultraLabel14.Text = "校准证书3";
  841. //
  842. // ultraLabel13
  843. //
  844. appearance18.TextHAlignAsString = "Center";
  845. appearance18.TextVAlignAsString = "Middle";
  846. this.ultraLabel13.Appearance = appearance18;
  847. this.ultraLabel13.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  848. this.ultraLabel13.Location = new System.Drawing.Point(23, 295);
  849. this.ultraLabel13.Name = "ultraLabel13";
  850. this.ultraLabel13.Size = new System.Drawing.Size(333, 28);
  851. this.ultraLabel13.TabIndex = 39;
  852. this.ultraLabel13.Text = "校准证书2";
  853. //
  854. // ultraLabel12
  855. //
  856. appearance19.TextHAlignAsString = "Center";
  857. appearance19.TextVAlignAsString = "Middle";
  858. this.ultraLabel12.Appearance = appearance19;
  859. this.ultraLabel12.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  860. this.ultraLabel12.Location = new System.Drawing.Point(23, 267);
  861. this.ultraLabel12.Name = "ultraLabel12";
  862. this.ultraLabel12.Size = new System.Drawing.Size(333, 28);
  863. this.ultraLabel12.TabIndex = 38;
  864. this.ultraLabel12.Text = "校准证书1";
  865. //
  866. // ultraFILE_PATH4
  867. //
  868. this.ultraFILE_PATH4.AutoSize = false;
  869. this.ultraFILE_PATH4.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  870. editorButton9.Key = "select";
  871. editorButton9.Text = "查询";
  872. this.ultraFILE_PATH4.ButtonsLeft.Add(editorButton9);
  873. editorButton10.Key = "update";
  874. editorButton10.Text = "上传";
  875. this.ultraFILE_PATH4.ButtonsRight.Add(editorButton10);
  876. this.ultraFILE_PATH4.Location = new System.Drawing.Point(356, 239);
  877. this.ultraFILE_PATH4.Name = "ultraFILE_PATH4";
  878. this.ultraFILE_PATH4.Size = new System.Drawing.Size(333, 28);
  879. this.ultraFILE_PATH4.TabIndex = 37;
  880. this.ultraFILE_PATH4.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  881. //
  882. // ultraFILE_PATH3
  883. //
  884. this.ultraFILE_PATH3.AutoSize = false;
  885. this.ultraFILE_PATH3.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  886. editorButton11.Key = "select";
  887. editorButton11.Text = "查询";
  888. this.ultraFILE_PATH3.ButtonsLeft.Add(editorButton11);
  889. editorButton12.Key = "update";
  890. editorButton12.Text = "上传";
  891. this.ultraFILE_PATH3.ButtonsRight.Add(editorButton12);
  892. this.ultraFILE_PATH3.Location = new System.Drawing.Point(356, 211);
  893. this.ultraFILE_PATH3.Name = "ultraFILE_PATH3";
  894. this.ultraFILE_PATH3.Size = new System.Drawing.Size(333, 28);
  895. this.ultraFILE_PATH3.TabIndex = 36;
  896. this.ultraFILE_PATH3.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  897. //
  898. // ultraFILE_PATH2
  899. //
  900. this.ultraFILE_PATH2.AutoSize = false;
  901. this.ultraFILE_PATH2.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  902. editorButton13.Key = "select";
  903. editorButton13.Text = "查询";
  904. this.ultraFILE_PATH2.ButtonsLeft.Add(editorButton13);
  905. editorButton14.Key = "update";
  906. editorButton14.Text = "上传";
  907. this.ultraFILE_PATH2.ButtonsRight.Add(editorButton14);
  908. this.ultraFILE_PATH2.Location = new System.Drawing.Point(356, 183);
  909. this.ultraFILE_PATH2.Name = "ultraFILE_PATH2";
  910. this.ultraFILE_PATH2.Size = new System.Drawing.Size(333, 28);
  911. this.ultraFILE_PATH2.TabIndex = 35;
  912. this.ultraFILE_PATH2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  913. //
  914. // ultraFILE_PATH1
  915. //
  916. this.ultraFILE_PATH1.AutoSize = false;
  917. this.ultraFILE_PATH1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  918. editorButton15.Key = "select";
  919. editorButton15.Text = "查询";
  920. this.ultraFILE_PATH1.ButtonsLeft.Add(editorButton15);
  921. editorButton16.Key = "update";
  922. editorButton16.Text = "上传";
  923. this.ultraFILE_PATH1.ButtonsRight.Add(editorButton16);
  924. this.ultraFILE_PATH1.Location = new System.Drawing.Point(356, 155);
  925. this.ultraFILE_PATH1.Name = "ultraFILE_PATH1";
  926. this.ultraFILE_PATH1.Size = new System.Drawing.Size(333, 28);
  927. this.ultraFILE_PATH1.TabIndex = 34;
  928. this.ultraFILE_PATH1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  929. //
  930. // ultraLabel11
  931. //
  932. appearance20.TextHAlignAsString = "Center";
  933. appearance20.TextVAlignAsString = "Middle";
  934. this.ultraLabel11.Appearance = appearance20;
  935. this.ultraLabel11.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  936. this.ultraLabel11.Location = new System.Drawing.Point(23, 239);
  937. this.ultraLabel11.Name = "ultraLabel11";
  938. this.ultraLabel11.Size = new System.Drawing.Size(333, 28);
  939. this.ultraLabel11.TabIndex = 33;
  940. this.ultraLabel11.Text = "照片2";
  941. //
  942. // ultraLabel10
  943. //
  944. appearance13.TextHAlignAsString = "Center";
  945. appearance13.TextVAlignAsString = "Middle";
  946. this.ultraLabel10.Appearance = appearance13;
  947. this.ultraLabel10.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  948. this.ultraLabel10.Location = new System.Drawing.Point(23, 211);
  949. this.ultraLabel10.Name = "ultraLabel10";
  950. this.ultraLabel10.Size = new System.Drawing.Size(333, 28);
  951. this.ultraLabel10.TabIndex = 32;
  952. this.ultraLabel10.Text = "照片1";
  953. //
  954. // ultraLabel9
  955. //
  956. appearance14.TextHAlignAsString = "Center";
  957. appearance14.TextVAlignAsString = "Middle";
  958. this.ultraLabel9.Appearance = appearance14;
  959. this.ultraLabel9.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  960. this.ultraLabel9.Location = new System.Drawing.Point(23, 183);
  961. this.ultraLabel9.Name = "ultraLabel9";
  962. this.ultraLabel9.Size = new System.Drawing.Size(333, 28);
  963. this.ultraLabel9.TabIndex = 31;
  964. this.ultraLabel9.Text = "试验曲线2";
  965. //
  966. // ultraLabel8
  967. //
  968. appearance15.TextHAlignAsString = "Center";
  969. appearance15.TextVAlignAsString = "Middle";
  970. this.ultraLabel8.Appearance = appearance15;
  971. this.ultraLabel8.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  972. this.ultraLabel8.Location = new System.Drawing.Point(23, 155);
  973. this.ultraLabel8.Name = "ultraLabel8";
  974. this.ultraLabel8.Size = new System.Drawing.Size(333, 28);
  975. this.ultraLabel8.TabIndex = 30;
  976. this.ultraLabel8.Text = "试验曲线1";
  977. //
  978. // ultraSTEEL_GRADE_NO
  979. //
  980. this.ultraSTEEL_GRADE_NO.AutoSize = false;
  981. this.ultraSTEEL_GRADE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  982. this.ultraSTEEL_GRADE_NO.Enabled = false;
  983. this.ultraSTEEL_GRADE_NO.Location = new System.Drawing.Point(456, 71);
  984. this.ultraSTEEL_GRADE_NO.Name = "ultraSTEEL_GRADE_NO";
  985. this.ultraSTEEL_GRADE_NO.Size = new System.Drawing.Size(233, 28);
  986. this.ultraSTEEL_GRADE_NO.TabIndex = 29;
  987. //
  988. // ultraSAMPLE_SIZE
  989. //
  990. this.ultraSAMPLE_SIZE.AutoSize = false;
  991. this.ultraSAMPLE_SIZE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  992. this.ultraSAMPLE_SIZE.Enabled = false;
  993. this.ultraSAMPLE_SIZE.Location = new System.Drawing.Point(456, 99);
  994. this.ultraSAMPLE_SIZE.Name = "ultraSAMPLE_SIZE";
  995. this.ultraSAMPLE_SIZE.Size = new System.Drawing.Size(233, 28);
  996. this.ultraSAMPLE_SIZE.TabIndex = 28;
  997. //
  998. // ultraTECHNICAL_STANDARD
  999. //
  1000. this.ultraTECHNICAL_STANDARD.AutoSize = false;
  1001. this.ultraTECHNICAL_STANDARD.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1002. this.ultraTECHNICAL_STANDARD.Location = new System.Drawing.Point(356, 127);
  1003. this.ultraTECHNICAL_STANDARD.Name = "ultraTECHNICAL_STANDARD";
  1004. this.ultraTECHNICAL_STANDARD.Size = new System.Drawing.Size(333, 28);
  1005. this.ultraTECHNICAL_STANDARD.TabIndex = 27;
  1006. //
  1007. // ultraSAMPLE_NAME
  1008. //
  1009. this.ultraSAMPLE_NAME.AutoSize = false;
  1010. this.ultraSAMPLE_NAME.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1011. this.ultraSAMPLE_NAME.Enabled = false;
  1012. this.ultraSAMPLE_NAME.Location = new System.Drawing.Point(123, 71);
  1013. this.ultraSAMPLE_NAME.Name = "ultraSAMPLE_NAME";
  1014. this.ultraSAMPLE_NAME.Size = new System.Drawing.Size(233, 28);
  1015. this.ultraSAMPLE_NAME.TabIndex = 25;
  1016. //
  1017. // ultraSAMPLE_NO
  1018. //
  1019. this.ultraSAMPLE_NO.AutoSize = false;
  1020. this.ultraSAMPLE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1021. this.ultraSAMPLE_NO.Enabled = false;
  1022. this.ultraSAMPLE_NO.Location = new System.Drawing.Point(123, 99);
  1023. this.ultraSAMPLE_NO.Name = "ultraSAMPLE_NO";
  1024. this.ultraSAMPLE_NO.Size = new System.Drawing.Size(233, 28);
  1025. this.ultraSAMPLE_NO.TabIndex = 24;
  1026. //
  1027. // ultraCHECK_NO
  1028. //
  1029. this.ultraCHECK_NO.AutoSize = false;
  1030. this.ultraCHECK_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1031. this.ultraCHECK_NO.Enabled = false;
  1032. this.ultraCHECK_NO.Location = new System.Drawing.Point(123, 43);
  1033. this.ultraCHECK_NO.Name = "ultraCHECK_NO";
  1034. this.ultraCHECK_NO.Size = new System.Drawing.Size(233, 28);
  1035. this.ultraCHECK_NO.TabIndex = 21;
  1036. //
  1037. // ultraLabel7
  1038. //
  1039. appearance16.TextHAlignAsString = "Center";
  1040. appearance16.TextVAlignAsString = "Middle";
  1041. this.ultraLabel7.Appearance = appearance16;
  1042. this.ultraLabel7.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1043. this.ultraLabel7.Location = new System.Drawing.Point(23, 127);
  1044. this.ultraLabel7.Name = "ultraLabel7";
  1045. this.ultraLabel7.Size = new System.Drawing.Size(333, 28);
  1046. this.ultraLabel7.TabIndex = 6;
  1047. this.ultraLabel7.Text = "依据标准";
  1048. //
  1049. // ultraLabel6
  1050. //
  1051. appearance76.TextHAlignAsString = "Center";
  1052. appearance76.TextVAlignAsString = "Middle";
  1053. this.ultraLabel6.Appearance = appearance76;
  1054. this.ultraLabel6.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1055. this.ultraLabel6.Location = new System.Drawing.Point(356, 99);
  1056. this.ultraLabel6.Name = "ultraLabel6";
  1057. this.ultraLabel6.Size = new System.Drawing.Size(100, 28);
  1058. this.ultraLabel6.TabIndex = 5;
  1059. this.ultraLabel6.Text = "规格";
  1060. //
  1061. // ultraLabel5
  1062. //
  1063. appearance78.TextHAlignAsString = "Center";
  1064. appearance78.TextVAlignAsString = "Middle";
  1065. this.ultraLabel5.Appearance = appearance78;
  1066. this.ultraLabel5.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1067. this.ultraLabel5.Location = new System.Drawing.Point(23, 99);
  1068. this.ultraLabel5.Name = "ultraLabel5";
  1069. this.ultraLabel5.Size = new System.Drawing.Size(100, 28);
  1070. this.ultraLabel5.TabIndex = 4;
  1071. this.ultraLabel5.Text = "试样编号";
  1072. //
  1073. // ultraLabel4
  1074. //
  1075. appearance81.TextHAlignAsString = "Center";
  1076. appearance81.TextVAlignAsString = "Middle";
  1077. this.ultraLabel4.Appearance = appearance81;
  1078. this.ultraLabel4.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1079. this.ultraLabel4.Location = new System.Drawing.Point(356, 71);
  1080. this.ultraLabel4.Name = "ultraLabel4";
  1081. this.ultraLabel4.Size = new System.Drawing.Size(100, 28);
  1082. this.ultraLabel4.TabIndex = 3;
  1083. this.ultraLabel4.Text = "钢级";
  1084. //
  1085. // ultraLabel3
  1086. //
  1087. appearance82.TextHAlignAsString = "Center";
  1088. appearance82.TextVAlignAsString = "Middle";
  1089. this.ultraLabel3.Appearance = appearance82;
  1090. this.ultraLabel3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1091. this.ultraLabel3.Location = new System.Drawing.Point(161, 14);
  1092. this.ultraLabel3.Name = "ultraLabel3";
  1093. this.ultraLabel3.Size = new System.Drawing.Size(412, 28);
  1094. this.ultraLabel3.TabIndex = 2;
  1095. this.ultraLabel3.Text = "联合力、密封性能(含静水压)试验报告";
  1096. //
  1097. // ultraLabel2
  1098. //
  1099. appearance83.TextHAlignAsString = "Center";
  1100. appearance83.TextVAlignAsString = "Middle";
  1101. this.ultraLabel2.Appearance = appearance83;
  1102. this.ultraLabel2.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1103. this.ultraLabel2.Location = new System.Drawing.Point(23, 71);
  1104. this.ultraLabel2.Name = "ultraLabel2";
  1105. this.ultraLabel2.Size = new System.Drawing.Size(100, 28);
  1106. this.ultraLabel2.TabIndex = 1;
  1107. this.ultraLabel2.Text = "试样名称";
  1108. //
  1109. // ultraLabel1
  1110. //
  1111. appearance84.TextHAlignAsString = "Center";
  1112. appearance84.TextVAlignAsString = "Middle";
  1113. this.ultraLabel1.Appearance = appearance84;
  1114. this.ultraLabel1.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1115. this.ultraLabel1.Location = new System.Drawing.Point(23, 43);
  1116. this.ultraLabel1.Name = "ultraLabel1";
  1117. this.ultraLabel1.Size = new System.Drawing.Size(100, 28);
  1118. this.ultraLabel1.TabIndex = 0;
  1119. this.ultraLabel1.Text = "检验编号";
  1120. //
  1121. // ultraTabPageControl2
  1122. //
  1123. this.ultraTabPageControl2.Controls.Add(this.ultraPanel2);
  1124. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  1125. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1126. this.ultraTabPageControl2.Size = new System.Drawing.Size(780, 724);
  1127. //
  1128. // ultraPanel2
  1129. //
  1130. this.ultraPanel2.AutoScroll = true;
  1131. //
  1132. // ultraPanel2.ClientArea
  1133. //
  1134. this.ultraPanel2.ClientArea.Controls.Add(this.lsTEST_ITEM);
  1135. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel17);
  1136. this.ultraPanel2.ClientArea.Controls.Add(this.lsFILE_PATH3);
  1137. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel16);
  1138. this.ultraPanel2.ClientArea.Controls.Add(this.ultraButton2);
  1139. this.ultraPanel2.ClientArea.Controls.Add(this.lsFILE_PATH2);
  1140. this.ultraPanel2.ClientArea.Controls.Add(this.lsFILE_PATH1);
  1141. this.ultraPanel2.ClientArea.Controls.Add(this.lsTEST_RESULTS);
  1142. this.ultraPanel2.ClientArea.Controls.Add(this.lsNOTE);
  1143. this.ultraPanel2.ClientArea.Controls.Add(this.lsSTEEL_GRADE_NO);
  1144. this.ultraPanel2.ClientArea.Controls.Add(this.lsSAMPLE_SIZE);
  1145. this.ultraPanel2.ClientArea.Controls.Add(this.lsTECHNICAL_STANDARD);
  1146. this.ultraPanel2.ClientArea.Controls.Add(this.lsSAMPLE_NAME);
  1147. this.ultraPanel2.ClientArea.Controls.Add(this.lsSAMPLE_NO);
  1148. this.ultraPanel2.ClientArea.Controls.Add(this.lsCHECK_NO);
  1149. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel78);
  1150. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel86);
  1151. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel87);
  1152. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel88);
  1153. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel90);
  1154. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel91);
  1155. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel92);
  1156. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel93);
  1157. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel94);
  1158. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel95);
  1159. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel96);
  1160. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel32);
  1161. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel43);
  1162. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel44);
  1163. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel45);
  1164. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel46);
  1165. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel47);
  1166. this.ultraPanel2.ClientArea.Controls.Add(this.ultraLabel48);
  1167. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1168. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  1169. this.ultraPanel2.Name = "ultraPanel2";
  1170. this.ultraPanel2.Size = new System.Drawing.Size(780, 724);
  1171. this.ultraPanel2.TabIndex = 85;
  1172. //
  1173. // lsTEST_ITEM
  1174. //
  1175. this.lsTEST_ITEM.AutoSize = false;
  1176. this.lsTEST_ITEM.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1177. this.lsTEST_ITEM.Location = new System.Drawing.Point(356, 323);
  1178. this.lsTEST_ITEM.Name = "lsTEST_ITEM";
  1179. this.lsTEST_ITEM.Size = new System.Drawing.Size(333, 28);
  1180. this.lsTEST_ITEM.TabIndex = 89;
  1181. //
  1182. // ultraLabel17
  1183. //
  1184. appearance32.TextHAlignAsString = "Center";
  1185. appearance32.TextVAlignAsString = "Middle";
  1186. this.ultraLabel17.Appearance = appearance32;
  1187. this.ultraLabel17.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1188. this.ultraLabel17.Location = new System.Drawing.Point(23, 323);
  1189. this.ultraLabel17.Name = "ultraLabel17";
  1190. this.ultraLabel17.Size = new System.Drawing.Size(333, 28);
  1191. this.ultraLabel17.TabIndex = 88;
  1192. this.ultraLabel17.Text = "试验项目";
  1193. //
  1194. // lsFILE_PATH3
  1195. //
  1196. this.lsFILE_PATH3.AutoSize = false;
  1197. this.lsFILE_PATH3.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1198. editorButton17.Key = "select";
  1199. editorButton17.Text = "查询";
  1200. this.lsFILE_PATH3.ButtonsLeft.Add(editorButton17);
  1201. editorButton18.Key = "update";
  1202. editorButton18.Text = "上传";
  1203. this.lsFILE_PATH3.ButtonsRight.Add(editorButton18);
  1204. this.lsFILE_PATH3.Location = new System.Drawing.Point(356, 295);
  1205. this.lsFILE_PATH3.Name = "lsFILE_PATH3";
  1206. this.lsFILE_PATH3.Size = new System.Drawing.Size(333, 28);
  1207. this.lsFILE_PATH3.TabIndex = 87;
  1208. this.lsFILE_PATH3.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  1209. //
  1210. // ultraLabel16
  1211. //
  1212. appearance22.TextHAlignAsString = "Center";
  1213. appearance22.TextVAlignAsString = "Middle";
  1214. this.ultraLabel16.Appearance = appearance22;
  1215. this.ultraLabel16.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1216. this.ultraLabel16.Location = new System.Drawing.Point(23, 295);
  1217. this.ultraLabel16.Name = "ultraLabel16";
  1218. this.ultraLabel16.Size = new System.Drawing.Size(333, 28);
  1219. this.ultraLabel16.TabIndex = 86;
  1220. this.ultraLabel16.Text = "校准证书";
  1221. //
  1222. // ultraButton2
  1223. //
  1224. this.ultraButton2.Location = new System.Drawing.Point(298, 367);
  1225. this.ultraButton2.Name = "ultraButton2";
  1226. this.ultraButton2.Size = new System.Drawing.Size(100, 28);
  1227. this.ultraButton2.TabIndex = 85;
  1228. this.ultraButton2.Text = "保 存";
  1229. this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
  1230. //
  1231. // lsFILE_PATH2
  1232. //
  1233. this.lsFILE_PATH2.AutoSize = false;
  1234. this.lsFILE_PATH2.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1235. editorButton19.Key = "select";
  1236. editorButton19.Text = "查询";
  1237. this.lsFILE_PATH2.ButtonsLeft.Add(editorButton19);
  1238. editorButton20.Key = "update";
  1239. editorButton20.Text = "上传";
  1240. this.lsFILE_PATH2.ButtonsRight.Add(editorButton20);
  1241. this.lsFILE_PATH2.Location = new System.Drawing.Point(356, 267);
  1242. this.lsFILE_PATH2.Name = "lsFILE_PATH2";
  1243. this.lsFILE_PATH2.Size = new System.Drawing.Size(333, 28);
  1244. this.lsFILE_PATH2.TabIndex = 37;
  1245. this.lsFILE_PATH2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  1246. //
  1247. // lsFILE_PATH1
  1248. //
  1249. this.lsFILE_PATH1.AutoSize = false;
  1250. this.lsFILE_PATH1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1251. editorButton21.Key = "select";
  1252. editorButton21.Text = "查询";
  1253. this.lsFILE_PATH1.ButtonsLeft.Add(editorButton21);
  1254. editorButton22.Key = "update";
  1255. editorButton22.Text = "上传";
  1256. this.lsFILE_PATH1.ButtonsRight.Add(editorButton22);
  1257. this.lsFILE_PATH1.Location = new System.Drawing.Point(356, 239);
  1258. this.lsFILE_PATH1.Name = "lsFILE_PATH1";
  1259. this.lsFILE_PATH1.Size = new System.Drawing.Size(333, 28);
  1260. this.lsFILE_PATH1.TabIndex = 35;
  1261. this.lsFILE_PATH1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  1262. //
  1263. // lsTEST_RESULTS
  1264. //
  1265. this.lsTEST_RESULTS.AutoSize = false;
  1266. this.lsTEST_RESULTS.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1267. this.lsTEST_RESULTS.Location = new System.Drawing.Point(356, 183);
  1268. this.lsTEST_RESULTS.Name = "lsTEST_RESULTS";
  1269. this.lsTEST_RESULTS.Size = new System.Drawing.Size(333, 57);
  1270. this.lsTEST_RESULTS.TabIndex = 31;
  1271. //
  1272. // lsNOTE
  1273. //
  1274. this.lsNOTE.AutoSize = false;
  1275. this.lsNOTE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1276. this.lsNOTE.Location = new System.Drawing.Point(356, 155);
  1277. this.lsNOTE.Name = "lsNOTE";
  1278. this.lsNOTE.Size = new System.Drawing.Size(333, 28);
  1279. this.lsNOTE.TabIndex = 30;
  1280. //
  1281. // lsSTEEL_GRADE_NO
  1282. //
  1283. this.lsSTEEL_GRADE_NO.AutoSize = false;
  1284. this.lsSTEEL_GRADE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1285. this.lsSTEEL_GRADE_NO.Enabled = false;
  1286. this.lsSTEEL_GRADE_NO.Location = new System.Drawing.Point(456, 71);
  1287. this.lsSTEEL_GRADE_NO.Name = "lsSTEEL_GRADE_NO";
  1288. this.lsSTEEL_GRADE_NO.Size = new System.Drawing.Size(233, 28);
  1289. this.lsSTEEL_GRADE_NO.TabIndex = 29;
  1290. //
  1291. // lsSAMPLE_SIZE
  1292. //
  1293. this.lsSAMPLE_SIZE.AutoSize = false;
  1294. this.lsSAMPLE_SIZE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1295. this.lsSAMPLE_SIZE.Enabled = false;
  1296. this.lsSAMPLE_SIZE.Location = new System.Drawing.Point(456, 99);
  1297. this.lsSAMPLE_SIZE.Name = "lsSAMPLE_SIZE";
  1298. this.lsSAMPLE_SIZE.Size = new System.Drawing.Size(233, 28);
  1299. this.lsSAMPLE_SIZE.TabIndex = 28;
  1300. //
  1301. // lsTECHNICAL_STANDARD
  1302. //
  1303. this.lsTECHNICAL_STANDARD.AutoSize = false;
  1304. this.lsTECHNICAL_STANDARD.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1305. this.lsTECHNICAL_STANDARD.Location = new System.Drawing.Point(356, 127);
  1306. this.lsTECHNICAL_STANDARD.Name = "lsTECHNICAL_STANDARD";
  1307. this.lsTECHNICAL_STANDARD.Size = new System.Drawing.Size(333, 28);
  1308. this.lsTECHNICAL_STANDARD.TabIndex = 27;
  1309. //
  1310. // lsSAMPLE_NAME
  1311. //
  1312. this.lsSAMPLE_NAME.AutoSize = false;
  1313. this.lsSAMPLE_NAME.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1314. this.lsSAMPLE_NAME.Enabled = false;
  1315. this.lsSAMPLE_NAME.Location = new System.Drawing.Point(123, 71);
  1316. this.lsSAMPLE_NAME.Name = "lsSAMPLE_NAME";
  1317. this.lsSAMPLE_NAME.Size = new System.Drawing.Size(233, 28);
  1318. this.lsSAMPLE_NAME.TabIndex = 25;
  1319. //
  1320. // lsSAMPLE_NO
  1321. //
  1322. this.lsSAMPLE_NO.AutoSize = false;
  1323. this.lsSAMPLE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1324. this.lsSAMPLE_NO.Enabled = false;
  1325. this.lsSAMPLE_NO.Location = new System.Drawing.Point(123, 99);
  1326. this.lsSAMPLE_NO.Name = "lsSAMPLE_NO";
  1327. this.lsSAMPLE_NO.Size = new System.Drawing.Size(233, 28);
  1328. this.lsSAMPLE_NO.TabIndex = 24;
  1329. //
  1330. // lsCHECK_NO
  1331. //
  1332. this.lsCHECK_NO.AutoSize = false;
  1333. this.lsCHECK_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1334. this.lsCHECK_NO.Enabled = false;
  1335. this.lsCHECK_NO.Location = new System.Drawing.Point(123, 43);
  1336. this.lsCHECK_NO.Name = "lsCHECK_NO";
  1337. this.lsCHECK_NO.Size = new System.Drawing.Size(233, 28);
  1338. this.lsCHECK_NO.TabIndex = 21;
  1339. //
  1340. // ultraLabel78
  1341. //
  1342. appearance21.TextHAlignAsString = "Center";
  1343. appearance21.TextVAlignAsString = "Middle";
  1344. this.ultraLabel78.Appearance = appearance21;
  1345. this.ultraLabel78.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1346. this.ultraLabel78.Location = new System.Drawing.Point(23, 267);
  1347. this.ultraLabel78.Name = "ultraLabel78";
  1348. this.ultraLabel78.Size = new System.Drawing.Size(333, 28);
  1349. this.ultraLabel78.TabIndex = 18;
  1350. this.ultraLabel78.Text = "照片";
  1351. //
  1352. // ultraLabel86
  1353. //
  1354. appearance30.TextHAlignAsString = "Center";
  1355. appearance30.TextVAlignAsString = "Middle";
  1356. this.ultraLabel86.Appearance = appearance30;
  1357. this.ultraLabel86.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1358. this.ultraLabel86.Location = new System.Drawing.Point(23, 239);
  1359. this.ultraLabel86.Name = "ultraLabel86";
  1360. this.ultraLabel86.Size = new System.Drawing.Size(333, 28);
  1361. this.ultraLabel86.TabIndex = 10;
  1362. this.ultraLabel86.Text = "试验曲线";
  1363. //
  1364. // ultraLabel87
  1365. //
  1366. appearance31.TextHAlignAsString = "Center";
  1367. appearance31.TextVAlignAsString = "Middle";
  1368. this.ultraLabel87.Appearance = appearance31;
  1369. this.ultraLabel87.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1370. this.ultraLabel87.Location = new System.Drawing.Point(23, 183);
  1371. this.ultraLabel87.Name = "ultraLabel87";
  1372. this.ultraLabel87.Size = new System.Drawing.Size(333, 57);
  1373. this.ultraLabel87.TabIndex = 9;
  1374. this.ultraLabel87.Text = "结果评定";
  1375. //
  1376. // ultraLabel88
  1377. //
  1378. appearance23.TextHAlignAsString = "Center";
  1379. appearance23.TextVAlignAsString = "Middle";
  1380. this.ultraLabel88.Appearance = appearance23;
  1381. this.ultraLabel88.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1382. this.ultraLabel88.Location = new System.Drawing.Point(23, 155);
  1383. this.ultraLabel88.Name = "ultraLabel88";
  1384. this.ultraLabel88.Size = new System.Drawing.Size(333, 28);
  1385. this.ultraLabel88.TabIndex = 8;
  1386. this.ultraLabel88.Text = "备注";
  1387. //
  1388. // ultraLabel90
  1389. //
  1390. appearance34.TextHAlignAsString = "Center";
  1391. appearance34.TextVAlignAsString = "Middle";
  1392. this.ultraLabel90.Appearance = appearance34;
  1393. this.ultraLabel90.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1394. this.ultraLabel90.Location = new System.Drawing.Point(23, 127);
  1395. this.ultraLabel90.Name = "ultraLabel90";
  1396. this.ultraLabel90.Size = new System.Drawing.Size(333, 28);
  1397. this.ultraLabel90.TabIndex = 6;
  1398. this.ultraLabel90.Text = "依据标准";
  1399. //
  1400. // ultraLabel91
  1401. //
  1402. appearance35.TextHAlignAsString = "Center";
  1403. appearance35.TextVAlignAsString = "Middle";
  1404. this.ultraLabel91.Appearance = appearance35;
  1405. this.ultraLabel91.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1406. this.ultraLabel91.Location = new System.Drawing.Point(356, 99);
  1407. this.ultraLabel91.Name = "ultraLabel91";
  1408. this.ultraLabel91.Size = new System.Drawing.Size(100, 28);
  1409. this.ultraLabel91.TabIndex = 5;
  1410. this.ultraLabel91.Text = "规格";
  1411. //
  1412. // ultraLabel92
  1413. //
  1414. appearance36.TextHAlignAsString = "Center";
  1415. appearance36.TextVAlignAsString = "Middle";
  1416. this.ultraLabel92.Appearance = appearance36;
  1417. this.ultraLabel92.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1418. this.ultraLabel92.Location = new System.Drawing.Point(23, 99);
  1419. this.ultraLabel92.Name = "ultraLabel92";
  1420. this.ultraLabel92.Size = new System.Drawing.Size(100, 28);
  1421. this.ultraLabel92.TabIndex = 4;
  1422. this.ultraLabel92.Text = "试样编号";
  1423. //
  1424. // ultraLabel93
  1425. //
  1426. appearance37.TextHAlignAsString = "Center";
  1427. appearance37.TextVAlignAsString = "Middle";
  1428. this.ultraLabel93.Appearance = appearance37;
  1429. this.ultraLabel93.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1430. this.ultraLabel93.Location = new System.Drawing.Point(356, 71);
  1431. this.ultraLabel93.Name = "ultraLabel93";
  1432. this.ultraLabel93.Size = new System.Drawing.Size(100, 28);
  1433. this.ultraLabel93.TabIndex = 3;
  1434. this.ultraLabel93.Text = "钢级";
  1435. //
  1436. // ultraLabel94
  1437. //
  1438. appearance38.TextHAlignAsString = "Center";
  1439. appearance38.TextVAlignAsString = "Middle";
  1440. this.ultraLabel94.Appearance = appearance38;
  1441. this.ultraLabel94.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1442. this.ultraLabel94.Location = new System.Drawing.Point(164, 14);
  1443. this.ultraLabel94.Name = "ultraLabel94";
  1444. this.ultraLabel94.Size = new System.Drawing.Size(435, 28);
  1445. this.ultraLabel94.TabIndex = 2;
  1446. this.ultraLabel94.Text = "压溃、爆破、拉力试验报告";
  1447. //
  1448. // ultraLabel95
  1449. //
  1450. appearance39.TextHAlignAsString = "Center";
  1451. appearance39.TextVAlignAsString = "Middle";
  1452. this.ultraLabel95.Appearance = appearance39;
  1453. this.ultraLabel95.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1454. this.ultraLabel95.Location = new System.Drawing.Point(23, 71);
  1455. this.ultraLabel95.Name = "ultraLabel95";
  1456. this.ultraLabel95.Size = new System.Drawing.Size(100, 28);
  1457. this.ultraLabel95.TabIndex = 1;
  1458. this.ultraLabel95.Text = "试样名称";
  1459. //
  1460. // ultraLabel96
  1461. //
  1462. appearance40.TextHAlignAsString = "Center";
  1463. appearance40.TextVAlignAsString = "Middle";
  1464. this.ultraLabel96.Appearance = appearance40;
  1465. this.ultraLabel96.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1466. this.ultraLabel96.Location = new System.Drawing.Point(23, 43);
  1467. this.ultraLabel96.Name = "ultraLabel96";
  1468. this.ultraLabel96.Size = new System.Drawing.Size(100, 28);
  1469. this.ultraLabel96.TabIndex = 0;
  1470. this.ultraLabel96.Text = "检验编号";
  1471. //
  1472. // ultraLabel32
  1473. //
  1474. appearance80.TextHAlignAsString = "Center";
  1475. appearance80.TextVAlignAsString = "Middle";
  1476. this.ultraLabel32.Appearance = appearance80;
  1477. this.ultraLabel32.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1478. this.ultraLabel32.Location = new System.Drawing.Point(23, 267);
  1479. this.ultraLabel32.Name = "ultraLabel32";
  1480. this.ultraLabel32.Size = new System.Drawing.Size(160, 28);
  1481. this.ultraLabel32.TabIndex = 16;
  1482. this.ultraLabel32.Text = "试样尺寸";
  1483. //
  1484. // ultraLabel43
  1485. //
  1486. appearance91.TextHAlignAsString = "Center";
  1487. appearance91.TextVAlignAsString = "Middle";
  1488. this.ultraLabel43.Appearance = appearance91;
  1489. this.ultraLabel43.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1490. this.ultraLabel43.Location = new System.Drawing.Point(356, 99);
  1491. this.ultraLabel43.Name = "ultraLabel43";
  1492. this.ultraLabel43.Size = new System.Drawing.Size(100, 28);
  1493. this.ultraLabel43.TabIndex = 5;
  1494. this.ultraLabel43.Text = "规格";
  1495. //
  1496. // ultraLabel44
  1497. //
  1498. appearance92.TextHAlignAsString = "Center";
  1499. appearance92.TextVAlignAsString = "Middle";
  1500. this.ultraLabel44.Appearance = appearance92;
  1501. this.ultraLabel44.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1502. this.ultraLabel44.Location = new System.Drawing.Point(23, 99);
  1503. this.ultraLabel44.Name = "ultraLabel44";
  1504. this.ultraLabel44.Size = new System.Drawing.Size(100, 28);
  1505. this.ultraLabel44.TabIndex = 4;
  1506. this.ultraLabel44.Text = "试样编号";
  1507. //
  1508. // ultraLabel45
  1509. //
  1510. appearance93.TextHAlignAsString = "Center";
  1511. appearance93.TextVAlignAsString = "Middle";
  1512. this.ultraLabel45.Appearance = appearance93;
  1513. this.ultraLabel45.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1514. this.ultraLabel45.Location = new System.Drawing.Point(356, 71);
  1515. this.ultraLabel45.Name = "ultraLabel45";
  1516. this.ultraLabel45.Size = new System.Drawing.Size(100, 28);
  1517. this.ultraLabel45.TabIndex = 3;
  1518. this.ultraLabel45.Text = "钢级";
  1519. //
  1520. // ultraLabel46
  1521. //
  1522. appearance94.TextHAlignAsString = "Center";
  1523. appearance94.TextVAlignAsString = "Middle";
  1524. this.ultraLabel46.Appearance = appearance94;
  1525. this.ultraLabel46.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1526. this.ultraLabel46.Location = new System.Drawing.Point(279, 14);
  1527. this.ultraLabel46.Name = "ultraLabel46";
  1528. this.ultraLabel46.Size = new System.Drawing.Size(188, 28);
  1529. this.ultraLabel46.TabIndex = 2;
  1530. this.ultraLabel46.Text = "点蚀试验报告";
  1531. //
  1532. // ultraLabel47
  1533. //
  1534. appearance95.TextHAlignAsString = "Center";
  1535. appearance95.TextVAlignAsString = "Middle";
  1536. this.ultraLabel47.Appearance = appearance95;
  1537. this.ultraLabel47.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1538. this.ultraLabel47.Location = new System.Drawing.Point(23, 71);
  1539. this.ultraLabel47.Name = "ultraLabel47";
  1540. this.ultraLabel47.Size = new System.Drawing.Size(100, 28);
  1541. this.ultraLabel47.TabIndex = 1;
  1542. this.ultraLabel47.Text = "试样名称";
  1543. //
  1544. // ultraLabel48
  1545. //
  1546. appearance96.TextHAlignAsString = "Center";
  1547. appearance96.TextVAlignAsString = "Middle";
  1548. this.ultraLabel48.Appearance = appearance96;
  1549. this.ultraLabel48.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1550. this.ultraLabel48.Location = new System.Drawing.Point(23, 43);
  1551. this.ultraLabel48.Name = "ultraLabel48";
  1552. this.ultraLabel48.Size = new System.Drawing.Size(100, 28);
  1553. this.ultraLabel48.TabIndex = 0;
  1554. this.ultraLabel48.Text = "检验编号";
  1555. //
  1556. // ultraTabPageControl3
  1557. //
  1558. this.ultraTabPageControl3.Controls.Add(this.panel2);
  1559. this.ultraTabPageControl3.Controls.Add(this.ultraPanel3);
  1560. this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 23);
  1561. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1562. this.ultraTabPageControl3.Size = new System.Drawing.Size(780, 724);
  1563. //
  1564. // panel2
  1565. //
  1566. this.panel2.Controls.Add(this.splitContainer2);
  1567. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1568. this.panel2.Location = new System.Drawing.Point(0, 238);
  1569. this.panel2.Name = "panel2";
  1570. this.panel2.Size = new System.Drawing.Size(780, 486);
  1571. this.panel2.TabIndex = 98;
  1572. //
  1573. // splitContainer2
  1574. //
  1575. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  1576. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  1577. this.splitContainer2.Name = "splitContainer2";
  1578. this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
  1579. //
  1580. // splitContainer2.Panel1
  1581. //
  1582. this.splitContainer2.Panel1.Controls.Add(this.ultraPanel6);
  1583. //
  1584. // splitContainer2.Panel2
  1585. //
  1586. this.splitContainer2.Panel2.Controls.Add(this.ultraPanel7);
  1587. this.splitContainer2.Size = new System.Drawing.Size(780, 486);
  1588. this.splitContainer2.SplitterDistance = 219;
  1589. this.splitContainer2.TabIndex = 0;
  1590. //
  1591. // ultraPanel6
  1592. //
  1593. //
  1594. // ultraPanel6.ClientArea
  1595. //
  1596. this.ultraPanel6.ClientArea.Controls.Add(this.ultraGrid2);
  1597. this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
  1598. this.ultraPanel6.Location = new System.Drawing.Point(0, 0);
  1599. this.ultraPanel6.Name = "ultraPanel6";
  1600. this.ultraPanel6.Size = new System.Drawing.Size(780, 219);
  1601. this.ultraPanel6.TabIndex = 1;
  1602. //
  1603. // ultraGrid2
  1604. //
  1605. this.ultraGrid2.DataMember = "Table2";
  1606. this.ultraGrid2.DataSource = this.dataSet1;
  1607. appearance33.BackColor = System.Drawing.SystemColors.Window;
  1608. appearance33.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1609. this.ultraGrid2.DisplayLayout.Appearance = appearance33;
  1610. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1611. ultraGridColumn9.Header.VisiblePosition = 0;
  1612. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 0;
  1613. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1614. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
  1615. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  1616. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  1617. ultraGridColumn10.Header.VisiblePosition = 1;
  1618. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 1;
  1619. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1620. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1621. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  1622. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  1623. ultraGridColumn11.Header.VisiblePosition = 2;
  1624. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
  1625. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1626. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
  1627. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  1628. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  1629. ultraGridColumn12.Header.VisiblePosition = 3;
  1630. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 3;
  1631. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1632. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
  1633. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  1634. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  1635. ultraGridColumn13.Header.VisiblePosition = 4;
  1636. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
  1637. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1638. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
  1639. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  1640. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  1641. ultraGridColumn14.Header.VisiblePosition = 5;
  1642. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 5;
  1643. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1644. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  1645. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  1646. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  1647. ultraGridColumn15.Header.VisiblePosition = 6;
  1648. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 6;
  1649. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1650. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
  1651. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  1652. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  1653. ultraGridColumn16.Header.VisiblePosition = 7;
  1654. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 8;
  1655. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1656. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  1657. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  1658. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  1659. ultraGridColumn17.Header.VisiblePosition = 8;
  1660. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 9;
  1661. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1662. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(105, 0);
  1663. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  1664. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  1665. ultraGridColumn18.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1666. ultraGridColumn18.EditorComponent = this.ultraTextEditor1;
  1667. ultraGridColumn18.Header.VisiblePosition = 9;
  1668. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 10;
  1669. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1670. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  1671. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  1672. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  1673. ultraGridColumn19.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1674. ultraGridColumn19.EditorComponent = this.ultraTextEditor1;
  1675. ultraGridColumn19.Header.VisiblePosition = 10;
  1676. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 11;
  1677. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1678. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
  1679. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  1680. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  1681. ultraGridColumn20.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1682. ultraGridColumn20.EditorComponent = this.ultraTextEditor1;
  1683. ultraGridColumn20.Header.VisiblePosition = 11;
  1684. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 12;
  1685. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1686. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1687. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  1688. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  1689. ultraGridColumn21.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1690. ultraGridColumn21.EditorComponent = this.ultraTextEditor1;
  1691. ultraGridColumn21.Header.VisiblePosition = 12;
  1692. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 13;
  1693. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1694. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
  1695. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  1696. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  1697. ultraGridColumn22.Header.VisiblePosition = 13;
  1698. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 14;
  1699. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1700. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  1701. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  1702. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  1703. ultraGridColumn22.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  1704. ultraGridColumn23.Header.VisiblePosition = 14;
  1705. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 7;
  1706. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1707. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  1708. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  1709. ultraGridBand2.Columns.AddRange(new object[] {
  1710. ultraGridColumn9,
  1711. ultraGridColumn10,
  1712. ultraGridColumn11,
  1713. ultraGridColumn12,
  1714. ultraGridColumn13,
  1715. ultraGridColumn14,
  1716. ultraGridColumn15,
  1717. ultraGridColumn16,
  1718. ultraGridColumn17,
  1719. ultraGridColumn18,
  1720. ultraGridColumn19,
  1721. ultraGridColumn20,
  1722. ultraGridColumn21,
  1723. ultraGridColumn22,
  1724. ultraGridColumn23});
  1725. ultraGridBand2.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnBottom;
  1726. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1727. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1728. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1729. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1730. appearance41.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1731. appearance41.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1732. appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1733. appearance41.BorderColor = System.Drawing.SystemColors.Window;
  1734. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance41;
  1735. appearance43.ForeColor = System.Drawing.SystemColors.GrayText;
  1736. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance43;
  1737. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1738. appearance42.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1739. appearance42.BackColor2 = System.Drawing.SystemColors.Control;
  1740. appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1741. appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
  1742. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance42;
  1743. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  1744. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  1745. appearance46.BackColor = System.Drawing.SystemColors.Window;
  1746. appearance46.ForeColor = System.Drawing.SystemColors.ControlText;
  1747. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance46;
  1748. appearance49.BackColor = System.Drawing.SystemColors.Highlight;
  1749. appearance49.ForeColor = System.Drawing.SystemColors.HighlightText;
  1750. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance49;
  1751. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1752. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1753. appearance51.BackColor = System.Drawing.SystemColors.Window;
  1754. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance51;
  1755. appearance47.BorderColor = System.Drawing.Color.Silver;
  1756. appearance47.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1757. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance47;
  1758. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1759. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  1760. appearance45.BackColor = System.Drawing.SystemColors.Control;
  1761. appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1762. appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1763. appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1764. appearance45.BorderColor = System.Drawing.SystemColors.Window;
  1765. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance45;
  1766. appearance44.TextHAlignAsString = "Left";
  1767. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance44;
  1768. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1769. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1770. appearance50.BackColor = System.Drawing.SystemColors.Window;
  1771. appearance50.BorderColor = System.Drawing.Color.Silver;
  1772. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance50;
  1773. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1774. appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
  1775. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
  1776. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1777. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1778. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1779. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  1780. this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
  1781. this.ultraGrid2.Name = "ultraGrid2";
  1782. this.ultraGrid2.Size = new System.Drawing.Size(780, 219);
  1783. this.ultraGrid2.TabIndex = 8;
  1784. this.ultraGrid2.Text = "ultraGrid2";
  1785. this.ultraGrid2.AfterRowInsert += new Infragistics.Win.UltraWinGrid.RowEventHandler(this.ultraGrid2_AfterRowInsert);
  1786. this.ultraGrid2.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_ClickCellButton);
  1787. //
  1788. // ultraPanel7
  1789. //
  1790. //
  1791. // ultraPanel7.ClientArea
  1792. //
  1793. this.ultraPanel7.ClientArea.Controls.Add(this.ultraTextEditor1);
  1794. this.ultraPanel7.ClientArea.Controls.Add(this.ultraButton3);
  1795. this.ultraPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
  1796. this.ultraPanel7.Location = new System.Drawing.Point(0, 0);
  1797. this.ultraPanel7.Name = "ultraPanel7";
  1798. this.ultraPanel7.Size = new System.Drawing.Size(780, 263);
  1799. this.ultraPanel7.TabIndex = 87;
  1800. //
  1801. // ultraButton3
  1802. //
  1803. this.ultraButton3.Location = new System.Drawing.Point(303, 13);
  1804. this.ultraButton3.Name = "ultraButton3";
  1805. this.ultraButton3.Size = new System.Drawing.Size(96, 28);
  1806. this.ultraButton3.TabIndex = 86;
  1807. this.ultraButton3.Text = "保 存";
  1808. this.ultraButton3.Click += new System.EventHandler(this.ultraButton3_Click);
  1809. //
  1810. // ultraPanel3
  1811. //
  1812. this.ultraPanel3.AutoScroll = true;
  1813. //
  1814. // ultraPanel3.ClientArea
  1815. //
  1816. this.ultraPanel3.ClientArea.Controls.Add(this.kkTEST_RESULTS);
  1817. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel20);
  1818. this.ultraPanel3.ClientArea.Controls.Add(this.kkFILE_PATH1);
  1819. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel18);
  1820. this.ultraPanel3.ClientArea.Controls.Add(this.kkCHECK_NO);
  1821. this.ultraPanel3.ClientArea.Controls.Add(this.kkCONNECTION);
  1822. this.ultraPanel3.ClientArea.Controls.Add(this.kkSTEEL_GRADE_NO);
  1823. this.ultraPanel3.ClientArea.Controls.Add(this.kkSAMPLE_SIZE);
  1824. this.ultraPanel3.ClientArea.Controls.Add(this.kkTECHNICAL_STANDARD);
  1825. this.ultraPanel3.ClientArea.Controls.Add(this.kkSAMPLE_NAME);
  1826. this.ultraPanel3.ClientArea.Controls.Add(this.kkSAMPLE_NO);
  1827. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel66);
  1828. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel68);
  1829. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel83);
  1830. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel97);
  1831. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel98);
  1832. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel99);
  1833. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel100);
  1834. this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel101);
  1835. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
  1836. this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
  1837. this.ultraPanel3.Name = "ultraPanel3";
  1838. this.ultraPanel3.Size = new System.Drawing.Size(780, 238);
  1839. this.ultraPanel3.TabIndex = 97;
  1840. //
  1841. // kkFILE_PATH1
  1842. //
  1843. this.kkFILE_PATH1.AutoSize = false;
  1844. this.kkFILE_PATH1.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1845. editorButton23.Key = "select";
  1846. editorButton23.Text = "查询";
  1847. this.kkFILE_PATH1.ButtonsLeft.Add(editorButton23);
  1848. editorButton24.Key = "update";
  1849. editorButton24.Text = "上传";
  1850. this.kkFILE_PATH1.ButtonsRight.Add(editorButton24);
  1851. this.kkFILE_PATH1.Location = new System.Drawing.Point(356, 183);
  1852. this.kkFILE_PATH1.Name = "kkFILE_PATH1";
  1853. this.kkFILE_PATH1.Size = new System.Drawing.Size(333, 28);
  1854. this.kkFILE_PATH1.TabIndex = 119;
  1855. this.kkFILE_PATH1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraFILE_PATH1_EditorButtonClick);
  1856. //
  1857. // ultraLabel18
  1858. //
  1859. appearance27.TextHAlignAsString = "Center";
  1860. appearance27.TextVAlignAsString = "Middle";
  1861. this.ultraLabel18.Appearance = appearance27;
  1862. this.ultraLabel18.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1863. this.ultraLabel18.Location = new System.Drawing.Point(23, 183);
  1864. this.ultraLabel18.Name = "ultraLabel18";
  1865. this.ultraLabel18.Size = new System.Drawing.Size(333, 28);
  1866. this.ultraLabel18.TabIndex = 118;
  1867. this.ultraLabel18.Text = "校准证书";
  1868. //
  1869. // kkCHECK_NO
  1870. //
  1871. this.kkCHECK_NO.AutoSize = false;
  1872. this.kkCHECK_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1873. this.kkCHECK_NO.Enabled = false;
  1874. this.kkCHECK_NO.Location = new System.Drawing.Point(123, 43);
  1875. this.kkCHECK_NO.Name = "kkCHECK_NO";
  1876. this.kkCHECK_NO.Size = new System.Drawing.Size(233, 28);
  1877. this.kkCHECK_NO.TabIndex = 117;
  1878. //
  1879. // kkCONNECTION
  1880. //
  1881. this.kkCONNECTION.AutoSize = false;
  1882. this.kkCONNECTION.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1883. this.kkCONNECTION.Location = new System.Drawing.Point(356, 155);
  1884. this.kkCONNECTION.Name = "kkCONNECTION";
  1885. this.kkCONNECTION.Size = new System.Drawing.Size(333, 28);
  1886. this.kkCONNECTION.TabIndex = 30;
  1887. //
  1888. // kkSTEEL_GRADE_NO
  1889. //
  1890. this.kkSTEEL_GRADE_NO.AutoSize = false;
  1891. this.kkSTEEL_GRADE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1892. this.kkSTEEL_GRADE_NO.Enabled = false;
  1893. this.kkSTEEL_GRADE_NO.Location = new System.Drawing.Point(456, 71);
  1894. this.kkSTEEL_GRADE_NO.Name = "kkSTEEL_GRADE_NO";
  1895. this.kkSTEEL_GRADE_NO.Size = new System.Drawing.Size(233, 28);
  1896. this.kkSTEEL_GRADE_NO.TabIndex = 29;
  1897. //
  1898. // kkSAMPLE_SIZE
  1899. //
  1900. this.kkSAMPLE_SIZE.AutoSize = false;
  1901. this.kkSAMPLE_SIZE.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1902. this.kkSAMPLE_SIZE.Enabled = false;
  1903. this.kkSAMPLE_SIZE.Location = new System.Drawing.Point(456, 99);
  1904. this.kkSAMPLE_SIZE.Name = "kkSAMPLE_SIZE";
  1905. this.kkSAMPLE_SIZE.Size = new System.Drawing.Size(233, 28);
  1906. this.kkSAMPLE_SIZE.TabIndex = 28;
  1907. //
  1908. // kkTECHNICAL_STANDARD
  1909. //
  1910. this.kkTECHNICAL_STANDARD.AutoSize = false;
  1911. this.kkTECHNICAL_STANDARD.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1912. this.kkTECHNICAL_STANDARD.Location = new System.Drawing.Point(356, 127);
  1913. this.kkTECHNICAL_STANDARD.Name = "kkTECHNICAL_STANDARD";
  1914. this.kkTECHNICAL_STANDARD.Size = new System.Drawing.Size(333, 28);
  1915. this.kkTECHNICAL_STANDARD.TabIndex = 27;
  1916. //
  1917. // kkSAMPLE_NAME
  1918. //
  1919. this.kkSAMPLE_NAME.AutoSize = false;
  1920. this.kkSAMPLE_NAME.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1921. this.kkSAMPLE_NAME.Enabled = false;
  1922. this.kkSAMPLE_NAME.Location = new System.Drawing.Point(123, 71);
  1923. this.kkSAMPLE_NAME.Name = "kkSAMPLE_NAME";
  1924. this.kkSAMPLE_NAME.Size = new System.Drawing.Size(233, 28);
  1925. this.kkSAMPLE_NAME.TabIndex = 25;
  1926. //
  1927. // kkSAMPLE_NO
  1928. //
  1929. this.kkSAMPLE_NO.AutoSize = false;
  1930. this.kkSAMPLE_NO.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1931. this.kkSAMPLE_NO.Enabled = false;
  1932. this.kkSAMPLE_NO.Location = new System.Drawing.Point(123, 99);
  1933. this.kkSAMPLE_NO.Name = "kkSAMPLE_NO";
  1934. this.kkSAMPLE_NO.Size = new System.Drawing.Size(233, 28);
  1935. this.kkSAMPLE_NO.TabIndex = 24;
  1936. //
  1937. // ultraLabel66
  1938. //
  1939. appearance25.TextHAlignAsString = "Center";
  1940. appearance25.TextVAlignAsString = "Middle";
  1941. this.ultraLabel66.Appearance = appearance25;
  1942. this.ultraLabel66.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1943. this.ultraLabel66.Location = new System.Drawing.Point(23, 155);
  1944. this.ultraLabel66.Name = "ultraLabel66";
  1945. this.ultraLabel66.Size = new System.Drawing.Size(333, 28);
  1946. this.ultraLabel66.TabIndex = 8;
  1947. this.ultraLabel66.Text = "扣 型";
  1948. //
  1949. // ultraLabel68
  1950. //
  1951. appearance87.TextHAlignAsString = "Center";
  1952. appearance87.TextVAlignAsString = "Middle";
  1953. this.ultraLabel68.Appearance = appearance87;
  1954. this.ultraLabel68.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1955. this.ultraLabel68.Location = new System.Drawing.Point(23, 127);
  1956. this.ultraLabel68.Name = "ultraLabel68";
  1957. this.ultraLabel68.Size = new System.Drawing.Size(333, 28);
  1958. this.ultraLabel68.TabIndex = 6;
  1959. this.ultraLabel68.Text = "依据标准";
  1960. //
  1961. // ultraLabel83
  1962. //
  1963. appearance88.TextHAlignAsString = "Center";
  1964. appearance88.TextVAlignAsString = "Middle";
  1965. this.ultraLabel83.Appearance = appearance88;
  1966. this.ultraLabel83.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1967. this.ultraLabel83.Location = new System.Drawing.Point(356, 99);
  1968. this.ultraLabel83.Name = "ultraLabel83";
  1969. this.ultraLabel83.Size = new System.Drawing.Size(100, 28);
  1970. this.ultraLabel83.TabIndex = 5;
  1971. this.ultraLabel83.Text = "规格";
  1972. //
  1973. // ultraLabel97
  1974. //
  1975. appearance90.TextHAlignAsString = "Center";
  1976. appearance90.TextVAlignAsString = "Middle";
  1977. this.ultraLabel97.Appearance = appearance90;
  1978. this.ultraLabel97.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1979. this.ultraLabel97.Location = new System.Drawing.Point(23, 99);
  1980. this.ultraLabel97.Name = "ultraLabel97";
  1981. this.ultraLabel97.Size = new System.Drawing.Size(100, 28);
  1982. this.ultraLabel97.TabIndex = 4;
  1983. this.ultraLabel97.Text = "试样编号";
  1984. //
  1985. // ultraLabel98
  1986. //
  1987. appearance97.TextHAlignAsString = "Center";
  1988. appearance97.TextVAlignAsString = "Middle";
  1989. this.ultraLabel98.Appearance = appearance97;
  1990. this.ultraLabel98.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  1991. this.ultraLabel98.Location = new System.Drawing.Point(356, 71);
  1992. this.ultraLabel98.Name = "ultraLabel98";
  1993. this.ultraLabel98.Size = new System.Drawing.Size(100, 28);
  1994. this.ultraLabel98.TabIndex = 3;
  1995. this.ultraLabel98.Text = "钢级";
  1996. //
  1997. // ultraLabel99
  1998. //
  1999. appearance98.TextHAlignAsString = "Center";
  2000. appearance98.TextVAlignAsString = "Middle";
  2001. this.ultraLabel99.Appearance = appearance98;
  2002. this.ultraLabel99.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2003. this.ultraLabel99.Location = new System.Drawing.Point(210, 14);
  2004. this.ultraLabel99.Name = "ultraLabel99";
  2005. this.ultraLabel99.Size = new System.Drawing.Size(316, 28);
  2006. this.ultraLabel99.TabIndex = 2;
  2007. this.ultraLabel99.Text = "上卸扣试验报告";
  2008. //
  2009. // ultraLabel100
  2010. //
  2011. appearance99.TextHAlignAsString = "Center";
  2012. appearance99.TextVAlignAsString = "Middle";
  2013. this.ultraLabel100.Appearance = appearance99;
  2014. this.ultraLabel100.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  2015. this.ultraLabel100.Location = new System.Drawing.Point(23, 71);
  2016. this.ultraLabel100.Name = "ultraLabel100";
  2017. this.ultraLabel100.Size = new System.Drawing.Size(100, 28);
  2018. this.ultraLabel100.TabIndex = 1;
  2019. this.ultraLabel100.Text = "试样名称";
  2020. //
  2021. // ultraLabel101
  2022. //
  2023. appearance100.TextHAlignAsString = "Center";
  2024. appearance100.TextVAlignAsString = "Middle";
  2025. this.ultraLabel101.Appearance = appearance100;
  2026. this.ultraLabel101.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  2027. this.ultraLabel101.Location = new System.Drawing.Point(23, 43);
  2028. this.ultraLabel101.Name = "ultraLabel101";
  2029. this.ultraLabel101.Size = new System.Drawing.Size(100, 28);
  2030. this.ultraLabel101.TabIndex = 0;
  2031. this.ultraLabel101.Text = "检验编号";
  2032. //
  2033. // ultraTabControl1
  2034. //
  2035. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  2036. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  2037. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  2038. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  2039. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  2040. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  2041. this.ultraTabControl1.Name = "ultraTabControl1";
  2042. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  2043. this.ultraTabControl1.Size = new System.Drawing.Size(784, 750);
  2044. this.ultraTabControl1.TabIndex = 1;
  2045. ultraTab1.TabPage = this.ultraTabPageControl1;
  2046. ultraTab1.Text = "联合力、密封性能(含静水压)试验报告";
  2047. ultraTab2.TabPage = this.ultraTabPageControl2;
  2048. ultraTab2.Text = "压溃、爆破、拉力试验报告";
  2049. ultraTab3.TabPage = this.ultraTabPageControl3;
  2050. ultraTab3.Text = "上卸扣试验报告";
  2051. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2052. ultraTab1,
  2053. ultraTab2,
  2054. ultraTab3});
  2055. //
  2056. // ultraTabSharedControlsPage1
  2057. //
  2058. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  2059. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  2060. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(780, 724);
  2061. //
  2062. // ultraLabel20
  2063. //
  2064. appearance24.TextHAlignAsString = "Center";
  2065. appearance24.TextVAlignAsString = "Middle";
  2066. this.ultraLabel20.Appearance = appearance24;
  2067. this.ultraLabel20.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
  2068. this.ultraLabel20.Location = new System.Drawing.Point(23, 210);
  2069. this.ultraLabel20.Name = "ultraLabel20";
  2070. this.ultraLabel20.Size = new System.Drawing.Size(333, 28);
  2071. this.ultraLabel20.TabIndex = 120;
  2072. this.ultraLabel20.Text = "结果评定";
  2073. //
  2074. // kkTEST_RESULTS
  2075. //
  2076. this.kkTEST_RESULTS.AutoSize = false;
  2077. this.kkTEST_RESULTS.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2078. this.kkTEST_RESULTS.Location = new System.Drawing.Point(356, 210);
  2079. this.kkTEST_RESULTS.Name = "kkTEST_RESULTS";
  2080. this.kkTEST_RESULTS.Size = new System.Drawing.Size(333, 28);
  2081. this.kkTEST_RESULTS.TabIndex = 121;
  2082. //
  2083. // FrmOutdecLabEngDataParm
  2084. //
  2085. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2086. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2087. this.ClientSize = new System.Drawing.Size(784, 750);
  2088. this.Controls.Add(this.ultraTabControl1);
  2089. this.Name = "FrmOutdecLabEngDataParm";
  2090. this.Text = "商检工程试验条件";
  2091. this.Load += new System.EventHandler(this.FrmOutdecLabMecDataParm_Load);
  2092. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  2093. this.ultraTabPageControl1.ResumeLayout(false);
  2094. this.panel1.ResumeLayout(false);
  2095. this.splitContainer1.Panel1.ResumeLayout(false);
  2096. this.splitContainer1.Panel2.ResumeLayout(false);
  2097. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  2098. this.splitContainer1.ResumeLayout(false);
  2099. this.ultraPanel5.ClientArea.ResumeLayout(false);
  2100. this.ultraPanel5.ResumeLayout(false);
  2101. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  2102. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  2103. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2104. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2105. this.ultraPanel4.ClientArea.ResumeLayout(false);
  2106. this.ultraPanel4.ResumeLayout(false);
  2107. this.ultraPanel1.ClientArea.ResumeLayout(false);
  2108. this.ultraPanel1.ResumeLayout(false);
  2109. ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_RESULTS)).EndInit();
  2110. ((System.ComponentModel.ISupportInitialize)(this.ultraTEST_ITEM)).EndInit();
  2111. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH7)).EndInit();
  2112. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH6)).EndInit();
  2113. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH5)).EndInit();
  2114. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH4)).EndInit();
  2115. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH3)).EndInit();
  2116. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH2)).EndInit();
  2117. ((System.ComponentModel.ISupportInitialize)(this.ultraFILE_PATH1)).EndInit();
  2118. ((System.ComponentModel.ISupportInitialize)(this.ultraSTEEL_GRADE_NO)).EndInit();
  2119. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_SIZE)).EndInit();
  2120. ((System.ComponentModel.ISupportInitialize)(this.ultraTECHNICAL_STANDARD)).EndInit();
  2121. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NAME)).EndInit();
  2122. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).EndInit();
  2123. ((System.ComponentModel.ISupportInitialize)(this.ultraCHECK_NO)).EndInit();
  2124. this.ultraTabPageControl2.ResumeLayout(false);
  2125. this.ultraPanel2.ClientArea.ResumeLayout(false);
  2126. this.ultraPanel2.ResumeLayout(false);
  2127. ((System.ComponentModel.ISupportInitialize)(this.lsTEST_ITEM)).EndInit();
  2128. ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH3)).EndInit();
  2129. ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH2)).EndInit();
  2130. ((System.ComponentModel.ISupportInitialize)(this.lsFILE_PATH1)).EndInit();
  2131. ((System.ComponentModel.ISupportInitialize)(this.lsTEST_RESULTS)).EndInit();
  2132. ((System.ComponentModel.ISupportInitialize)(this.lsNOTE)).EndInit();
  2133. ((System.ComponentModel.ISupportInitialize)(this.lsSTEEL_GRADE_NO)).EndInit();
  2134. ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_SIZE)).EndInit();
  2135. ((System.ComponentModel.ISupportInitialize)(this.lsTECHNICAL_STANDARD)).EndInit();
  2136. ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NAME)).EndInit();
  2137. ((System.ComponentModel.ISupportInitialize)(this.lsSAMPLE_NO)).EndInit();
  2138. ((System.ComponentModel.ISupportInitialize)(this.lsCHECK_NO)).EndInit();
  2139. this.ultraTabPageControl3.ResumeLayout(false);
  2140. this.panel2.ResumeLayout(false);
  2141. this.splitContainer2.Panel1.ResumeLayout(false);
  2142. this.splitContainer2.Panel2.ResumeLayout(false);
  2143. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  2144. this.splitContainer2.ResumeLayout(false);
  2145. this.ultraPanel6.ClientArea.ResumeLayout(false);
  2146. this.ultraPanel6.ResumeLayout(false);
  2147. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  2148. this.ultraPanel7.ClientArea.ResumeLayout(false);
  2149. this.ultraPanel7.ClientArea.PerformLayout();
  2150. this.ultraPanel7.ResumeLayout(false);
  2151. this.ultraPanel3.ClientArea.ResumeLayout(false);
  2152. this.ultraPanel3.ResumeLayout(false);
  2153. ((System.ComponentModel.ISupportInitialize)(this.kkFILE_PATH1)).EndInit();
  2154. ((System.ComponentModel.ISupportInitialize)(this.kkCHECK_NO)).EndInit();
  2155. ((System.ComponentModel.ISupportInitialize)(this.kkCONNECTION)).EndInit();
  2156. ((System.ComponentModel.ISupportInitialize)(this.kkSTEEL_GRADE_NO)).EndInit();
  2157. ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_SIZE)).EndInit();
  2158. ((System.ComponentModel.ISupportInitialize)(this.kkTECHNICAL_STANDARD)).EndInit();
  2159. ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NAME)).EndInit();
  2160. ((System.ComponentModel.ISupportInitialize)(this.kkSAMPLE_NO)).EndInit();
  2161. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  2162. this.ultraTabControl1.ResumeLayout(false);
  2163. ((System.ComponentModel.ISupportInitialize)(this.kkTEST_RESULTS)).EndInit();
  2164. this.ResumeLayout(false);
  2165. }
  2166. #endregion
  2167. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  2168. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  2169. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  2170. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  2171. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  2172. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  2173. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  2174. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  2175. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  2176. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  2177. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  2178. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2179. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  2180. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraCHECK_NO;
  2181. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSAMPLE_NAME;
  2182. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSAMPLE_NO;
  2183. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSTEEL_GRADE_NO;
  2184. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraSAMPLE_SIZE;
  2185. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTECHNICAL_STANDARD;
  2186. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  2187. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsFILE_PATH2;
  2188. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsFILE_PATH1;
  2189. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsTEST_RESULTS;
  2190. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsNOTE;
  2191. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSTEEL_GRADE_NO;
  2192. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSAMPLE_SIZE;
  2193. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsTECHNICAL_STANDARD;
  2194. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSAMPLE_NAME;
  2195. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsSAMPLE_NO;
  2196. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsCHECK_NO;
  2197. private Infragistics.Win.Misc.UltraLabel ultraLabel78;
  2198. private Infragistics.Win.Misc.UltraLabel ultraLabel86;
  2199. private Infragistics.Win.Misc.UltraLabel ultraLabel87;
  2200. private Infragistics.Win.Misc.UltraLabel ultraLabel88;
  2201. private Infragistics.Win.Misc.UltraLabel ultraLabel90;
  2202. private Infragistics.Win.Misc.UltraLabel ultraLabel91;
  2203. private Infragistics.Win.Misc.UltraLabel ultraLabel92;
  2204. private Infragistics.Win.Misc.UltraLabel ultraLabel93;
  2205. private Infragistics.Win.Misc.UltraLabel ultraLabel94;
  2206. private Infragistics.Win.Misc.UltraLabel ultraLabel95;
  2207. private Infragistics.Win.Misc.UltraLabel ultraLabel96;
  2208. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  2209. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  2210. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  2211. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  2212. private Infragistics.Win.Misc.UltraLabel ultraLabel46;
  2213. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  2214. private Infragistics.Win.Misc.UltraLabel ultraLabel48;
  2215. private Infragistics.Win.Misc.UltraButton ultraButton1;
  2216. private Infragistics.Win.Misc.UltraButton ultraButton2;
  2217. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  2218. private Infragistics.Win.Misc.UltraButton ultraButton3;
  2219. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkCONNECTION;
  2220. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSTEEL_GRADE_NO;
  2221. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSAMPLE_SIZE;
  2222. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkTECHNICAL_STANDARD;
  2223. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSAMPLE_NAME;
  2224. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkSAMPLE_NO;
  2225. private Infragistics.Win.Misc.UltraLabel ultraLabel66;
  2226. private Infragistics.Win.Misc.UltraLabel ultraLabel68;
  2227. private Infragistics.Win.Misc.UltraLabel ultraLabel83;
  2228. private Infragistics.Win.Misc.UltraLabel ultraLabel97;
  2229. private Infragistics.Win.Misc.UltraLabel ultraLabel98;
  2230. private Infragistics.Win.Misc.UltraLabel ultraLabel99;
  2231. private Infragistics.Win.Misc.UltraLabel ultraLabel100;
  2232. private Infragistics.Win.Misc.UltraLabel ultraLabel101;
  2233. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkCHECK_NO;
  2234. private System.Windows.Forms.Panel panel1;
  2235. private Infragistics.Win.Misc.UltraPanel ultraPanel5;
  2236. private Infragistics.Win.Misc.UltraPanel ultraPanel4;
  2237. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  2238. private System.Data.DataSet dataSet1;
  2239. private System.Windows.Forms.SplitContainer splitContainer1;
  2240. private System.Data.DataTable dataTable1;
  2241. private System.Data.DataColumn dataColumn1;
  2242. private System.Data.DataColumn dataColumn2;
  2243. private System.Data.DataColumn dataColumn3;
  2244. private System.Data.DataColumn dataColumn4;
  2245. private System.Data.DataColumn dataColumn5;
  2246. private System.Data.DataColumn dataColumn6;
  2247. private System.Data.DataColumn dataColumn7;
  2248. private System.Data.DataTable dataTable2;
  2249. private System.Data.DataColumn dataColumn8;
  2250. private System.Data.DataColumn dataColumn9;
  2251. private System.Data.DataColumn dataColumn10;
  2252. private System.Data.DataColumn dataColumn11;
  2253. private System.Data.DataColumn dataColumn12;
  2254. private System.Data.DataColumn dataColumn13;
  2255. private System.Data.DataColumn dataColumn14;
  2256. private System.Data.DataColumn dataColumn15;
  2257. private System.Data.DataColumn dataColumn16;
  2258. private System.Data.DataColumn dataColumn17;
  2259. private System.Data.DataColumn dataColumn18;
  2260. private System.Data.DataColumn dataColumn19;
  2261. private System.Data.DataColumn dataColumn20;
  2262. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH4;
  2263. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH3;
  2264. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH2;
  2265. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH1;
  2266. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  2267. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  2268. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  2269. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  2270. private System.Windows.Forms.Panel panel2;
  2271. private System.Windows.Forms.SplitContainer splitContainer2;
  2272. private Infragistics.Win.Misc.UltraPanel ultraPanel6;
  2273. private Infragistics.Win.Misc.UltraPanel ultraPanel7;
  2274. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2275. private System.Data.DataColumn dataColumn21;
  2276. private System.Data.DataColumn dataColumn22;
  2277. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  2278. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTEST_ITEM;
  2279. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH7;
  2280. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH6;
  2281. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraFILE_PATH5;
  2282. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  2283. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  2284. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  2285. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  2286. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsTEST_ITEM;
  2287. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  2288. private Infragistics.Win.UltraWinEditors.UltraTextEditor lsFILE_PATH3;
  2289. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  2290. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  2291. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkFILE_PATH1;
  2292. private System.Data.DataColumn dataColumn23;
  2293. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTEST_RESULTS;
  2294. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  2295. private Infragistics.Win.UltraWinEditors.UltraTextEditor kkTEST_RESULTS;
  2296. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  2297. }
  2298. }